v1

package
v0.3.412 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 19, 2021 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_github_com_metaprov_modeldapi_services_alert_v1_alert_proto protoreflect.FileDescriptor

Functions

func RegisterAlertServiceServer

func RegisterAlertServiceServer(s *grpc.Server, srv AlertServiceServer)

Types

type AlertCreateResponse

type AlertCreateResponse struct {
	// contains filtered or unexported fields
}

func (*AlertCreateResponse) Descriptor deprecated

func (*AlertCreateResponse) Descriptor() ([]byte, []int)

Deprecated: Use AlertCreateResponse.ProtoReflect.Descriptor instead.

func (*AlertCreateResponse) ProtoMessage

func (*AlertCreateResponse) ProtoMessage()

func (*AlertCreateResponse) ProtoReflect

func (x *AlertCreateResponse) ProtoReflect() protoreflect.Message

func (*AlertCreateResponse) Reset

func (x *AlertCreateResponse) Reset()

func (*AlertCreateResponse) String

func (x *AlertCreateResponse) String() string

type AlertGetByNameRequest

type AlertGetByNameRequest struct {
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*AlertGetByNameRequest) Descriptor deprecated

func (*AlertGetByNameRequest) Descriptor() ([]byte, []int)

Deprecated: Use AlertGetByNameRequest.ProtoReflect.Descriptor instead.

func (*AlertGetByNameRequest) GetName

func (x *AlertGetByNameRequest) GetName() string

func (*AlertGetByNameRequest) GetNamespace

func (x *AlertGetByNameRequest) GetNamespace() string

func (*AlertGetByNameRequest) ProtoMessage

func (*AlertGetByNameRequest) ProtoMessage()

func (*AlertGetByNameRequest) ProtoReflect

func (x *AlertGetByNameRequest) ProtoReflect() protoreflect.Message

func (*AlertGetByNameRequest) Reset

func (x *AlertGetByNameRequest) Reset()

func (*AlertGetByNameRequest) String

func (x *AlertGetByNameRequest) String() string

type AlertLoginRequest

type AlertLoginRequest struct {
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Password  string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*AlertLoginRequest) Descriptor deprecated

func (*AlertLoginRequest) Descriptor() ([]byte, []int)

Deprecated: Use AlertLoginRequest.ProtoReflect.Descriptor instead.

func (*AlertLoginRequest) GetName

func (x *AlertLoginRequest) GetName() string

func (*AlertLoginRequest) GetNamespace

func (x *AlertLoginRequest) GetNamespace() string

func (*AlertLoginRequest) GetPassword

func (x *AlertLoginRequest) GetPassword() string

func (*AlertLoginRequest) ProtoMessage

func (*AlertLoginRequest) ProtoMessage()

func (*AlertLoginRequest) ProtoReflect

func (x *AlertLoginRequest) ProtoReflect() protoreflect.Message

func (*AlertLoginRequest) Reset

func (x *AlertLoginRequest) Reset()

func (*AlertLoginRequest) String

func (x *AlertLoginRequest) String() string

type AlertLoginResponse

type AlertLoginResponse struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` // jwt token
	// contains filtered or unexported fields
}

func (*AlertLoginResponse) Descriptor deprecated

func (*AlertLoginResponse) Descriptor() ([]byte, []int)

Deprecated: Use AlertLoginResponse.ProtoReflect.Descriptor instead.

func (*AlertLoginResponse) GetToken

func (x *AlertLoginResponse) GetToken() string

func (*AlertLoginResponse) ProtoMessage

func (*AlertLoginResponse) ProtoMessage()

func (*AlertLoginResponse) ProtoReflect

func (x *AlertLoginResponse) ProtoReflect() protoreflect.Message

func (*AlertLoginResponse) Reset

func (x *AlertLoginResponse) Reset()

func (*AlertLoginResponse) String

func (x *AlertLoginResponse) String() string

type AlertLogoutRequest

type AlertLogoutRequest struct {
	Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty"` // jwt token
	// contains filtered or unexported fields
}

func (*AlertLogoutRequest) Descriptor deprecated

func (*AlertLogoutRequest) Descriptor() ([]byte, []int)

Deprecated: Use AlertLogoutRequest.ProtoReflect.Descriptor instead.

func (*AlertLogoutRequest) GetToken

func (x *AlertLogoutRequest) GetToken() string

func (*AlertLogoutRequest) ProtoMessage

func (*AlertLogoutRequest) ProtoMessage()

func (*AlertLogoutRequest) ProtoReflect

func (x *AlertLogoutRequest) ProtoReflect() protoreflect.Message

func (*AlertLogoutRequest) Reset

func (x *AlertLogoutRequest) Reset()

func (*AlertLogoutRequest) String

func (x *AlertLogoutRequest) String() string

type AlertResponse

type AlertResponse struct {
	// contains filtered or unexported fields
}

func (*AlertResponse) Descriptor deprecated

func (*AlertResponse) Descriptor() ([]byte, []int)

Deprecated: Use AlertResponse.ProtoReflect.Descriptor instead.

func (*AlertResponse) ProtoMessage

func (*AlertResponse) ProtoMessage()

func (*AlertResponse) ProtoReflect

func (x *AlertResponse) ProtoReflect() protoreflect.Message

func (*AlertResponse) Reset

func (x *AlertResponse) Reset()

func (*AlertResponse) String

func (x *AlertResponse) String() string

type AlertServiceClient

type AlertServiceClient interface {
	ListAlerts(ctx context.Context, in *ListAlertsRequest, opts ...grpc.CallOption) (*ListAlertsResponse, error)
	CreateAlert(ctx context.Context, in *CreateAlertRequest, opts ...grpc.CallOption) (*CreateAlertResponse, error)
	GetAlert(ctx context.Context, in *GetAlertRequest, opts ...grpc.CallOption) (*GetAlertResponse, error)
	UpdateAlert(ctx context.Context, in *UpdateAlertRequest, opts ...grpc.CallOption) (*UpdateAlertResponse, error)
	DeleteAlert(ctx context.Context, in *DeleteAlertRequest, opts ...grpc.CallOption) (*DeleteAlertResponse, error)
}

AlertServiceClient is the client API for AlertService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type AlertServiceServer

AlertServiceServer is the server API for AlertService service.

type ChangePasswordRequest

type ChangePasswordRequest struct {
	Namespace    string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name         string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Old          string `protobuf:"bytes,3,opt,name=old,proto3" json:"old,omitempty"`
	New          string `protobuf:"bytes,4,opt,name=new,proto3" json:"new,omitempty"`
	ConfirmedNew string `protobuf:"bytes,5,opt,name=confirmedNew,proto3" json:"confirmedNew,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangePasswordRequest) Descriptor deprecated

func (*ChangePasswordRequest) Descriptor() ([]byte, []int)

Deprecated: Use ChangePasswordRequest.ProtoReflect.Descriptor instead.

func (*ChangePasswordRequest) GetConfirmedNew

func (x *ChangePasswordRequest) GetConfirmedNew() string

func (*ChangePasswordRequest) GetName

func (x *ChangePasswordRequest) GetName() string

func (*ChangePasswordRequest) GetNamespace

func (x *ChangePasswordRequest) GetNamespace() string

func (*ChangePasswordRequest) GetNew

func (x *ChangePasswordRequest) GetNew() string

func (*ChangePasswordRequest) GetOld

func (x *ChangePasswordRequest) GetOld() string

func (*ChangePasswordRequest) ProtoMessage

func (*ChangePasswordRequest) ProtoMessage()

func (*ChangePasswordRequest) ProtoReflect

func (x *ChangePasswordRequest) ProtoReflect() protoreflect.Message

func (*ChangePasswordRequest) Reset

func (x *ChangePasswordRequest) Reset()

func (*ChangePasswordRequest) String

func (x *ChangePasswordRequest) String() string

type ChangePasswordResponse

type ChangePasswordResponse struct {
	// contains filtered or unexported fields
}

func (*ChangePasswordResponse) Descriptor deprecated

func (*ChangePasswordResponse) Descriptor() ([]byte, []int)

Deprecated: Use ChangePasswordResponse.ProtoReflect.Descriptor instead.

func (*ChangePasswordResponse) ProtoMessage

func (*ChangePasswordResponse) ProtoMessage()

func (*ChangePasswordResponse) ProtoReflect

func (x *ChangePasswordResponse) ProtoReflect() protoreflect.Message

func (*ChangePasswordResponse) Reset

func (x *ChangePasswordResponse) Reset()

func (*ChangePasswordResponse) String

func (x *ChangePasswordResponse) String() string

type CreateAlertRequest

type CreateAlertRequest struct {
	Item     *v1alpha1.Alert `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	Password string          `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateAlertRequest) Descriptor deprecated

func (*CreateAlertRequest) Descriptor() ([]byte, []int)

Deprecated: Use CreateAlertRequest.ProtoReflect.Descriptor instead.

func (*CreateAlertRequest) GetItem

func (x *CreateAlertRequest) GetItem() *v1alpha1.Alert

func (*CreateAlertRequest) GetPassword

func (x *CreateAlertRequest) GetPassword() string

func (*CreateAlertRequest) ProtoMessage

func (*CreateAlertRequest) ProtoMessage()

func (*CreateAlertRequest) ProtoReflect

func (x *CreateAlertRequest) ProtoReflect() protoreflect.Message

func (*CreateAlertRequest) Reset

func (x *CreateAlertRequest) Reset()

func (*CreateAlertRequest) String

func (x *CreateAlertRequest) String() string

type CreateAlertResponse

type CreateAlertResponse struct {
	// contains filtered or unexported fields
}

func (*CreateAlertResponse) Descriptor deprecated

func (*CreateAlertResponse) Descriptor() ([]byte, []int)

Deprecated: Use CreateAlertResponse.ProtoReflect.Descriptor instead.

func (*CreateAlertResponse) ProtoMessage

func (*CreateAlertResponse) ProtoMessage()

func (*CreateAlertResponse) ProtoReflect

func (x *CreateAlertResponse) ProtoReflect() protoreflect.Message

func (*CreateAlertResponse) Reset

func (x *CreateAlertResponse) Reset()

func (*CreateAlertResponse) String

func (x *CreateAlertResponse) String() string

type DeleteAlertRequest

type DeleteAlertRequest struct {
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteAlertRequest) Descriptor deprecated

func (*DeleteAlertRequest) Descriptor() ([]byte, []int)

Deprecated: Use DeleteAlertRequest.ProtoReflect.Descriptor instead.

func (*DeleteAlertRequest) GetName

func (x *DeleteAlertRequest) GetName() string

func (*DeleteAlertRequest) GetNamespace

func (x *DeleteAlertRequest) GetNamespace() string

func (*DeleteAlertRequest) ProtoMessage

func (*DeleteAlertRequest) ProtoMessage()

func (*DeleteAlertRequest) ProtoReflect

func (x *DeleteAlertRequest) ProtoReflect() protoreflect.Message

func (*DeleteAlertRequest) Reset

func (x *DeleteAlertRequest) Reset()

func (*DeleteAlertRequest) String

func (x *DeleteAlertRequest) String() string

type DeleteAlertResponse

type DeleteAlertResponse struct {
	// contains filtered or unexported fields
}

func (*DeleteAlertResponse) Descriptor deprecated

func (*DeleteAlertResponse) Descriptor() ([]byte, []int)

Deprecated: Use DeleteAlertResponse.ProtoReflect.Descriptor instead.

func (*DeleteAlertResponse) ProtoMessage

func (*DeleteAlertResponse) ProtoMessage()

func (*DeleteAlertResponse) ProtoReflect

func (x *DeleteAlertResponse) ProtoReflect() protoreflect.Message

func (*DeleteAlertResponse) Reset

func (x *DeleteAlertResponse) Reset()

func (*DeleteAlertResponse) String

func (x *DeleteAlertResponse) String() string

type GetAlertNamespacesRequest

type GetAlertNamespacesRequest struct {
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAlertNamespacesRequest) Descriptor deprecated

func (*GetAlertNamespacesRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAlertNamespacesRequest.ProtoReflect.Descriptor instead.

func (*GetAlertNamespacesRequest) GetName

func (x *GetAlertNamespacesRequest) GetName() string

func (*GetAlertNamespacesRequest) GetNamespace

func (x *GetAlertNamespacesRequest) GetNamespace() string

func (*GetAlertNamespacesRequest) ProtoMessage

func (*GetAlertNamespacesRequest) ProtoMessage()

func (*GetAlertNamespacesRequest) ProtoReflect

func (*GetAlertNamespacesRequest) Reset

func (x *GetAlertNamespacesRequest) Reset()

func (*GetAlertNamespacesRequest) String

func (x *GetAlertNamespacesRequest) String() string

type GetAlertNamespacesResponse

type GetAlertNamespacesResponse struct {
	Namespaces []*v1.NamespaceInfo `protobuf:"bytes,1,rep,name=namespaces,proto3" json:"namespaces,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAlertNamespacesResponse) Descriptor deprecated

func (*GetAlertNamespacesResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAlertNamespacesResponse.ProtoReflect.Descriptor instead.

func (*GetAlertNamespacesResponse) GetNamespaces

func (x *GetAlertNamespacesResponse) GetNamespaces() []*v1.NamespaceInfo

func (*GetAlertNamespacesResponse) ProtoMessage

func (*GetAlertNamespacesResponse) ProtoMessage()

func (*GetAlertNamespacesResponse) ProtoReflect

func (*GetAlertNamespacesResponse) Reset

func (x *GetAlertNamespacesResponse) Reset()

func (*GetAlertNamespacesResponse) String

func (x *GetAlertNamespacesResponse) String() string

type GetAlertRequest

type GetAlertRequest struct {
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAlertRequest) Descriptor deprecated

func (*GetAlertRequest) Descriptor() ([]byte, []int)

Deprecated: Use GetAlertRequest.ProtoReflect.Descriptor instead.

func (*GetAlertRequest) GetName

func (x *GetAlertRequest) GetName() string

func (*GetAlertRequest) GetNamespace

func (x *GetAlertRequest) GetNamespace() string

func (*GetAlertRequest) ProtoMessage

func (*GetAlertRequest) ProtoMessage()

func (*GetAlertRequest) ProtoReflect

func (x *GetAlertRequest) ProtoReflect() protoreflect.Message

func (*GetAlertRequest) Reset

func (x *GetAlertRequest) Reset()

func (*GetAlertRequest) String

func (x *GetAlertRequest) String() string

type GetAlertResponse

type GetAlertResponse struct {
	Item *v1alpha1.Alert `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	Yaml string          `protobuf:"bytes,2,opt,name=yaml,proto3" json:"yaml,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAlertResponse) Descriptor deprecated

func (*GetAlertResponse) Descriptor() ([]byte, []int)

Deprecated: Use GetAlertResponse.ProtoReflect.Descriptor instead.

func (*GetAlertResponse) GetItem

func (x *GetAlertResponse) GetItem() *v1alpha1.Alert

func (*GetAlertResponse) GetYaml

func (x *GetAlertResponse) GetYaml() string

func (*GetAlertResponse) ProtoMessage

func (*GetAlertResponse) ProtoMessage()

func (*GetAlertResponse) ProtoReflect

func (x *GetAlertResponse) ProtoReflect() protoreflect.Message

func (*GetAlertResponse) Reset

func (x *GetAlertResponse) Reset()

func (*GetAlertResponse) String

func (x *GetAlertResponse) String() string

type ListAlertsRequest

type ListAlertsRequest struct {
	Namespace string            `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Labels    map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ListAlertsRequest) Descriptor deprecated

func (*ListAlertsRequest) Descriptor() ([]byte, []int)

Deprecated: Use ListAlertsRequest.ProtoReflect.Descriptor instead.

func (*ListAlertsRequest) GetLabels

func (x *ListAlertsRequest) GetLabels() map[string]string

func (*ListAlertsRequest) GetNamespace

func (x *ListAlertsRequest) GetNamespace() string

func (*ListAlertsRequest) ProtoMessage

func (*ListAlertsRequest) ProtoMessage()

func (*ListAlertsRequest) ProtoReflect

func (x *ListAlertsRequest) ProtoReflect() protoreflect.Message

func (*ListAlertsRequest) Reset

func (x *ListAlertsRequest) Reset()

func (*ListAlertsRequest) String

func (x *ListAlertsRequest) String() string

type ListAlertsResponse

type ListAlertsResponse struct {
	Items *v1alpha1.AlertList `protobuf:"bytes,1,opt,name=items,proto3" json:"items,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAlertsResponse) Descriptor deprecated

func (*ListAlertsResponse) Descriptor() ([]byte, []int)

Deprecated: Use ListAlertsResponse.ProtoReflect.Descriptor instead.

func (*ListAlertsResponse) GetItems

func (x *ListAlertsResponse) GetItems() *v1alpha1.AlertList

func (*ListAlertsResponse) ProtoMessage

func (*ListAlertsResponse) ProtoMessage()

func (*ListAlertsResponse) ProtoReflect

func (x *ListAlertsResponse) ProtoReflect() protoreflect.Message

func (*ListAlertsResponse) Reset

func (x *ListAlertsResponse) Reset()

func (*ListAlertsResponse) String

func (x *ListAlertsResponse) String() string

type LogoutResponse

type LogoutResponse struct {
	// contains filtered or unexported fields
}

func (*LogoutResponse) Descriptor deprecated

func (*LogoutResponse) Descriptor() ([]byte, []int)

Deprecated: Use LogoutResponse.ProtoReflect.Descriptor instead.

func (*LogoutResponse) ProtoMessage

func (*LogoutResponse) ProtoMessage()

func (*LogoutResponse) ProtoReflect

func (x *LogoutResponse) ProtoReflect() protoreflect.Message

func (*LogoutResponse) Reset

func (x *LogoutResponse) Reset()

func (*LogoutResponse) String

func (x *LogoutResponse) String() string

type ResetPasswordReponse

type ResetPasswordReponse struct {
	// contains filtered or unexported fields
}

func (*ResetPasswordReponse) Descriptor deprecated

func (*ResetPasswordReponse) Descriptor() ([]byte, []int)

Deprecated: Use ResetPasswordReponse.ProtoReflect.Descriptor instead.

func (*ResetPasswordReponse) ProtoMessage

func (*ResetPasswordReponse) ProtoMessage()

func (*ResetPasswordReponse) ProtoReflect

func (x *ResetPasswordReponse) ProtoReflect() protoreflect.Message

func (*ResetPasswordReponse) Reset

func (x *ResetPasswordReponse) Reset()

func (*ResetPasswordReponse) String

func (x *ResetPasswordReponse) String() string

type ResetPasswordRequest

type ResetPasswordRequest struct {
	Namespace    string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name         string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	New          string `protobuf:"bytes,3,opt,name=new,proto3" json:"new,omitempty"`
	ConfirmedNew string `protobuf:"bytes,4,opt,name=confirmedNew,proto3" json:"confirmedNew,omitempty"`
	// contains filtered or unexported fields
}

func (*ResetPasswordRequest) Descriptor deprecated

func (*ResetPasswordRequest) Descriptor() ([]byte, []int)

Deprecated: Use ResetPasswordRequest.ProtoReflect.Descriptor instead.

func (*ResetPasswordRequest) GetConfirmedNew

func (x *ResetPasswordRequest) GetConfirmedNew() string

func (*ResetPasswordRequest) GetName

func (x *ResetPasswordRequest) GetName() string

func (*ResetPasswordRequest) GetNamespace

func (x *ResetPasswordRequest) GetNamespace() string

func (*ResetPasswordRequest) GetNew

func (x *ResetPasswordRequest) GetNew() string

func (*ResetPasswordRequest) ProtoMessage

func (*ResetPasswordRequest) ProtoMessage()

func (*ResetPasswordRequest) ProtoReflect

func (x *ResetPasswordRequest) ProtoReflect() protoreflect.Message

func (*ResetPasswordRequest) Reset

func (x *ResetPasswordRequest) Reset()

func (*ResetPasswordRequest) String

func (x *ResetPasswordRequest) String() string

type ResetPasswordResponse

type ResetPasswordResponse struct {
	// contains filtered or unexported fields
}

func (*ResetPasswordResponse) Descriptor deprecated

func (*ResetPasswordResponse) Descriptor() ([]byte, []int)

Deprecated: Use ResetPasswordResponse.ProtoReflect.Descriptor instead.

func (*ResetPasswordResponse) ProtoMessage

func (*ResetPasswordResponse) ProtoMessage()

func (*ResetPasswordResponse) ProtoReflect

func (x *ResetPasswordResponse) ProtoReflect() protoreflect.Message

func (*ResetPasswordResponse) Reset

func (x *ResetPasswordResponse) Reset()

func (*ResetPasswordResponse) String

func (x *ResetPasswordResponse) String() string

type UnimplementedAlertServiceServer

type UnimplementedAlertServiceServer struct {
}

UnimplementedAlertServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAlertServiceServer) CreateAlert

func (*UnimplementedAlertServiceServer) DeleteAlert

func (*UnimplementedAlertServiceServer) GetAlert

func (*UnimplementedAlertServiceServer) ListAlerts

func (*UnimplementedAlertServiceServer) UpdateAlert

type UpdateAlertRequest

type UpdateAlertRequest struct {
	Item *v1alpha1.Alert `protobuf:"bytes,1,opt,name=item,proto3" json:"item,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateAlertRequest) Descriptor deprecated

func (*UpdateAlertRequest) Descriptor() ([]byte, []int)

Deprecated: Use UpdateAlertRequest.ProtoReflect.Descriptor instead.

func (*UpdateAlertRequest) GetItem

func (x *UpdateAlertRequest) GetItem() *v1alpha1.Alert

func (*UpdateAlertRequest) ProtoMessage

func (*UpdateAlertRequest) ProtoMessage()

func (*UpdateAlertRequest) ProtoReflect

func (x *UpdateAlertRequest) ProtoReflect() protoreflect.Message

func (*UpdateAlertRequest) Reset

func (x *UpdateAlertRequest) Reset()

func (*UpdateAlertRequest) String

func (x *UpdateAlertRequest) String() string

type UpdateAlertResponse

type UpdateAlertResponse struct {
	// contains filtered or unexported fields
}

func (*UpdateAlertResponse) Descriptor deprecated

func (*UpdateAlertResponse) Descriptor() ([]byte, []int)

Deprecated: Use UpdateAlertResponse.ProtoReflect.Descriptor instead.

func (*UpdateAlertResponse) ProtoMessage

func (*UpdateAlertResponse) ProtoMessage()

func (*UpdateAlertResponse) ProtoReflect

func (x *UpdateAlertResponse) ProtoReflect() protoreflect.Message

func (*UpdateAlertResponse) Reset

func (x *UpdateAlertResponse) Reset()

func (*UpdateAlertResponse) String

func (x *UpdateAlertResponse) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL