application

package
v0.3.42 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2024 License: MIT Imports: 39 Imported by: 0

Documentation

Overview

Package application is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	ApplicationManager_ConfigureApplication_FullMethodName          = "/prodvana.application.ApplicationManager/ConfigureApplication"
	ApplicationManager_ValidateConfigureApplication_FullMethodName  = "/prodvana.application.ApplicationManager/ValidateConfigureApplication"
	ApplicationManager_ListApplications_FullMethodName              = "/prodvana.application.ApplicationManager/ListApplications"
	ApplicationManager_GetApplicationConfig_FullMethodName          = "/prodvana.application.ApplicationManager/GetApplicationConfig"
	ApplicationManager_ListApplicationConfigVersions_FullMethodName = "/prodvana.application.ApplicationManager/ListApplicationConfigVersions"
	ApplicationManager_GetApplication_FullMethodName                = "/prodvana.application.ApplicationManager/GetApplication"
	ApplicationManager_DeleteApplication_FullMethodName             = "/prodvana.application.ApplicationManager/DeleteApplication"
	ApplicationManager_GetApplicationMetrics_FullMethodName         = "/prodvana.application.ApplicationManager/GetApplicationMetrics"
	ApplicationManager_GetApplicationInsights_FullMethodName        = "/prodvana.application.ApplicationManager/GetApplicationInsights"
	ApplicationManager_SnoozeApplicationInsight_FullMethodName      = "/prodvana.application.ApplicationManager/SnoozeApplicationInsight"
	ApplicationManager_GetApplicationMetadata_FullMethodName        = "/prodvana.application.ApplicationManager/GetApplicationMetadata"
	ApplicationManager_SetApplicationMetadata_FullMethodName        = "/prodvana.application.ApplicationManager/SetApplicationMetadata"
)

Variables

View Source
var ApplicationManager_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "prodvana.application.ApplicationManager",
	HandlerType: (*ApplicationManagerServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ConfigureApplication",
			Handler:    _ApplicationManager_ConfigureApplication_Handler,
		},
		{
			MethodName: "ValidateConfigureApplication",
			Handler:    _ApplicationManager_ValidateConfigureApplication_Handler,
		},
		{
			MethodName: "ListApplications",
			Handler:    _ApplicationManager_ListApplications_Handler,
		},
		{
			MethodName: "GetApplicationConfig",
			Handler:    _ApplicationManager_GetApplicationConfig_Handler,
		},
		{
			MethodName: "ListApplicationConfigVersions",
			Handler:    _ApplicationManager_ListApplicationConfigVersions_Handler,
		},
		{
			MethodName: "GetApplication",
			Handler:    _ApplicationManager_GetApplication_Handler,
		},
		{
			MethodName: "DeleteApplication",
			Handler:    _ApplicationManager_DeleteApplication_Handler,
		},
		{
			MethodName: "GetApplicationMetrics",
			Handler:    _ApplicationManager_GetApplicationMetrics_Handler,
		},
		{
			MethodName: "GetApplicationInsights",
			Handler:    _ApplicationManager_GetApplicationInsights_Handler,
		},
		{
			MethodName: "SnoozeApplicationInsight",
			Handler:    _ApplicationManager_SnoozeApplicationInsight_Handler,
		},
		{
			MethodName: "GetApplicationMetadata",
			Handler:    _ApplicationManager_GetApplicationMetadata_Handler,
		},
		{
			MethodName: "SetApplicationMetadata",
			Handler:    _ApplicationManager_SetApplicationMetadata_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "prodvana/application/application_manager.proto",
}

ApplicationManager_ServiceDesc is the grpc.ServiceDesc for ApplicationManager service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_prodvana_application_application_config_proto protoreflect.FileDescriptor
View Source
var File_prodvana_application_application_manager_proto protoreflect.FileDescriptor
View Source
var File_prodvana_application_object_proto protoreflect.FileDescriptor
View Source
var File_prodvana_application_user_metadata_proto protoreflect.FileDescriptor

Functions

func RegisterApplicationManagerHandler

func RegisterApplicationManagerHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error

RegisterApplicationManagerHandler registers the http handlers for service ApplicationManager to "mux". The handlers forward requests to the grpc endpoint over "conn".

func RegisterApplicationManagerHandlerClient

func RegisterApplicationManagerHandlerClient(ctx context.Context, mux *runtime.ServeMux, client ApplicationManagerClient) error

RegisterApplicationManagerHandlerClient registers the http handlers for service ApplicationManager to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "ApplicationManagerClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "ApplicationManagerClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "ApplicationManagerClient" to call the correct interceptors.

func RegisterApplicationManagerHandlerFromEndpoint

func RegisterApplicationManagerHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)

RegisterApplicationManagerHandlerFromEndpoint is same as RegisterApplicationManagerHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.

func RegisterApplicationManagerHandlerServer

func RegisterApplicationManagerHandlerServer(ctx context.Context, mux *runtime.ServeMux, server ApplicationManagerServer) error

RegisterApplicationManagerHandlerServer registers the http handlers for service ApplicationManager to "mux". UnaryRPC :call ApplicationManagerServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterApplicationManagerHandlerFromEndpoint instead.

func RegisterApplicationManagerServer

func RegisterApplicationManagerServer(s grpc.ServiceRegistrar, srv ApplicationManagerServer)

Types

type AnnotationsConfig added in v0.3.35

type AnnotationsConfig struct {
	Last9 *AnnotationsConfig_Last9 `protobuf:"bytes,1,opt,name=last9,proto3" json:"last9,omitempty"`
	// contains filtered or unexported fields
}

func (*AnnotationsConfig) Descriptor deprecated added in v0.3.35

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

Deprecated: Use AnnotationsConfig.ProtoReflect.Descriptor instead.

func (*AnnotationsConfig) GetLast9 added in v0.3.35

func (*AnnotationsConfig) ProtoMessage added in v0.3.35

func (*AnnotationsConfig) ProtoMessage()

func (*AnnotationsConfig) ProtoReflect added in v0.3.35

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

func (*AnnotationsConfig) Reset added in v0.3.35

func (x *AnnotationsConfig) Reset()

func (*AnnotationsConfig) String added in v0.3.35

func (x *AnnotationsConfig) String() string

func (*AnnotationsConfig) Validate added in v0.3.35

func (m *AnnotationsConfig) Validate() error

Validate checks the field values on AnnotationsConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AnnotationsConfig) ValidateAll added in v0.3.35

func (m *AnnotationsConfig) ValidateAll() error

ValidateAll checks the field values on AnnotationsConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AnnotationsConfigMultiError, or nil if none found.

type AnnotationsConfigMultiError added in v0.3.35

type AnnotationsConfigMultiError []error

AnnotationsConfigMultiError is an error wrapping multiple validation errors returned by AnnotationsConfig.ValidateAll() if the designated constraints aren't met.

func (AnnotationsConfigMultiError) AllErrors added in v0.3.35

func (m AnnotationsConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AnnotationsConfigMultiError) Error added in v0.3.35

Error returns a concatenation of all the error messages it wraps.

type AnnotationsConfigValidationError added in v0.3.35

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

AnnotationsConfigValidationError is the validation error returned by AnnotationsConfig.Validate if the designated constraints aren't met.

func (AnnotationsConfigValidationError) Cause added in v0.3.35

Cause function returns cause value.

func (AnnotationsConfigValidationError) Error added in v0.3.35

Error satisfies the builtin error interface

func (AnnotationsConfigValidationError) ErrorName added in v0.3.35

ErrorName returns error name.

func (AnnotationsConfigValidationError) Field added in v0.3.35

Field function returns field value.

func (AnnotationsConfigValidationError) Key added in v0.3.35

Key function returns key value.

func (AnnotationsConfigValidationError) Reason added in v0.3.35

Reason function returns reason value.

type AnnotationsConfig_Last9 added in v0.3.35

type AnnotationsConfig_Last9 struct {
	DataSource string `protobuf:"bytes,1,opt,name=data_source,json=dataSource,proto3" json:"data_source,omitempty"`
	// contains filtered or unexported fields
}

func (*AnnotationsConfig_Last9) Descriptor deprecated added in v0.3.35

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

Deprecated: Use AnnotationsConfig_Last9.ProtoReflect.Descriptor instead.

func (*AnnotationsConfig_Last9) GetDataSource added in v0.3.35

func (x *AnnotationsConfig_Last9) GetDataSource() string

func (*AnnotationsConfig_Last9) ProtoMessage added in v0.3.35

func (*AnnotationsConfig_Last9) ProtoMessage()

func (*AnnotationsConfig_Last9) ProtoReflect added in v0.3.35

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

func (*AnnotationsConfig_Last9) Reset added in v0.3.35

func (x *AnnotationsConfig_Last9) Reset()

func (*AnnotationsConfig_Last9) String added in v0.3.35

func (x *AnnotationsConfig_Last9) String() string

func (*AnnotationsConfig_Last9) Validate added in v0.3.35

func (m *AnnotationsConfig_Last9) Validate() error

Validate checks the field values on AnnotationsConfig_Last9 with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*AnnotationsConfig_Last9) ValidateAll added in v0.3.35

func (m *AnnotationsConfig_Last9) ValidateAll() error

ValidateAll checks the field values on AnnotationsConfig_Last9 with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in AnnotationsConfig_Last9MultiError, or nil if none found.

type AnnotationsConfig_Last9MultiError added in v0.3.35

type AnnotationsConfig_Last9MultiError []error

AnnotationsConfig_Last9MultiError is an error wrapping multiple validation errors returned by AnnotationsConfig_Last9.ValidateAll() if the designated constraints aren't met.

func (AnnotationsConfig_Last9MultiError) AllErrors added in v0.3.35

func (m AnnotationsConfig_Last9MultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (AnnotationsConfig_Last9MultiError) Error added in v0.3.35

Error returns a concatenation of all the error messages it wraps.

type AnnotationsConfig_Last9ValidationError added in v0.3.35

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

AnnotationsConfig_Last9ValidationError is the validation error returned by AnnotationsConfig_Last9.Validate if the designated constraints aren't met.

func (AnnotationsConfig_Last9ValidationError) Cause added in v0.3.35

Cause function returns cause value.

func (AnnotationsConfig_Last9ValidationError) Error added in v0.3.35

Error satisfies the builtin error interface

func (AnnotationsConfig_Last9ValidationError) ErrorName added in v0.3.35

ErrorName returns error name.

func (AnnotationsConfig_Last9ValidationError) Field added in v0.3.35

Field function returns field value.

func (AnnotationsConfig_Last9ValidationError) Key added in v0.3.35

Key function returns key value.

func (AnnotationsConfig_Last9ValidationError) Reason added in v0.3.35

Reason function returns reason value.

type Application

type Application struct {
	Meta         *object.ObjectMeta       `protobuf:"bytes,1,opt,name=meta,proto3" json:"meta,omitempty"`
	Config       *ApplicationConfig       `protobuf:"bytes,2,opt,name=config,proto3" json:"config,omitempty"`
	State        *ApplicationState        `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`
	UserMetadata *ApplicationUserMetadata `protobuf:"bytes,4,opt,name=user_metadata,json=userMetadata,proto3" json:"user_metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*Application) Descriptor deprecated

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

Deprecated: Use Application.ProtoReflect.Descriptor instead.

func (*Application) GetConfig

func (x *Application) GetConfig() *ApplicationConfig

func (*Application) GetMeta

func (x *Application) GetMeta() *object.ObjectMeta

func (*Application) GetState

func (x *Application) GetState() *ApplicationState

func (*Application) GetUserMetadata

func (x *Application) GetUserMetadata() *ApplicationUserMetadata

func (*Application) ProtoMessage

func (*Application) ProtoMessage()

func (*Application) ProtoReflect

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

func (*Application) Reset

func (x *Application) Reset()

func (*Application) String

func (x *Application) String() string

func (*Application) Validate

func (m *Application) Validate() error

Validate checks the field values on Application with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Application) ValidateAll

func (m *Application) ValidateAll() error

ValidateAll checks the field values on Application with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ApplicationMultiError, or nil if none found.

type ApplicationConfig

type ApplicationConfig struct {
	Name                 string                                                `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	ReleaseChannels      []*release_channel.ReleaseChannelConfig               `protobuf:"bytes,2,rep,name=release_channels,json=releaseChannels,proto3" json:"release_channels,omitempty"`
	ReleaseChannelGroups []*release_channel.ReleaseChannelGroupGeneratorConfig `protobuf:"bytes,11,rep,name=release_channel_groups,json=releaseChannelGroups,proto3" json:"release_channel_groups,omitempty"`
	Notifications        *common_config.NotificationConfig                     `protobuf:"bytes,4,opt,name=notifications,proto3" json:"notifications,omitempty"`
	Annotations          *AnnotationsConfig                                    `protobuf:"bytes,12,opt,name=annotations,proto3" json:"annotations,omitempty"`
	ReleaseSettings      *common_config.ReleaseSettings                        `protobuf:"bytes,13,opt,name=release_settings,json=releaseSettings,proto3" json:"release_settings,omitempty"`
	// deprecated
	Alerts *workflow.AlertingConfig `protobuf:"bytes,5,opt,name=alerts,proto3" json:"alerts,omitempty"`
	// deprecated
	Capabilities []*capability.CapabilityConfig `protobuf:"bytes,6,rep,name=capabilities,proto3" json:"capabilities,omitempty"`
	// deprecated
	CapabilityInstances []*capability.CapabilityInstanceConfig `protobuf:"bytes,7,rep,name=capability_instances,json=capabilityInstances,proto3" json:"capability_instances,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplicationConfig) Descriptor deprecated

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

Deprecated: Use ApplicationConfig.ProtoReflect.Descriptor instead.

func (*ApplicationConfig) GetAlerts

func (x *ApplicationConfig) GetAlerts() *workflow.AlertingConfig

func (*ApplicationConfig) GetAnnotations added in v0.3.35

func (x *ApplicationConfig) GetAnnotations() *AnnotationsConfig

func (*ApplicationConfig) GetCapabilities

func (x *ApplicationConfig) GetCapabilities() []*capability.CapabilityConfig

func (*ApplicationConfig) GetCapabilityInstances

func (x *ApplicationConfig) GetCapabilityInstances() []*capability.CapabilityInstanceConfig

func (*ApplicationConfig) GetName

func (x *ApplicationConfig) GetName() string

func (*ApplicationConfig) GetNotifications

func (x *ApplicationConfig) GetNotifications() *common_config.NotificationConfig

func (*ApplicationConfig) GetReleaseChannelGroups added in v0.2.11

func (*ApplicationConfig) GetReleaseChannels

func (x *ApplicationConfig) GetReleaseChannels() []*release_channel.ReleaseChannelConfig

func (*ApplicationConfig) GetReleaseSettings added in v0.3.40

func (x *ApplicationConfig) GetReleaseSettings() *common_config.ReleaseSettings

func (*ApplicationConfig) ProtoMessage

func (*ApplicationConfig) ProtoMessage()

func (*ApplicationConfig) ProtoReflect

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

func (*ApplicationConfig) Reset

func (x *ApplicationConfig) Reset()

func (*ApplicationConfig) String

func (x *ApplicationConfig) String() string

func (*ApplicationConfig) Validate

func (m *ApplicationConfig) Validate() error

Validate checks the field values on ApplicationConfig with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ApplicationConfig) ValidateAll

func (m *ApplicationConfig) ValidateAll() error

ValidateAll checks the field values on ApplicationConfig with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ApplicationConfigMultiError, or nil if none found.

type ApplicationConfigMultiError

type ApplicationConfigMultiError []error

ApplicationConfigMultiError is an error wrapping multiple validation errors returned by ApplicationConfig.ValidateAll() if the designated constraints aren't met.

func (ApplicationConfigMultiError) AllErrors

func (m ApplicationConfigMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApplicationConfigMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ApplicationConfigValidationError

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

ApplicationConfigValidationError is the validation error returned by ApplicationConfig.Validate if the designated constraints aren't met.

func (ApplicationConfigValidationError) Cause

Cause function returns cause value.

func (ApplicationConfigValidationError) Error

Error satisfies the builtin error interface

func (ApplicationConfigValidationError) ErrorName

ErrorName returns error name.

func (ApplicationConfigValidationError) Field

Field function returns field value.

func (ApplicationConfigValidationError) Key

Key function returns key value.

func (ApplicationConfigValidationError) Reason

Reason function returns reason value.

type ApplicationManagerClient

type ApplicationManagerClient interface {
	ConfigureApplication(ctx context.Context, in *ConfigureApplicationReq, opts ...grpc.CallOption) (*ConfigureApplicationResp, error)
	ValidateConfigureApplication(ctx context.Context, in *ConfigureApplicationReq, opts ...grpc.CallOption) (*ValidateConfigureApplicationResp, error)
	ListApplications(ctx context.Context, in *ListApplicationsReq, opts ...grpc.CallOption) (*ListApplicationsResp, error)
	GetApplicationConfig(ctx context.Context, in *GetApplicationConfigReq, opts ...grpc.CallOption) (*GetApplicationConfigResp, error)
	ListApplicationConfigVersions(ctx context.Context, in *ListApplicationConfigVersionsReq, opts ...grpc.CallOption) (*ListApplicationConfigVersionsResp, error)
	GetApplication(ctx context.Context, in *GetApplicationReq, opts ...grpc.CallOption) (*GetApplicationResp, error)
	DeleteApplication(ctx context.Context, in *DeleteApplicationReq, opts ...grpc.CallOption) (*DeleteApplicationResp, error)
	GetApplicationMetrics(ctx context.Context, in *GetApplicationMetricsReq, opts ...grpc.CallOption) (*GetApplicationMetricsResp, error)
	GetApplicationInsights(ctx context.Context, in *GetApplicationInsightsReq, opts ...grpc.CallOption) (*GetApplicationInsightsResp, error)
	SnoozeApplicationInsight(ctx context.Context, in *SnoozeApplicationInsightReq, opts ...grpc.CallOption) (*SnoozeApplicationInsightResp, error)
	// Get application metadata, useful for constructing edit workflows for metadata
	GetApplicationMetadata(ctx context.Context, in *GetApplicationMetadataReq, opts ...grpc.CallOption) (*GetApplicationMetadataResp, error)
	SetApplicationMetadata(ctx context.Context, in *SetApplicationMetadataReq, opts ...grpc.CallOption) (*SetApplicationMetadataResp, error)
}

ApplicationManagerClient is the client API for ApplicationManager service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type ApplicationManagerServer

type ApplicationManagerServer interface {
	ConfigureApplication(context.Context, *ConfigureApplicationReq) (*ConfigureApplicationResp, error)
	ValidateConfigureApplication(context.Context, *ConfigureApplicationReq) (*ValidateConfigureApplicationResp, error)
	ListApplications(context.Context, *ListApplicationsReq) (*ListApplicationsResp, error)
	GetApplicationConfig(context.Context, *GetApplicationConfigReq) (*GetApplicationConfigResp, error)
	ListApplicationConfigVersions(context.Context, *ListApplicationConfigVersionsReq) (*ListApplicationConfigVersionsResp, error)
	GetApplication(context.Context, *GetApplicationReq) (*GetApplicationResp, error)
	DeleteApplication(context.Context, *DeleteApplicationReq) (*DeleteApplicationResp, error)
	GetApplicationMetrics(context.Context, *GetApplicationMetricsReq) (*GetApplicationMetricsResp, error)
	GetApplicationInsights(context.Context, *GetApplicationInsightsReq) (*GetApplicationInsightsResp, error)
	SnoozeApplicationInsight(context.Context, *SnoozeApplicationInsightReq) (*SnoozeApplicationInsightResp, error)
	// Get application metadata, useful for constructing edit workflows for metadata
	GetApplicationMetadata(context.Context, *GetApplicationMetadataReq) (*GetApplicationMetadataResp, error)
	SetApplicationMetadata(context.Context, *SetApplicationMetadataReq) (*SetApplicationMetadataResp, error)
	// contains filtered or unexported methods
}

ApplicationManagerServer is the server API for ApplicationManager service. All implementations must embed UnimplementedApplicationManagerServer for forward compatibility

type ApplicationMultiError

type ApplicationMultiError []error

ApplicationMultiError is an error wrapping multiple validation errors returned by Application.ValidateAll() if the designated constraints aren't met.

func (ApplicationMultiError) AllErrors

func (m ApplicationMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApplicationMultiError) Error

func (m ApplicationMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type ApplicationState

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

func (*ApplicationState) Descriptor deprecated

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

Deprecated: Use ApplicationState.ProtoReflect.Descriptor instead.

func (*ApplicationState) ProtoMessage

func (*ApplicationState) ProtoMessage()

func (*ApplicationState) ProtoReflect

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

func (*ApplicationState) Reset

func (x *ApplicationState) Reset()

func (*ApplicationState) String

func (x *ApplicationState) String() string

func (*ApplicationState) Validate

func (m *ApplicationState) Validate() error

Validate checks the field values on ApplicationState with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ApplicationState) ValidateAll

func (m *ApplicationState) ValidateAll() error

ValidateAll checks the field values on ApplicationState with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ApplicationStateMultiError, or nil if none found.

type ApplicationStateMultiError

type ApplicationStateMultiError []error

ApplicationStateMultiError is an error wrapping multiple validation errors returned by ApplicationState.ValidateAll() if the designated constraints aren't met.

func (ApplicationStateMultiError) AllErrors

func (m ApplicationStateMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApplicationStateMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ApplicationStateValidationError

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

ApplicationStateValidationError is the validation error returned by ApplicationState.Validate if the designated constraints aren't met.

func (ApplicationStateValidationError) Cause

Cause function returns cause value.

func (ApplicationStateValidationError) Error

Error satisfies the builtin error interface

func (ApplicationStateValidationError) ErrorName

ErrorName returns error name.

func (ApplicationStateValidationError) Field

Field function returns field value.

func (ApplicationStateValidationError) Key

Key function returns key value.

func (ApplicationStateValidationError) Reason

Reason function returns reason value.

type ApplicationUserMetadata

type ApplicationUserMetadata struct {
	Description string                `protobuf:"bytes,1,opt,name=description,proto3" json:"description,omitempty"`
	Links       []*common_config.Link `protobuf:"bytes,2,rep,name=links,proto3" json:"links,omitempty"`
	// Links that every service should get automatically
	ServiceLinks []*common_config.Link `protobuf:"bytes,3,rep,name=service_links,json=serviceLinks,proto3" json:"service_links,omitempty"`
	// contains filtered or unexported fields
}

func (*ApplicationUserMetadata) Descriptor deprecated

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

Deprecated: Use ApplicationUserMetadata.ProtoReflect.Descriptor instead.

func (*ApplicationUserMetadata) GetDescription

func (x *ApplicationUserMetadata) GetDescription() string
func (x *ApplicationUserMetadata) GetLinks() []*common_config.Link
func (x *ApplicationUserMetadata) GetServiceLinks() []*common_config.Link

func (*ApplicationUserMetadata) ProtoMessage

func (*ApplicationUserMetadata) ProtoMessage()

func (*ApplicationUserMetadata) ProtoReflect

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

func (*ApplicationUserMetadata) Reset

func (x *ApplicationUserMetadata) Reset()

func (*ApplicationUserMetadata) String

func (x *ApplicationUserMetadata) String() string

func (*ApplicationUserMetadata) Validate

func (m *ApplicationUserMetadata) Validate() error

Validate checks the field values on ApplicationUserMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ApplicationUserMetadata) ValidateAll

func (m *ApplicationUserMetadata) ValidateAll() error

ValidateAll checks the field values on ApplicationUserMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ApplicationUserMetadataMultiError, or nil if none found.

type ApplicationUserMetadataMultiError

type ApplicationUserMetadataMultiError []error

ApplicationUserMetadataMultiError is an error wrapping multiple validation errors returned by ApplicationUserMetadata.ValidateAll() if the designated constraints aren't met.

func (ApplicationUserMetadataMultiError) AllErrors

func (m ApplicationUserMetadataMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ApplicationUserMetadataMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ApplicationUserMetadataValidationError

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

ApplicationUserMetadataValidationError is the validation error returned by ApplicationUserMetadata.Validate if the designated constraints aren't met.

func (ApplicationUserMetadataValidationError) Cause

Cause function returns cause value.

func (ApplicationUserMetadataValidationError) Error

Error satisfies the builtin error interface

func (ApplicationUserMetadataValidationError) ErrorName

ErrorName returns error name.

func (ApplicationUserMetadataValidationError) Field

Field function returns field value.

func (ApplicationUserMetadataValidationError) Key

Key function returns key value.

func (ApplicationUserMetadataValidationError) Reason

Reason function returns reason value.

type ApplicationValidationError

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

ApplicationValidationError is the validation error returned by Application.Validate if the designated constraints aren't met.

func (ApplicationValidationError) Cause

Cause function returns cause value.

func (ApplicationValidationError) Error

Error satisfies the builtin error interface

func (ApplicationValidationError) ErrorName

func (e ApplicationValidationError) ErrorName() string

ErrorName returns error name.

func (ApplicationValidationError) Field

Field function returns field value.

func (ApplicationValidationError) Key

Key function returns key value.

func (ApplicationValidationError) Reason

Reason function returns reason value.

type ConfigureApplicationReq

type ConfigureApplicationReq struct {
	ApplicationConfig          *ApplicationConfig      `protobuf:"bytes,1,opt,name=application_config,json=applicationConfig,proto3" json:"application_config,omitempty"`
	ApprovedDangerousActionIds []string                `` /* 143-byte string literal not displayed */
	Source                     version.Source          `protobuf:"varint,3,opt,name=source,proto3,enum=prodvana.version.Source" json:"source,omitempty"`
	SourceMetadata             *version.SourceMetadata `protobuf:"bytes,4,opt,name=source_metadata,json=sourceMetadata,proto3" json:"source_metadata,omitempty"`
	// optional, if this is not a new application, this is the existing version of
	// this application config that this configuration was based on.
	// this can be used to avoid concurrent updates overwriting each other.
	// NOTE: this will eventually be required for updates
	BaseVersion           string `protobuf:"bytes,5,opt,name=base_version,json=baseVersion,proto3" json:"base_version,omitempty"`
	ForceCreateNewVersion bool   `` // create new version even if there are no detected changes
	/* 129-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ConfigureApplicationReq) Descriptor deprecated

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

Deprecated: Use ConfigureApplicationReq.ProtoReflect.Descriptor instead.

func (*ConfigureApplicationReq) GetApplicationConfig

func (x *ConfigureApplicationReq) GetApplicationConfig() *ApplicationConfig

func (*ConfigureApplicationReq) GetApprovedDangerousActionIds

func (x *ConfigureApplicationReq) GetApprovedDangerousActionIds() []string

func (*ConfigureApplicationReq) GetBaseVersion

func (x *ConfigureApplicationReq) GetBaseVersion() string

func (*ConfigureApplicationReq) GetForceCreateNewVersion added in v0.3.19

func (x *ConfigureApplicationReq) GetForceCreateNewVersion() bool

func (*ConfigureApplicationReq) GetSource

func (x *ConfigureApplicationReq) GetSource() version.Source

func (*ConfigureApplicationReq) GetSourceMetadata

func (x *ConfigureApplicationReq) GetSourceMetadata() *version.SourceMetadata

func (*ConfigureApplicationReq) ProtoMessage

func (*ConfigureApplicationReq) ProtoMessage()

func (*ConfigureApplicationReq) ProtoReflect

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

func (*ConfigureApplicationReq) Reset

func (x *ConfigureApplicationReq) Reset()

func (*ConfigureApplicationReq) String

func (x *ConfigureApplicationReq) String() string

func (*ConfigureApplicationReq) Validate

func (m *ConfigureApplicationReq) Validate() error

Validate checks the field values on ConfigureApplicationReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ConfigureApplicationReq) ValidateAll

func (m *ConfigureApplicationReq) ValidateAll() error

ValidateAll checks the field values on ConfigureApplicationReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ConfigureApplicationReqMultiError, or nil if none found.

type ConfigureApplicationReqMultiError

type ConfigureApplicationReqMultiError []error

ConfigureApplicationReqMultiError is an error wrapping multiple validation errors returned by ConfigureApplicationReq.ValidateAll() if the designated constraints aren't met.

func (ConfigureApplicationReqMultiError) AllErrors

func (m ConfigureApplicationReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConfigureApplicationReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ConfigureApplicationReqValidationError

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

ConfigureApplicationReqValidationError is the validation error returned by ConfigureApplicationReq.Validate if the designated constraints aren't met.

func (ConfigureApplicationReqValidationError) Cause

Cause function returns cause value.

func (ConfigureApplicationReqValidationError) Error

Error satisfies the builtin error interface

func (ConfigureApplicationReqValidationError) ErrorName

ErrorName returns error name.

func (ConfigureApplicationReqValidationError) Field

Field function returns field value.

func (ConfigureApplicationReqValidationError) Key

Key function returns key value.

func (ConfigureApplicationReqValidationError) Reason

Reason function returns reason value.

type ConfigureApplicationResp

type ConfigureApplicationResp struct {
	Meta              *object.ObjectMeta `protobuf:"bytes,1,opt,name=meta,proto3" json:"meta,omitempty"`
	CreatedNewVersion bool               `protobuf:"varint,2,opt,name=created_new_version,json=createdNewVersion,proto3" json:"created_new_version,omitempty"`
	// contains filtered or unexported fields
}

func (*ConfigureApplicationResp) Descriptor deprecated

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

Deprecated: Use ConfigureApplicationResp.ProtoReflect.Descriptor instead.

func (*ConfigureApplicationResp) GetCreatedNewVersion added in v0.3.12

func (x *ConfigureApplicationResp) GetCreatedNewVersion() bool

func (*ConfigureApplicationResp) GetMeta

func (*ConfigureApplicationResp) ProtoMessage

func (*ConfigureApplicationResp) ProtoMessage()

func (*ConfigureApplicationResp) ProtoReflect

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

func (*ConfigureApplicationResp) Reset

func (x *ConfigureApplicationResp) Reset()

func (*ConfigureApplicationResp) String

func (x *ConfigureApplicationResp) String() string

func (*ConfigureApplicationResp) Validate

func (m *ConfigureApplicationResp) Validate() error

Validate checks the field values on ConfigureApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ConfigureApplicationResp) ValidateAll

func (m *ConfigureApplicationResp) ValidateAll() error

ValidateAll checks the field values on ConfigureApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ConfigureApplicationRespMultiError, or nil if none found.

type ConfigureApplicationRespMultiError

type ConfigureApplicationRespMultiError []error

ConfigureApplicationRespMultiError is an error wrapping multiple validation errors returned by ConfigureApplicationResp.ValidateAll() if the designated constraints aren't met.

func (ConfigureApplicationRespMultiError) AllErrors

func (m ConfigureApplicationRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ConfigureApplicationRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ConfigureApplicationRespValidationError

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

ConfigureApplicationRespValidationError is the validation error returned by ConfigureApplicationResp.Validate if the designated constraints aren't met.

func (ConfigureApplicationRespValidationError) Cause

Cause function returns cause value.

func (ConfigureApplicationRespValidationError) Error

Error satisfies the builtin error interface

func (ConfigureApplicationRespValidationError) ErrorName

ErrorName returns error name.

func (ConfigureApplicationRespValidationError) Field

Field function returns field value.

func (ConfigureApplicationRespValidationError) Key

Key function returns key value.

func (ConfigureApplicationRespValidationError) Reason

Reason function returns reason value.

type DeleteApplicationReq

type DeleteApplicationReq struct {
	Application string `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteApplicationReq) Descriptor deprecated

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

Deprecated: Use DeleteApplicationReq.ProtoReflect.Descriptor instead.

func (*DeleteApplicationReq) GetApplication

func (x *DeleteApplicationReq) GetApplication() string

func (*DeleteApplicationReq) ProtoMessage

func (*DeleteApplicationReq) ProtoMessage()

func (*DeleteApplicationReq) ProtoReflect

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

func (*DeleteApplicationReq) Reset

func (x *DeleteApplicationReq) Reset()

func (*DeleteApplicationReq) String

func (x *DeleteApplicationReq) String() string

func (*DeleteApplicationReq) Validate

func (m *DeleteApplicationReq) Validate() error

Validate checks the field values on DeleteApplicationReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteApplicationReq) ValidateAll

func (m *DeleteApplicationReq) ValidateAll() error

ValidateAll checks the field values on DeleteApplicationReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteApplicationReqMultiError, or nil if none found.

type DeleteApplicationReqMultiError

type DeleteApplicationReqMultiError []error

DeleteApplicationReqMultiError is an error wrapping multiple validation errors returned by DeleteApplicationReq.ValidateAll() if the designated constraints aren't met.

func (DeleteApplicationReqMultiError) AllErrors

func (m DeleteApplicationReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteApplicationReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteApplicationReqValidationError

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

DeleteApplicationReqValidationError is the validation error returned by DeleteApplicationReq.Validate if the designated constraints aren't met.

func (DeleteApplicationReqValidationError) Cause

Cause function returns cause value.

func (DeleteApplicationReqValidationError) Error

Error satisfies the builtin error interface

func (DeleteApplicationReqValidationError) ErrorName

ErrorName returns error name.

func (DeleteApplicationReqValidationError) Field

Field function returns field value.

func (DeleteApplicationReqValidationError) Key

Key function returns key value.

func (DeleteApplicationReqValidationError) Reason

Reason function returns reason value.

type DeleteApplicationResp

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

func (*DeleteApplicationResp) Descriptor deprecated

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

Deprecated: Use DeleteApplicationResp.ProtoReflect.Descriptor instead.

func (*DeleteApplicationResp) ProtoMessage

func (*DeleteApplicationResp) ProtoMessage()

func (*DeleteApplicationResp) ProtoReflect

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

func (*DeleteApplicationResp) Reset

func (x *DeleteApplicationResp) Reset()

func (*DeleteApplicationResp) String

func (x *DeleteApplicationResp) String() string

func (*DeleteApplicationResp) Validate

func (m *DeleteApplicationResp) Validate() error

Validate checks the field values on DeleteApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*DeleteApplicationResp) ValidateAll

func (m *DeleteApplicationResp) ValidateAll() error

ValidateAll checks the field values on DeleteApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in DeleteApplicationRespMultiError, or nil if none found.

type DeleteApplicationRespMultiError

type DeleteApplicationRespMultiError []error

DeleteApplicationRespMultiError is an error wrapping multiple validation errors returned by DeleteApplicationResp.ValidateAll() if the designated constraints aren't met.

func (DeleteApplicationRespMultiError) AllErrors

func (m DeleteApplicationRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (DeleteApplicationRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type DeleteApplicationRespValidationError

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

DeleteApplicationRespValidationError is the validation error returned by DeleteApplicationResp.Validate if the designated constraints aren't met.

func (DeleteApplicationRespValidationError) Cause

Cause function returns cause value.

func (DeleteApplicationRespValidationError) Error

Error satisfies the builtin error interface

func (DeleteApplicationRespValidationError) ErrorName

ErrorName returns error name.

func (DeleteApplicationRespValidationError) Field

Field function returns field value.

func (DeleteApplicationRespValidationError) Key

Key function returns key value.

func (DeleteApplicationRespValidationError) Reason

Reason function returns reason value.

type GetApplicationConfigReq

type GetApplicationConfigReq struct {
	Application string `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	Version     string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"` // omit to get latest version
	// contains filtered or unexported fields
}

func (*GetApplicationConfigReq) Descriptor deprecated

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

Deprecated: Use GetApplicationConfigReq.ProtoReflect.Descriptor instead.

func (*GetApplicationConfigReq) GetApplication

func (x *GetApplicationConfigReq) GetApplication() string

func (*GetApplicationConfigReq) GetVersion

func (x *GetApplicationConfigReq) GetVersion() string

func (*GetApplicationConfigReq) ProtoMessage

func (*GetApplicationConfigReq) ProtoMessage()

func (*GetApplicationConfigReq) ProtoReflect

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

func (*GetApplicationConfigReq) Reset

func (x *GetApplicationConfigReq) Reset()

func (*GetApplicationConfigReq) String

func (x *GetApplicationConfigReq) String() string

func (*GetApplicationConfigReq) Validate

func (m *GetApplicationConfigReq) Validate() error

Validate checks the field values on GetApplicationConfigReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationConfigReq) ValidateAll

func (m *GetApplicationConfigReq) ValidateAll() error

ValidateAll checks the field values on GetApplicationConfigReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationConfigReqMultiError, or nil if none found.

type GetApplicationConfigReqMultiError

type GetApplicationConfigReqMultiError []error

GetApplicationConfigReqMultiError is an error wrapping multiple validation errors returned by GetApplicationConfigReq.ValidateAll() if the designated constraints aren't met.

func (GetApplicationConfigReqMultiError) AllErrors

func (m GetApplicationConfigReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationConfigReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationConfigReqValidationError

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

GetApplicationConfigReqValidationError is the validation error returned by GetApplicationConfigReq.Validate if the designated constraints aren't met.

func (GetApplicationConfigReqValidationError) Cause

Cause function returns cause value.

func (GetApplicationConfigReqValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationConfigReqValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationConfigReqValidationError) Field

Field function returns field value.

func (GetApplicationConfigReqValidationError) Key

Key function returns key value.

func (GetApplicationConfigReqValidationError) Reason

Reason function returns reason value.

type GetApplicationConfigResp

type GetApplicationConfigResp struct {
	Config         *ApplicationConfig `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"` // config as passed in by user
	Version        string             `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	CompiledConfig *ApplicationConfig `protobuf:"bytes,3,opt,name=compiled_config,json=compiledConfig,proto3" json:"compiled_config,omitempty"` // config with defaults applied
	// contains filtered or unexported fields
}

func (*GetApplicationConfigResp) Descriptor deprecated

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

Deprecated: Use GetApplicationConfigResp.ProtoReflect.Descriptor instead.

func (*GetApplicationConfigResp) GetCompiledConfig

func (x *GetApplicationConfigResp) GetCompiledConfig() *ApplicationConfig

func (*GetApplicationConfigResp) GetConfig

func (*GetApplicationConfigResp) GetVersion

func (x *GetApplicationConfigResp) GetVersion() string

func (*GetApplicationConfigResp) ProtoMessage

func (*GetApplicationConfigResp) ProtoMessage()

func (*GetApplicationConfigResp) ProtoReflect

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

func (*GetApplicationConfigResp) Reset

func (x *GetApplicationConfigResp) Reset()

func (*GetApplicationConfigResp) String

func (x *GetApplicationConfigResp) String() string

func (*GetApplicationConfigResp) Validate

func (m *GetApplicationConfigResp) Validate() error

Validate checks the field values on GetApplicationConfigResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationConfigResp) ValidateAll

func (m *GetApplicationConfigResp) ValidateAll() error

ValidateAll checks the field values on GetApplicationConfigResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationConfigRespMultiError, or nil if none found.

type GetApplicationConfigRespMultiError

type GetApplicationConfigRespMultiError []error

GetApplicationConfigRespMultiError is an error wrapping multiple validation errors returned by GetApplicationConfigResp.ValidateAll() if the designated constraints aren't met.

func (GetApplicationConfigRespMultiError) AllErrors

func (m GetApplicationConfigRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationConfigRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationConfigRespValidationError

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

GetApplicationConfigRespValidationError is the validation error returned by GetApplicationConfigResp.Validate if the designated constraints aren't met.

func (GetApplicationConfigRespValidationError) Cause

Cause function returns cause value.

func (GetApplicationConfigRespValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationConfigRespValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationConfigRespValidationError) Field

Field function returns field value.

func (GetApplicationConfigRespValidationError) Key

Key function returns key value.

func (GetApplicationConfigRespValidationError) Reason

Reason function returns reason value.

type GetApplicationInsightsReq

type GetApplicationInsightsReq struct {
	Application string `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationInsightsReq) Descriptor deprecated

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

Deprecated: Use GetApplicationInsightsReq.ProtoReflect.Descriptor instead.

func (*GetApplicationInsightsReq) GetApplication

func (x *GetApplicationInsightsReq) GetApplication() string

func (*GetApplicationInsightsReq) ProtoMessage

func (*GetApplicationInsightsReq) ProtoMessage()

func (*GetApplicationInsightsReq) ProtoReflect

func (*GetApplicationInsightsReq) Reset

func (x *GetApplicationInsightsReq) Reset()

func (*GetApplicationInsightsReq) String

func (x *GetApplicationInsightsReq) String() string

func (*GetApplicationInsightsReq) Validate

func (m *GetApplicationInsightsReq) Validate() error

Validate checks the field values on GetApplicationInsightsReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationInsightsReq) ValidateAll

func (m *GetApplicationInsightsReq) ValidateAll() error

ValidateAll checks the field values on GetApplicationInsightsReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationInsightsReqMultiError, or nil if none found.

type GetApplicationInsightsReqMultiError

type GetApplicationInsightsReqMultiError []error

GetApplicationInsightsReqMultiError is an error wrapping multiple validation errors returned by GetApplicationInsightsReq.ValidateAll() if the designated constraints aren't met.

func (GetApplicationInsightsReqMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetApplicationInsightsReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationInsightsReqValidationError

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

GetApplicationInsightsReqValidationError is the validation error returned by GetApplicationInsightsReq.Validate if the designated constraints aren't met.

func (GetApplicationInsightsReqValidationError) Cause

Cause function returns cause value.

func (GetApplicationInsightsReqValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationInsightsReqValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationInsightsReqValidationError) Field

Field function returns field value.

func (GetApplicationInsightsReqValidationError) Key

Key function returns key value.

func (GetApplicationInsightsReqValidationError) Reason

Reason function returns reason value.

type GetApplicationInsightsResp

type GetApplicationInsightsResp struct {
	Insights []*insights.Insight `protobuf:"bytes,1,rep,name=insights,proto3" json:"insights,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationInsightsResp) Descriptor deprecated

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

Deprecated: Use GetApplicationInsightsResp.ProtoReflect.Descriptor instead.

func (*GetApplicationInsightsResp) GetInsights

func (x *GetApplicationInsightsResp) GetInsights() []*insights.Insight

func (*GetApplicationInsightsResp) ProtoMessage

func (*GetApplicationInsightsResp) ProtoMessage()

func (*GetApplicationInsightsResp) ProtoReflect

func (*GetApplicationInsightsResp) Reset

func (x *GetApplicationInsightsResp) Reset()

func (*GetApplicationInsightsResp) String

func (x *GetApplicationInsightsResp) String() string

func (*GetApplicationInsightsResp) Validate

func (m *GetApplicationInsightsResp) Validate() error

Validate checks the field values on GetApplicationInsightsResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationInsightsResp) ValidateAll

func (m *GetApplicationInsightsResp) ValidateAll() error

ValidateAll checks the field values on GetApplicationInsightsResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationInsightsRespMultiError, or nil if none found.

type GetApplicationInsightsRespMultiError

type GetApplicationInsightsRespMultiError []error

GetApplicationInsightsRespMultiError is an error wrapping multiple validation errors returned by GetApplicationInsightsResp.ValidateAll() if the designated constraints aren't met.

func (GetApplicationInsightsRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetApplicationInsightsRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationInsightsRespValidationError

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

GetApplicationInsightsRespValidationError is the validation error returned by GetApplicationInsightsResp.Validate if the designated constraints aren't met.

func (GetApplicationInsightsRespValidationError) Cause

Cause function returns cause value.

func (GetApplicationInsightsRespValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationInsightsRespValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationInsightsRespValidationError) Field

Field function returns field value.

func (GetApplicationInsightsRespValidationError) Key

Key function returns key value.

func (GetApplicationInsightsRespValidationError) Reason

Reason function returns reason value.

type GetApplicationMetadataReq

type GetApplicationMetadataReq struct {
	Application string `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationMetadataReq) Descriptor deprecated

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

Deprecated: Use GetApplicationMetadataReq.ProtoReflect.Descriptor instead.

func (*GetApplicationMetadataReq) GetApplication

func (x *GetApplicationMetadataReq) GetApplication() string

func (*GetApplicationMetadataReq) ProtoMessage

func (*GetApplicationMetadataReq) ProtoMessage()

func (*GetApplicationMetadataReq) ProtoReflect

func (*GetApplicationMetadataReq) Reset

func (x *GetApplicationMetadataReq) Reset()

func (*GetApplicationMetadataReq) String

func (x *GetApplicationMetadataReq) String() string

func (*GetApplicationMetadataReq) Validate

func (m *GetApplicationMetadataReq) Validate() error

Validate checks the field values on GetApplicationMetadataReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationMetadataReq) ValidateAll

func (m *GetApplicationMetadataReq) ValidateAll() error

ValidateAll checks the field values on GetApplicationMetadataReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationMetadataReqMultiError, or nil if none found.

type GetApplicationMetadataReqMultiError

type GetApplicationMetadataReqMultiError []error

GetApplicationMetadataReqMultiError is an error wrapping multiple validation errors returned by GetApplicationMetadataReq.ValidateAll() if the designated constraints aren't met.

func (GetApplicationMetadataReqMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetApplicationMetadataReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationMetadataReqValidationError

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

GetApplicationMetadataReqValidationError is the validation error returned by GetApplicationMetadataReq.Validate if the designated constraints aren't met.

func (GetApplicationMetadataReqValidationError) Cause

Cause function returns cause value.

func (GetApplicationMetadataReqValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationMetadataReqValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationMetadataReqValidationError) Field

Field function returns field value.

func (GetApplicationMetadataReqValidationError) Key

Key function returns key value.

func (GetApplicationMetadataReqValidationError) Reason

Reason function returns reason value.

type GetApplicationMetadataResp

type GetApplicationMetadataResp struct {

	// metadata with no variables substitution, no modifications from parents
	Metadata *ApplicationUserMetadata `protobuf:"bytes,1,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationMetadataResp) Descriptor deprecated

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

Deprecated: Use GetApplicationMetadataResp.ProtoReflect.Descriptor instead.

func (*GetApplicationMetadataResp) GetMetadata

func (*GetApplicationMetadataResp) ProtoMessage

func (*GetApplicationMetadataResp) ProtoMessage()

func (*GetApplicationMetadataResp) ProtoReflect

func (*GetApplicationMetadataResp) Reset

func (x *GetApplicationMetadataResp) Reset()

func (*GetApplicationMetadataResp) String

func (x *GetApplicationMetadataResp) String() string

func (*GetApplicationMetadataResp) Validate

func (m *GetApplicationMetadataResp) Validate() error

Validate checks the field values on GetApplicationMetadataResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationMetadataResp) ValidateAll

func (m *GetApplicationMetadataResp) ValidateAll() error

ValidateAll checks the field values on GetApplicationMetadataResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationMetadataRespMultiError, or nil if none found.

type GetApplicationMetadataRespMultiError

type GetApplicationMetadataRespMultiError []error

GetApplicationMetadataRespMultiError is an error wrapping multiple validation errors returned by GetApplicationMetadataResp.ValidateAll() if the designated constraints aren't met.

func (GetApplicationMetadataRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetApplicationMetadataRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationMetadataRespValidationError

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

GetApplicationMetadataRespValidationError is the validation error returned by GetApplicationMetadataResp.Validate if the designated constraints aren't met.

func (GetApplicationMetadataRespValidationError) Cause

Cause function returns cause value.

func (GetApplicationMetadataRespValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationMetadataRespValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationMetadataRespValidationError) Field

Field function returns field value.

func (GetApplicationMetadataRespValidationError) Key

Key function returns key value.

func (GetApplicationMetadataRespValidationError) Reason

Reason function returns reason value.

type GetApplicationMetricsReq

type GetApplicationMetricsReq struct {
	Application    string                 `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	StartTimestamp *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=start_timestamp,json=startTimestamp,proto3" json:"start_timestamp,omitempty"`
	EndTimestamp   *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=end_timestamp,json=endTimestamp,proto3" json:"end_timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationMetricsReq) Descriptor deprecated

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

Deprecated: Use GetApplicationMetricsReq.ProtoReflect.Descriptor instead.

func (*GetApplicationMetricsReq) GetApplication

func (x *GetApplicationMetricsReq) GetApplication() string

func (*GetApplicationMetricsReq) GetEndTimestamp

func (x *GetApplicationMetricsReq) GetEndTimestamp() *timestamppb.Timestamp

func (*GetApplicationMetricsReq) GetStartTimestamp

func (x *GetApplicationMetricsReq) GetStartTimestamp() *timestamppb.Timestamp

func (*GetApplicationMetricsReq) ProtoMessage

func (*GetApplicationMetricsReq) ProtoMessage()

func (*GetApplicationMetricsReq) ProtoReflect

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

func (*GetApplicationMetricsReq) Reset

func (x *GetApplicationMetricsReq) Reset()

func (*GetApplicationMetricsReq) String

func (x *GetApplicationMetricsReq) String() string

func (*GetApplicationMetricsReq) Validate

func (m *GetApplicationMetricsReq) Validate() error

Validate checks the field values on GetApplicationMetricsReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationMetricsReq) ValidateAll

func (m *GetApplicationMetricsReq) ValidateAll() error

ValidateAll checks the field values on GetApplicationMetricsReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationMetricsReqMultiError, or nil if none found.

type GetApplicationMetricsReqMultiError

type GetApplicationMetricsReqMultiError []error

GetApplicationMetricsReqMultiError is an error wrapping multiple validation errors returned by GetApplicationMetricsReq.ValidateAll() if the designated constraints aren't met.

func (GetApplicationMetricsReqMultiError) AllErrors

func (m GetApplicationMetricsReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationMetricsReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationMetricsReqValidationError

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

GetApplicationMetricsReqValidationError is the validation error returned by GetApplicationMetricsReq.Validate if the designated constraints aren't met.

func (GetApplicationMetricsReqValidationError) Cause

Cause function returns cause value.

func (GetApplicationMetricsReqValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationMetricsReqValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationMetricsReqValidationError) Field

Field function returns field value.

func (GetApplicationMetricsReqValidationError) Key

Key function returns key value.

func (GetApplicationMetricsReqValidationError) Reason

Reason function returns reason value.

type GetApplicationMetricsResp

type GetApplicationMetricsResp struct {
	DeploymentMetrics *metrics.DeploymentMetrics `protobuf:"bytes,1,opt,name=deployment_metrics,json=deploymentMetrics,proto3" json:"deployment_metrics,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationMetricsResp) Descriptor deprecated

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

Deprecated: Use GetApplicationMetricsResp.ProtoReflect.Descriptor instead.

func (*GetApplicationMetricsResp) GetDeploymentMetrics

func (x *GetApplicationMetricsResp) GetDeploymentMetrics() *metrics.DeploymentMetrics

func (*GetApplicationMetricsResp) ProtoMessage

func (*GetApplicationMetricsResp) ProtoMessage()

func (*GetApplicationMetricsResp) ProtoReflect

func (*GetApplicationMetricsResp) Reset

func (x *GetApplicationMetricsResp) Reset()

func (*GetApplicationMetricsResp) String

func (x *GetApplicationMetricsResp) String() string

func (*GetApplicationMetricsResp) Validate

func (m *GetApplicationMetricsResp) Validate() error

Validate checks the field values on GetApplicationMetricsResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationMetricsResp) ValidateAll

func (m *GetApplicationMetricsResp) ValidateAll() error

ValidateAll checks the field values on GetApplicationMetricsResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationMetricsRespMultiError, or nil if none found.

type GetApplicationMetricsRespMultiError

type GetApplicationMetricsRespMultiError []error

GetApplicationMetricsRespMultiError is an error wrapping multiple validation errors returned by GetApplicationMetricsResp.ValidateAll() if the designated constraints aren't met.

func (GetApplicationMetricsRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (GetApplicationMetricsRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationMetricsRespValidationError

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

GetApplicationMetricsRespValidationError is the validation error returned by GetApplicationMetricsResp.Validate if the designated constraints aren't met.

func (GetApplicationMetricsRespValidationError) Cause

Cause function returns cause value.

func (GetApplicationMetricsRespValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationMetricsRespValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationMetricsRespValidationError) Field

Field function returns field value.

func (GetApplicationMetricsRespValidationError) Key

Key function returns key value.

func (GetApplicationMetricsRespValidationError) Reason

Reason function returns reason value.

type GetApplicationReq

type GetApplicationReq struct {
	Application string `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationReq) Descriptor deprecated

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

Deprecated: Use GetApplicationReq.ProtoReflect.Descriptor instead.

func (*GetApplicationReq) GetApplication

func (x *GetApplicationReq) GetApplication() string

func (*GetApplicationReq) ProtoMessage

func (*GetApplicationReq) ProtoMessage()

func (*GetApplicationReq) ProtoReflect

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

func (*GetApplicationReq) Reset

func (x *GetApplicationReq) Reset()

func (*GetApplicationReq) String

func (x *GetApplicationReq) String() string

func (*GetApplicationReq) Validate

func (m *GetApplicationReq) Validate() error

Validate checks the field values on GetApplicationReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationReq) ValidateAll

func (m *GetApplicationReq) ValidateAll() error

ValidateAll checks the field values on GetApplicationReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationReqMultiError, or nil if none found.

type GetApplicationReqMultiError

type GetApplicationReqMultiError []error

GetApplicationReqMultiError is an error wrapping multiple validation errors returned by GetApplicationReq.ValidateAll() if the designated constraints aren't met.

func (GetApplicationReqMultiError) AllErrors

func (m GetApplicationReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationReqValidationError

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

GetApplicationReqValidationError is the validation error returned by GetApplicationReq.Validate if the designated constraints aren't met.

func (GetApplicationReqValidationError) Cause

Cause function returns cause value.

func (GetApplicationReqValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationReqValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationReqValidationError) Field

Field function returns field value.

func (GetApplicationReqValidationError) Key

Key function returns key value.

func (GetApplicationReqValidationError) Reason

Reason function returns reason value.

type GetApplicationResp

type GetApplicationResp struct {
	Application *Application `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	// contains filtered or unexported fields
}

func (*GetApplicationResp) Descriptor deprecated

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

Deprecated: Use GetApplicationResp.ProtoReflect.Descriptor instead.

func (*GetApplicationResp) GetApplication

func (x *GetApplicationResp) GetApplication() *Application

func (*GetApplicationResp) ProtoMessage

func (*GetApplicationResp) ProtoMessage()

func (*GetApplicationResp) ProtoReflect

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

func (*GetApplicationResp) Reset

func (x *GetApplicationResp) Reset()

func (*GetApplicationResp) String

func (x *GetApplicationResp) String() string

func (*GetApplicationResp) Validate

func (m *GetApplicationResp) Validate() error

Validate checks the field values on GetApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*GetApplicationResp) ValidateAll

func (m *GetApplicationResp) ValidateAll() error

ValidateAll checks the field values on GetApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in GetApplicationRespMultiError, or nil if none found.

type GetApplicationRespMultiError

type GetApplicationRespMultiError []error

GetApplicationRespMultiError is an error wrapping multiple validation errors returned by GetApplicationResp.ValidateAll() if the designated constraints aren't met.

func (GetApplicationRespMultiError) AllErrors

func (m GetApplicationRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (GetApplicationRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type GetApplicationRespValidationError

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

GetApplicationRespValidationError is the validation error returned by GetApplicationResp.Validate if the designated constraints aren't met.

func (GetApplicationRespValidationError) Cause

Cause function returns cause value.

func (GetApplicationRespValidationError) Error

Error satisfies the builtin error interface

func (GetApplicationRespValidationError) ErrorName

ErrorName returns error name.

func (GetApplicationRespValidationError) Field

Field function returns field value.

func (GetApplicationRespValidationError) Key

Key function returns key value.

func (GetApplicationRespValidationError) Reason

Reason function returns reason value.

type ListApplicationConfigVersionsReq added in v0.3.13

type ListApplicationConfigVersionsReq struct {
	Application string `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	PageToken   string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	PageSize    int32  `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// contains filtered or unexported fields
}

func (*ListApplicationConfigVersionsReq) Descriptor deprecated added in v0.3.13

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

Deprecated: Use ListApplicationConfigVersionsReq.ProtoReflect.Descriptor instead.

func (*ListApplicationConfigVersionsReq) GetApplication added in v0.3.13

func (x *ListApplicationConfigVersionsReq) GetApplication() string

func (*ListApplicationConfigVersionsReq) GetPageSize added in v0.3.13

func (x *ListApplicationConfigVersionsReq) GetPageSize() int32

func (*ListApplicationConfigVersionsReq) GetPageToken added in v0.3.13

func (x *ListApplicationConfigVersionsReq) GetPageToken() string

func (*ListApplicationConfigVersionsReq) ProtoMessage added in v0.3.13

func (*ListApplicationConfigVersionsReq) ProtoMessage()

func (*ListApplicationConfigVersionsReq) ProtoReflect added in v0.3.13

func (*ListApplicationConfigVersionsReq) Reset added in v0.3.13

func (*ListApplicationConfigVersionsReq) String added in v0.3.13

func (*ListApplicationConfigVersionsReq) Validate added in v0.3.13

Validate checks the field values on ListApplicationConfigVersionsReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationConfigVersionsReq) ValidateAll added in v0.3.13

func (m *ListApplicationConfigVersionsReq) ValidateAll() error

ValidateAll checks the field values on ListApplicationConfigVersionsReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationConfigVersionsReqMultiError, or nil if none found.

type ListApplicationConfigVersionsReqMultiError added in v0.3.13

type ListApplicationConfigVersionsReqMultiError []error

ListApplicationConfigVersionsReqMultiError is an error wrapping multiple validation errors returned by ListApplicationConfigVersionsReq.ValidateAll() if the designated constraints aren't met.

func (ListApplicationConfigVersionsReqMultiError) AllErrors added in v0.3.13

AllErrors returns a list of validation violation errors.

func (ListApplicationConfigVersionsReqMultiError) Error added in v0.3.13

Error returns a concatenation of all the error messages it wraps.

type ListApplicationConfigVersionsReqValidationError added in v0.3.13

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

ListApplicationConfigVersionsReqValidationError is the validation error returned by ListApplicationConfigVersionsReq.Validate if the designated constraints aren't met.

func (ListApplicationConfigVersionsReqValidationError) Cause added in v0.3.13

Cause function returns cause value.

func (ListApplicationConfigVersionsReqValidationError) Error added in v0.3.13

Error satisfies the builtin error interface

func (ListApplicationConfigVersionsReqValidationError) ErrorName added in v0.3.13

ErrorName returns error name.

func (ListApplicationConfigVersionsReqValidationError) Field added in v0.3.13

Field function returns field value.

func (ListApplicationConfigVersionsReqValidationError) Key added in v0.3.13

Key function returns key value.

func (ListApplicationConfigVersionsReqValidationError) Reason added in v0.3.13

Reason function returns reason value.

type ListApplicationConfigVersionsResp added in v0.3.13

type ListApplicationConfigVersionsResp struct {
	Versions      []*ListApplicationConfigVersionsResp_VersionMetadata `protobuf:"bytes,1,rep,name=versions,proto3" json:"versions,omitempty"`
	NextPageToken string                                               `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*ListApplicationConfigVersionsResp) Descriptor deprecated added in v0.3.13

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

Deprecated: Use ListApplicationConfigVersionsResp.ProtoReflect.Descriptor instead.

func (*ListApplicationConfigVersionsResp) GetNextPageToken added in v0.3.13

func (x *ListApplicationConfigVersionsResp) GetNextPageToken() string

func (*ListApplicationConfigVersionsResp) GetVersions added in v0.3.13

func (*ListApplicationConfigVersionsResp) ProtoMessage added in v0.3.13

func (*ListApplicationConfigVersionsResp) ProtoMessage()

func (*ListApplicationConfigVersionsResp) ProtoReflect added in v0.3.13

func (*ListApplicationConfigVersionsResp) Reset added in v0.3.13

func (*ListApplicationConfigVersionsResp) String added in v0.3.13

func (*ListApplicationConfigVersionsResp) Validate added in v0.3.13

Validate checks the field values on ListApplicationConfigVersionsResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationConfigVersionsResp) ValidateAll added in v0.3.13

func (m *ListApplicationConfigVersionsResp) ValidateAll() error

ValidateAll checks the field values on ListApplicationConfigVersionsResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationConfigVersionsRespMultiError, or nil if none found.

type ListApplicationConfigVersionsRespMultiError added in v0.3.13

type ListApplicationConfigVersionsRespMultiError []error

ListApplicationConfigVersionsRespMultiError is an error wrapping multiple validation errors returned by ListApplicationConfigVersionsResp.ValidateAll() if the designated constraints aren't met.

func (ListApplicationConfigVersionsRespMultiError) AllErrors added in v0.3.13

AllErrors returns a list of validation violation errors.

func (ListApplicationConfigVersionsRespMultiError) Error added in v0.3.13

Error returns a concatenation of all the error messages it wraps.

type ListApplicationConfigVersionsRespValidationError added in v0.3.13

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

ListApplicationConfigVersionsRespValidationError is the validation error returned by ListApplicationConfigVersionsResp.Validate if the designated constraints aren't met.

func (ListApplicationConfigVersionsRespValidationError) Cause added in v0.3.13

Cause function returns cause value.

func (ListApplicationConfigVersionsRespValidationError) Error added in v0.3.13

Error satisfies the builtin error interface

func (ListApplicationConfigVersionsRespValidationError) ErrorName added in v0.3.13

ErrorName returns error name.

func (ListApplicationConfigVersionsRespValidationError) Field added in v0.3.13

Field function returns field value.

func (ListApplicationConfigVersionsRespValidationError) Key added in v0.3.13

Key function returns key value.

func (ListApplicationConfigVersionsRespValidationError) Reason added in v0.3.13

Reason function returns reason value.

type ListApplicationConfigVersionsResp_VersionMetadata added in v0.3.13

type ListApplicationConfigVersionsResp_VersionMetadata struct {
	Version           string                  `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
	CreationTimestamp *timestamppb.Timestamp  `protobuf:"bytes,2,opt,name=creation_timestamp,json=creationTimestamp,proto3" json:"creation_timestamp,omitempty"`
	Source            version.Source          `protobuf:"varint,3,opt,name=source,proto3,enum=prodvana.version.Source" json:"source,omitempty"`
	SourceMetadata    *version.SourceMetadata `protobuf:"bytes,4,opt,name=source_metadata,json=sourceMetadata,proto3" json:"source_metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*ListApplicationConfigVersionsResp_VersionMetadata) Descriptor deprecated added in v0.3.13

Deprecated: Use ListApplicationConfigVersionsResp_VersionMetadata.ProtoReflect.Descriptor instead.

func (*ListApplicationConfigVersionsResp_VersionMetadata) GetCreationTimestamp added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) GetSource added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) GetSourceMetadata added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) GetVersion added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) ProtoMessage added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) ProtoReflect added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) Reset added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) String added in v0.3.13

func (*ListApplicationConfigVersionsResp_VersionMetadata) Validate added in v0.3.13

Validate checks the field values on ListApplicationConfigVersionsResp_VersionMetadata with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationConfigVersionsResp_VersionMetadata) ValidateAll added in v0.3.13

ValidateAll checks the field values on ListApplicationConfigVersionsResp_VersionMetadata with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationConfigVersionsResp_VersionMetadataMultiError, or nil if none found.

type ListApplicationConfigVersionsResp_VersionMetadataMultiError added in v0.3.13

type ListApplicationConfigVersionsResp_VersionMetadataMultiError []error

ListApplicationConfigVersionsResp_VersionMetadataMultiError is an error wrapping multiple validation errors returned by ListApplicationConfigVersionsResp_VersionMetadata.ValidateAll() if the designated constraints aren't met.

func (ListApplicationConfigVersionsResp_VersionMetadataMultiError) AllErrors added in v0.3.13

AllErrors returns a list of validation violation errors.

func (ListApplicationConfigVersionsResp_VersionMetadataMultiError) Error added in v0.3.13

Error returns a concatenation of all the error messages it wraps.

type ListApplicationConfigVersionsResp_VersionMetadataValidationError added in v0.3.13

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

ListApplicationConfigVersionsResp_VersionMetadataValidationError is the validation error returned by ListApplicationConfigVersionsResp_VersionMetadata.Validate if the designated constraints aren't met.

func (ListApplicationConfigVersionsResp_VersionMetadataValidationError) Cause added in v0.3.13

Cause function returns cause value.

func (ListApplicationConfigVersionsResp_VersionMetadataValidationError) Error added in v0.3.13

Error satisfies the builtin error interface

func (ListApplicationConfigVersionsResp_VersionMetadataValidationError) ErrorName added in v0.3.13

ErrorName returns error name.

func (ListApplicationConfigVersionsResp_VersionMetadataValidationError) Field added in v0.3.13

Field function returns field value.

func (ListApplicationConfigVersionsResp_VersionMetadataValidationError) Key added in v0.3.13

Key function returns key value.

func (ListApplicationConfigVersionsResp_VersionMetadataValidationError) Reason added in v0.3.13

Reason function returns reason value.

type ListApplicationsReq

type ListApplicationsReq struct {
	Detailed bool `protobuf:"varint,1,opt,name=detailed,proto3" json:"detailed,omitempty"` // if not set, only meta without version is returned
	// contains filtered or unexported fields
}

func (*ListApplicationsReq) Descriptor deprecated

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

Deprecated: Use ListApplicationsReq.ProtoReflect.Descriptor instead.

func (*ListApplicationsReq) GetDetailed

func (x *ListApplicationsReq) GetDetailed() bool

func (*ListApplicationsReq) ProtoMessage

func (*ListApplicationsReq) ProtoMessage()

func (*ListApplicationsReq) ProtoReflect

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

func (*ListApplicationsReq) Reset

func (x *ListApplicationsReq) Reset()

func (*ListApplicationsReq) String

func (x *ListApplicationsReq) String() string

func (*ListApplicationsReq) Validate

func (m *ListApplicationsReq) Validate() error

Validate checks the field values on ListApplicationsReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationsReq) ValidateAll

func (m *ListApplicationsReq) ValidateAll() error

ValidateAll checks the field values on ListApplicationsReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationsReqMultiError, or nil if none found.

type ListApplicationsReqMultiError

type ListApplicationsReqMultiError []error

ListApplicationsReqMultiError is an error wrapping multiple validation errors returned by ListApplicationsReq.ValidateAll() if the designated constraints aren't met.

func (ListApplicationsReqMultiError) AllErrors

func (m ListApplicationsReqMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListApplicationsReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ListApplicationsReqValidationError

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

ListApplicationsReqValidationError is the validation error returned by ListApplicationsReq.Validate if the designated constraints aren't met.

func (ListApplicationsReqValidationError) Cause

Cause function returns cause value.

func (ListApplicationsReqValidationError) Error

Error satisfies the builtin error interface

func (ListApplicationsReqValidationError) ErrorName

ErrorName returns error name.

func (ListApplicationsReqValidationError) Field

Field function returns field value.

func (ListApplicationsReqValidationError) Key

Key function returns key value.

func (ListApplicationsReqValidationError) Reason

Reason function returns reason value.

type ListApplicationsResp

type ListApplicationsResp struct {
	Applications []*Application `protobuf:"bytes,1,rep,name=applications,proto3" json:"applications,omitempty"`
	// contains filtered or unexported fields
}

func (*ListApplicationsResp) Descriptor deprecated

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

Deprecated: Use ListApplicationsResp.ProtoReflect.Descriptor instead.

func (*ListApplicationsResp) GetApplications

func (x *ListApplicationsResp) GetApplications() []*Application

func (*ListApplicationsResp) ProtoMessage

func (*ListApplicationsResp) ProtoMessage()

func (*ListApplicationsResp) ProtoReflect

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

func (*ListApplicationsResp) Reset

func (x *ListApplicationsResp) Reset()

func (*ListApplicationsResp) String

func (x *ListApplicationsResp) String() string

func (*ListApplicationsResp) Validate

func (m *ListApplicationsResp) Validate() error

Validate checks the field values on ListApplicationsResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ListApplicationsResp) ValidateAll

func (m *ListApplicationsResp) ValidateAll() error

ValidateAll checks the field values on ListApplicationsResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ListApplicationsRespMultiError, or nil if none found.

type ListApplicationsRespMultiError

type ListApplicationsRespMultiError []error

ListApplicationsRespMultiError is an error wrapping multiple validation errors returned by ListApplicationsResp.ValidateAll() if the designated constraints aren't met.

func (ListApplicationsRespMultiError) AllErrors

func (m ListApplicationsRespMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (ListApplicationsRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ListApplicationsRespValidationError

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

ListApplicationsRespValidationError is the validation error returned by ListApplicationsResp.Validate if the designated constraints aren't met.

func (ListApplicationsRespValidationError) Cause

Cause function returns cause value.

func (ListApplicationsRespValidationError) Error

Error satisfies the builtin error interface

func (ListApplicationsRespValidationError) ErrorName

ErrorName returns error name.

func (ListApplicationsRespValidationError) Field

Field function returns field value.

func (ListApplicationsRespValidationError) Key

Key function returns key value.

func (ListApplicationsRespValidationError) Reason

Reason function returns reason value.

type SetApplicationMetadataReq

type SetApplicationMetadataReq struct {
	Application string                   `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	Metadata    *ApplicationUserMetadata `protobuf:"bytes,2,opt,name=metadata,proto3" json:"metadata,omitempty"`
	// contains filtered or unexported fields
}

func (*SetApplicationMetadataReq) Descriptor deprecated

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

Deprecated: Use SetApplicationMetadataReq.ProtoReflect.Descriptor instead.

func (*SetApplicationMetadataReq) GetApplication

func (x *SetApplicationMetadataReq) GetApplication() string

func (*SetApplicationMetadataReq) GetMetadata

func (*SetApplicationMetadataReq) ProtoMessage

func (*SetApplicationMetadataReq) ProtoMessage()

func (*SetApplicationMetadataReq) ProtoReflect

func (*SetApplicationMetadataReq) Reset

func (x *SetApplicationMetadataReq) Reset()

func (*SetApplicationMetadataReq) String

func (x *SetApplicationMetadataReq) String() string

func (*SetApplicationMetadataReq) Validate

func (m *SetApplicationMetadataReq) Validate() error

Validate checks the field values on SetApplicationMetadataReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetApplicationMetadataReq) ValidateAll

func (m *SetApplicationMetadataReq) ValidateAll() error

ValidateAll checks the field values on SetApplicationMetadataReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetApplicationMetadataReqMultiError, or nil if none found.

type SetApplicationMetadataReqMultiError

type SetApplicationMetadataReqMultiError []error

SetApplicationMetadataReqMultiError is an error wrapping multiple validation errors returned by SetApplicationMetadataReq.ValidateAll() if the designated constraints aren't met.

func (SetApplicationMetadataReqMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SetApplicationMetadataReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SetApplicationMetadataReqValidationError

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

SetApplicationMetadataReqValidationError is the validation error returned by SetApplicationMetadataReq.Validate if the designated constraints aren't met.

func (SetApplicationMetadataReqValidationError) Cause

Cause function returns cause value.

func (SetApplicationMetadataReqValidationError) Error

Error satisfies the builtin error interface

func (SetApplicationMetadataReqValidationError) ErrorName

ErrorName returns error name.

func (SetApplicationMetadataReqValidationError) Field

Field function returns field value.

func (SetApplicationMetadataReqValidationError) Key

Key function returns key value.

func (SetApplicationMetadataReqValidationError) Reason

Reason function returns reason value.

type SetApplicationMetadataResp

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

func (*SetApplicationMetadataResp) Descriptor deprecated

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

Deprecated: Use SetApplicationMetadataResp.ProtoReflect.Descriptor instead.

func (*SetApplicationMetadataResp) ProtoMessage

func (*SetApplicationMetadataResp) ProtoMessage()

func (*SetApplicationMetadataResp) ProtoReflect

func (*SetApplicationMetadataResp) Reset

func (x *SetApplicationMetadataResp) Reset()

func (*SetApplicationMetadataResp) String

func (x *SetApplicationMetadataResp) String() string

func (*SetApplicationMetadataResp) Validate

func (m *SetApplicationMetadataResp) Validate() error

Validate checks the field values on SetApplicationMetadataResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SetApplicationMetadataResp) ValidateAll

func (m *SetApplicationMetadataResp) ValidateAll() error

ValidateAll checks the field values on SetApplicationMetadataResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SetApplicationMetadataRespMultiError, or nil if none found.

type SetApplicationMetadataRespMultiError

type SetApplicationMetadataRespMultiError []error

SetApplicationMetadataRespMultiError is an error wrapping multiple validation errors returned by SetApplicationMetadataResp.ValidateAll() if the designated constraints aren't met.

func (SetApplicationMetadataRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SetApplicationMetadataRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SetApplicationMetadataRespValidationError

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

SetApplicationMetadataRespValidationError is the validation error returned by SetApplicationMetadataResp.Validate if the designated constraints aren't met.

func (SetApplicationMetadataRespValidationError) Cause

Cause function returns cause value.

func (SetApplicationMetadataRespValidationError) Error

Error satisfies the builtin error interface

func (SetApplicationMetadataRespValidationError) ErrorName

ErrorName returns error name.

func (SetApplicationMetadataRespValidationError) Field

Field function returns field value.

func (SetApplicationMetadataRespValidationError) Key

Key function returns key value.

func (SetApplicationMetadataRespValidationError) Reason

Reason function returns reason value.

type SnoozeApplicationInsightReq

type SnoozeApplicationInsightReq struct {
	Application string               `protobuf:"bytes,1,opt,name=application,proto3" json:"application,omitempty"`
	Class       insights.Class       `protobuf:"varint,2,opt,name=class,proto3,enum=prodvana.insights.Class" json:"class,omitempty"`
	Duration    *durationpb.Duration `protobuf:"bytes,3,opt,name=duration,proto3" json:"duration,omitempty"`
	// contains filtered or unexported fields
}

func (*SnoozeApplicationInsightReq) Descriptor deprecated

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

Deprecated: Use SnoozeApplicationInsightReq.ProtoReflect.Descriptor instead.

func (*SnoozeApplicationInsightReq) GetApplication

func (x *SnoozeApplicationInsightReq) GetApplication() string

func (*SnoozeApplicationInsightReq) GetClass

func (*SnoozeApplicationInsightReq) GetDuration

func (*SnoozeApplicationInsightReq) ProtoMessage

func (*SnoozeApplicationInsightReq) ProtoMessage()

func (*SnoozeApplicationInsightReq) ProtoReflect

func (*SnoozeApplicationInsightReq) Reset

func (x *SnoozeApplicationInsightReq) Reset()

func (*SnoozeApplicationInsightReq) String

func (x *SnoozeApplicationInsightReq) String() string

func (*SnoozeApplicationInsightReq) Validate

func (m *SnoozeApplicationInsightReq) Validate() error

Validate checks the field values on SnoozeApplicationInsightReq with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SnoozeApplicationInsightReq) ValidateAll

func (m *SnoozeApplicationInsightReq) ValidateAll() error

ValidateAll checks the field values on SnoozeApplicationInsightReq with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SnoozeApplicationInsightReqMultiError, or nil if none found.

type SnoozeApplicationInsightReqMultiError

type SnoozeApplicationInsightReqMultiError []error

SnoozeApplicationInsightReqMultiError is an error wrapping multiple validation errors returned by SnoozeApplicationInsightReq.ValidateAll() if the designated constraints aren't met.

func (SnoozeApplicationInsightReqMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SnoozeApplicationInsightReqMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SnoozeApplicationInsightReqValidationError

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

SnoozeApplicationInsightReqValidationError is the validation error returned by SnoozeApplicationInsightReq.Validate if the designated constraints aren't met.

func (SnoozeApplicationInsightReqValidationError) Cause

Cause function returns cause value.

func (SnoozeApplicationInsightReqValidationError) Error

Error satisfies the builtin error interface

func (SnoozeApplicationInsightReqValidationError) ErrorName

ErrorName returns error name.

func (SnoozeApplicationInsightReqValidationError) Field

Field function returns field value.

func (SnoozeApplicationInsightReqValidationError) Key

Key function returns key value.

func (SnoozeApplicationInsightReqValidationError) Reason

Reason function returns reason value.

type SnoozeApplicationInsightResp

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

func (*SnoozeApplicationInsightResp) Descriptor deprecated

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

Deprecated: Use SnoozeApplicationInsightResp.ProtoReflect.Descriptor instead.

func (*SnoozeApplicationInsightResp) ProtoMessage

func (*SnoozeApplicationInsightResp) ProtoMessage()

func (*SnoozeApplicationInsightResp) ProtoReflect

func (*SnoozeApplicationInsightResp) Reset

func (x *SnoozeApplicationInsightResp) Reset()

func (*SnoozeApplicationInsightResp) String

func (*SnoozeApplicationInsightResp) Validate

func (m *SnoozeApplicationInsightResp) Validate() error

Validate checks the field values on SnoozeApplicationInsightResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*SnoozeApplicationInsightResp) ValidateAll

func (m *SnoozeApplicationInsightResp) ValidateAll() error

ValidateAll checks the field values on SnoozeApplicationInsightResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in SnoozeApplicationInsightRespMultiError, or nil if none found.

type SnoozeApplicationInsightRespMultiError

type SnoozeApplicationInsightRespMultiError []error

SnoozeApplicationInsightRespMultiError is an error wrapping multiple validation errors returned by SnoozeApplicationInsightResp.ValidateAll() if the designated constraints aren't met.

func (SnoozeApplicationInsightRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (SnoozeApplicationInsightRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type SnoozeApplicationInsightRespValidationError

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

SnoozeApplicationInsightRespValidationError is the validation error returned by SnoozeApplicationInsightResp.Validate if the designated constraints aren't met.

func (SnoozeApplicationInsightRespValidationError) Cause

Cause function returns cause value.

func (SnoozeApplicationInsightRespValidationError) Error

Error satisfies the builtin error interface

func (SnoozeApplicationInsightRespValidationError) ErrorName

ErrorName returns error name.

func (SnoozeApplicationInsightRespValidationError) Field

Field function returns field value.

func (SnoozeApplicationInsightRespValidationError) Key

Key function returns key value.

func (SnoozeApplicationInsightRespValidationError) Reason

Reason function returns reason value.

type UnimplementedApplicationManagerServer

type UnimplementedApplicationManagerServer struct {
}

UnimplementedApplicationManagerServer must be embedded to have forward compatible implementations.

func (UnimplementedApplicationManagerServer) ConfigureApplication

func (UnimplementedApplicationManagerServer) DeleteApplication

func (UnimplementedApplicationManagerServer) GetApplication

func (UnimplementedApplicationManagerServer) GetApplicationConfig

func (UnimplementedApplicationManagerServer) GetApplicationInsights

func (UnimplementedApplicationManagerServer) GetApplicationMetadata

func (UnimplementedApplicationManagerServer) GetApplicationMetrics

func (UnimplementedApplicationManagerServer) ListApplicationConfigVersions added in v0.3.13

func (UnimplementedApplicationManagerServer) ListApplications

func (UnimplementedApplicationManagerServer) SetApplicationMetadata

func (UnimplementedApplicationManagerServer) SnoozeApplicationInsight

func (UnimplementedApplicationManagerServer) ValidateConfigureApplication

type UnsafeApplicationManagerServer

type UnsafeApplicationManagerServer interface {
	// contains filtered or unexported methods
}

UnsafeApplicationManagerServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to ApplicationManagerServer will result in compilation errors.

type ValidateConfigureApplicationResp

type ValidateConfigureApplicationResp struct {
	Config           *ApplicationConfig               `protobuf:"bytes,1,opt,name=config,proto3" json:"config,omitempty"`                                       // config as passed in by user
	CompiledConfig   *ApplicationConfig               `protobuf:"bytes,2,opt,name=compiled_config,json=compiledConfig,proto3" json:"compiled_config,omitempty"` // config with defaults applied
	DangerousActions []*common_config.DangerousAction `protobuf:"bytes,3,rep,name=dangerous_actions,json=dangerousActions,proto3" json:"dangerous_actions,omitempty"`
	// contains filtered or unexported fields
}

func (*ValidateConfigureApplicationResp) Descriptor deprecated

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

Deprecated: Use ValidateConfigureApplicationResp.ProtoReflect.Descriptor instead.

func (*ValidateConfigureApplicationResp) GetCompiledConfig

func (x *ValidateConfigureApplicationResp) GetCompiledConfig() *ApplicationConfig

func (*ValidateConfigureApplicationResp) GetConfig

func (*ValidateConfigureApplicationResp) GetDangerousActions

func (*ValidateConfigureApplicationResp) ProtoMessage

func (*ValidateConfigureApplicationResp) ProtoMessage()

func (*ValidateConfigureApplicationResp) ProtoReflect

func (*ValidateConfigureApplicationResp) Reset

func (*ValidateConfigureApplicationResp) String

func (*ValidateConfigureApplicationResp) Validate

Validate checks the field values on ValidateConfigureApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*ValidateConfigureApplicationResp) ValidateAll

func (m *ValidateConfigureApplicationResp) ValidateAll() error

ValidateAll checks the field values on ValidateConfigureApplicationResp with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in ValidateConfigureApplicationRespMultiError, or nil if none found.

type ValidateConfigureApplicationRespMultiError

type ValidateConfigureApplicationRespMultiError []error

ValidateConfigureApplicationRespMultiError is an error wrapping multiple validation errors returned by ValidateConfigureApplicationResp.ValidateAll() if the designated constraints aren't met.

func (ValidateConfigureApplicationRespMultiError) AllErrors

AllErrors returns a list of validation violation errors.

func (ValidateConfigureApplicationRespMultiError) Error

Error returns a concatenation of all the error messages it wraps.

type ValidateConfigureApplicationRespValidationError

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

ValidateConfigureApplicationRespValidationError is the validation error returned by ValidateConfigureApplicationResp.Validate if the designated constraints aren't met.

func (ValidateConfigureApplicationRespValidationError) Cause

Cause function returns cause value.

func (ValidateConfigureApplicationRespValidationError) Error

Error satisfies the builtin error interface

func (ValidateConfigureApplicationRespValidationError) ErrorName

ErrorName returns error name.

func (ValidateConfigureApplicationRespValidationError) Field

Field function returns field value.

func (ValidateConfigureApplicationRespValidationError) Key

Key function returns key value.

func (ValidateConfigureApplicationRespValidationError) Reason

Reason function returns reason value.

Jump to

Keyboard shortcuts

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