client

package
v0.0.0-...-6ee3a39 Latest Latest
Warning

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

Go to latest
Published: May 6, 2024 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var ApplicationService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "ApplicationService",
	HandlerType: (*ApplicationServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetAppDetail",
			Handler:    _ApplicationService_GetAppDetail_Handler,
		},
		{
			MethodName: "GetAppStatus",
			Handler:    _ApplicationService_GetAppStatus_Handler,
		},
		{
			MethodName: "Hibernate",
			Handler:    _ApplicationService_Hibernate_Handler,
		},
		{
			MethodName: "UnHibernate",
			Handler:    _ApplicationService_UnHibernate_Handler,
		},
		{
			MethodName: "GetDeploymentHistory",
			Handler:    _ApplicationService_GetDeploymentHistory_Handler,
		},
		{
			MethodName: "GetValuesYaml",
			Handler:    _ApplicationService_GetValuesYaml_Handler,
		},
		{
			MethodName: "GetDesiredManifest",
			Handler:    _ApplicationService_GetDesiredManifest_Handler,
		},
		{
			MethodName: "UninstallRelease",
			Handler:    _ApplicationService_UninstallRelease_Handler,
		},
		{
			MethodName: "UpgradeRelease",
			Handler:    _ApplicationService_UpgradeRelease_Handler,
		},
		{
			MethodName: "GetDeploymentDetail",
			Handler:    _ApplicationService_GetDeploymentDetail_Handler,
		},
		{
			MethodName: "InstallRelease",
			Handler:    _ApplicationService_InstallRelease_Handler,
		},
		{
			MethodName: "UpgradeReleaseWithChartInfo",
			Handler:    _ApplicationService_UpgradeReleaseWithChartInfo_Handler,
		},
		{
			MethodName: "IsReleaseInstalled",
			Handler:    _ApplicationService_IsReleaseInstalled_Handler,
		},
		{
			MethodName: "RollbackRelease",
			Handler:    _ApplicationService_RollbackRelease_Handler,
		},
		{
			MethodName: "TemplateChart",
			Handler:    _ApplicationService_TemplateChart_Handler,
		},
		{
			MethodName: "TemplateChartBulk",
			Handler:    _ApplicationService_TemplateChartBulk_Handler,
		},
		{
			MethodName: "TemplateChartAndRetrieveChart",
			Handler:    _ApplicationService_TemplateChartAndRetrieveChart_Handler,
		},
		{
			MethodName: "InstallReleaseWithCustomChart",
			Handler:    _ApplicationService_InstallReleaseWithCustomChart_Handler,
		},
		{
			MethodName: "GetNotes",
			Handler:    _ApplicationService_GetNotes_Handler,
		},
		{
			MethodName: "UpgradeReleaseWithCustomChart",
			Handler:    _ApplicationService_UpgradeReleaseWithCustomChart_Handler,
		},
		{
			MethodName: "ValidateOCIRegistry",
			Handler:    _ApplicationService_ValidateOCIRegistry_Handler,
		},
		{
			MethodName: "PushHelmChartToOCIRegistry",
			Handler:    _ApplicationService_PushHelmChartToOCIRegistry_Handler,
		},
		{
			MethodName: "GetResourceTreeForExternalResources",
			Handler:    _ApplicationService_GetResourceTreeForExternalResources_Handler,
		},
	},
	Streams: []grpc.StreamDesc{
		{
			StreamName:    "ListApplications",
			Handler:       _ApplicationService_ListApplications_Handler,
			ServerStreams: true,
		},
	},
	Metadata: "grpc/applist.proto",
}

ApplicationService_ServiceDesc is the grpc.ServiceDesc for ApplicationService 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_grpc_applist_proto protoreflect.FileDescriptor

Functions

func RegisterApplicationServiceServer

func RegisterApplicationServiceServer(s grpc.ServiceRegistrar, srv ApplicationServiceServer)

Types

type AppDetail

type AppDetail struct {
	ApplicationStatus    string                `protobuf:"bytes,1,opt,name=applicationStatus,proto3" json:"applicationStatus,omitempty"`
	ReleaseStatus        *ReleaseStatus        `protobuf:"bytes,2,opt,name=releaseStatus,proto3" json:"releaseStatus,omitempty"`
	LastDeployed         *timestamp.Timestamp  `protobuf:"bytes,6,opt,name=lastDeployed,proto3" json:"lastDeployed,omitempty"`
	ChartMetadata        *ChartMetadata        `protobuf:"bytes,7,opt,name=chartMetadata,proto3" json:"chartMetadata,omitempty"`
	ResourceTreeResponse *ResourceTreeResponse `protobuf:"bytes,8,opt,name=resourceTreeResponse,proto3" json:"resourceTreeResponse,omitempty"`
	EnvironmentDetails   *EnvironmentDetails   `protobuf:"bytes,9,opt,name=environmentDetails,proto3" json:"environmentDetails,omitempty"`
	ReleaseExist         bool                  `protobuf:"varint,10,opt,name=ReleaseExist,proto3" json:"ReleaseExist,omitempty"`
	// contains filtered or unexported fields
}

func (*AppDetail) Descriptor deprecated

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

Deprecated: Use AppDetail.ProtoReflect.Descriptor instead.

func (*AppDetail) GetApplicationStatus

func (x *AppDetail) GetApplicationStatus() string

func (*AppDetail) GetChartMetadata

func (x *AppDetail) GetChartMetadata() *ChartMetadata

func (*AppDetail) GetEnvironmentDetails

func (x *AppDetail) GetEnvironmentDetails() *EnvironmentDetails

func (*AppDetail) GetLastDeployed

func (x *AppDetail) GetLastDeployed() *timestamp.Timestamp

func (*AppDetail) GetReleaseExist

func (x *AppDetail) GetReleaseExist() bool

func (*AppDetail) GetReleaseStatus

func (x *AppDetail) GetReleaseStatus() *ReleaseStatus

func (*AppDetail) GetResourceTreeResponse

func (x *AppDetail) GetResourceTreeResponse() *ResourceTreeResponse

func (*AppDetail) ProtoMessage

func (*AppDetail) ProtoMessage()

func (*AppDetail) ProtoReflect

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

func (*AppDetail) Reset

func (x *AppDetail) Reset()

func (*AppDetail) String

func (x *AppDetail) String() string

type AppDetailRequest

type AppDetailRequest struct {
	ClusterConfig *ClusterConfig `protobuf:"bytes,1,opt,name=clusterConfig,proto3" json:"clusterConfig,omitempty"`
	Namespace     string         `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	ReleaseName   string         `protobuf:"bytes,3,opt,name=ReleaseName,proto3" json:"ReleaseName,omitempty"`
	// Map key cannot be float, double, bytes, message, or enum types (map<Gvk, Labels> could be a better option)
	ResourceTreeFilter *ResourceTreeFilter `protobuf:"bytes,4,opt,name=resourceTreeFilter,proto3" json:"resourceTreeFilter,omitempty"`
	// contains filtered or unexported fields
}

func (*AppDetailRequest) Descriptor deprecated

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

Deprecated: Use AppDetailRequest.ProtoReflect.Descriptor instead.

func (*AppDetailRequest) GetClusterConfig

func (x *AppDetailRequest) GetClusterConfig() *ClusterConfig

func (*AppDetailRequest) GetNamespace

func (x *AppDetailRequest) GetNamespace() string

func (*AppDetailRequest) GetReleaseName

func (x *AppDetailRequest) GetReleaseName() string

func (*AppDetailRequest) GetResourceTreeFilter

func (x *AppDetailRequest) GetResourceTreeFilter() *ResourceTreeFilter

func (*AppDetailRequest) ProtoMessage

func (*AppDetailRequest) ProtoMessage()

func (*AppDetailRequest) ProtoReflect

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

func (*AppDetailRequest) Reset

func (x *AppDetailRequest) Reset()

func (*AppDetailRequest) String

func (x *AppDetailRequest) String() string

type AppListRequest

type AppListRequest struct {
	Clusters []*ClusterConfig `protobuf:"bytes,1,rep,name=clusters,proto3" json:"clusters,omitempty"`
	// contains filtered or unexported fields
}

func (*AppListRequest) Descriptor deprecated

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

Deprecated: Use AppListRequest.ProtoReflect.Descriptor instead.

func (*AppListRequest) GetClusters

func (x *AppListRequest) GetClusters() []*ClusterConfig

func (*AppListRequest) ProtoMessage

func (*AppListRequest) ProtoMessage()

func (*AppListRequest) ProtoReflect

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

func (*AppListRequest) Reset

func (x *AppListRequest) Reset()

func (*AppListRequest) String

func (x *AppListRequest) String() string

type AppStatus

type AppStatus struct {
	ApplicationStatus string               `protobuf:"bytes,1,opt,name=ApplicationStatus,proto3" json:"ApplicationStatus,omitempty"`
	ReleaseStatus     string               `protobuf:"bytes,2,opt,name=ReleaseStatus,proto3" json:"ReleaseStatus,omitempty"`
	Description       string               `protobuf:"bytes,3,opt,name=Description,proto3" json:"Description,omitempty"`
	LastDeployed      *timestamp.Timestamp `protobuf:"bytes,4,opt,name=LastDeployed,proto3" json:"LastDeployed,omitempty"`
	// contains filtered or unexported fields
}

func (*AppStatus) Descriptor deprecated

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

Deprecated: Use AppStatus.ProtoReflect.Descriptor instead.

func (*AppStatus) GetApplicationStatus

func (x *AppStatus) GetApplicationStatus() string

func (*AppStatus) GetDescription

func (x *AppStatus) GetDescription() string

func (*AppStatus) GetLastDeployed

func (x *AppStatus) GetLastDeployed() *timestamp.Timestamp

func (*AppStatus) GetReleaseStatus

func (x *AppStatus) GetReleaseStatus() string

func (*AppStatus) ProtoMessage

func (*AppStatus) ProtoMessage()

func (*AppStatus) ProtoReflect

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

func (*AppStatus) Reset

func (x *AppStatus) Reset()

func (*AppStatus) String

func (x *AppStatus) String() string

type ApplicationServiceClient

type ApplicationServiceClient interface {
	ListApplications(ctx context.Context, in *AppListRequest, opts ...grpc.CallOption) (ApplicationService_ListApplicationsClient, error)
	GetAppDetail(ctx context.Context, in *AppDetailRequest, opts ...grpc.CallOption) (*AppDetail, error)
	GetAppStatus(ctx context.Context, in *AppDetailRequest, opts ...grpc.CallOption) (*AppStatus, error)
	Hibernate(ctx context.Context, in *HibernateRequest, opts ...grpc.CallOption) (*HibernateResponse, error)
	UnHibernate(ctx context.Context, in *HibernateRequest, opts ...grpc.CallOption) (*HibernateResponse, error)
	GetDeploymentHistory(ctx context.Context, in *AppDetailRequest, opts ...grpc.CallOption) (*HelmAppDeploymentHistory, error)
	GetValuesYaml(ctx context.Context, in *AppDetailRequest, opts ...grpc.CallOption) (*ReleaseInfo, error)
	GetDesiredManifest(ctx context.Context, in *ObjectRequest, opts ...grpc.CallOption) (*DesiredManifestResponse, error)
	UninstallRelease(ctx context.Context, in *ReleaseIdentifier, opts ...grpc.CallOption) (*UninstallReleaseResponse, error)
	UpgradeRelease(ctx context.Context, in *UpgradeReleaseRequest, opts ...grpc.CallOption) (*UpgradeReleaseResponse, error)
	GetDeploymentDetail(ctx context.Context, in *DeploymentDetailRequest, opts ...grpc.CallOption) (*DeploymentDetailResponse, error)
	InstallRelease(ctx context.Context, in *InstallReleaseRequest, opts ...grpc.CallOption) (*InstallReleaseResponse, error)
	UpgradeReleaseWithChartInfo(ctx context.Context, in *InstallReleaseRequest, opts ...grpc.CallOption) (*UpgradeReleaseResponse, error)
	IsReleaseInstalled(ctx context.Context, in *ReleaseIdentifier, opts ...grpc.CallOption) (*BooleanResponse, error)
	RollbackRelease(ctx context.Context, in *RollbackReleaseRequest, opts ...grpc.CallOption) (*BooleanResponse, error)
	TemplateChart(ctx context.Context, in *InstallReleaseRequest, opts ...grpc.CallOption) (*TemplateChartResponse, error)
	TemplateChartBulk(ctx context.Context, in *BulkInstallReleaseRequest, opts ...grpc.CallOption) (*BulkTemplateChartResponse, error)
	TemplateChartAndRetrieveChart(ctx context.Context, in *InstallReleaseRequest, opts ...grpc.CallOption) (*TemplateChartResponseWithChart, error)
	InstallReleaseWithCustomChart(ctx context.Context, in *HelmInstallCustomRequest, opts ...grpc.CallOption) (*HelmInstallCustomResponse, error)
	GetNotes(ctx context.Context, in *InstallReleaseRequest, opts ...grpc.CallOption) (*ChartNotesResponse, error)
	UpgradeReleaseWithCustomChart(ctx context.Context, in *UpgradeReleaseRequest, opts ...grpc.CallOption) (*UpgradeReleaseResponse, error)
	ValidateOCIRegistry(ctx context.Context, in *RegistryCredential, opts ...grpc.CallOption) (*OCIRegistryResponse, error)
	PushHelmChartToOCIRegistry(ctx context.Context, in *OCIRegistryRequest, opts ...grpc.CallOption) (*OCIRegistryResponse, error)
	GetResourceTreeForExternalResources(ctx context.Context, in *ExternalResourceTreeRequest, opts ...grpc.CallOption) (*ResourceTreeResponse, error)
}

ApplicationServiceClient is the client API for ApplicationService 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 ApplicationServiceServer

type ApplicationServiceServer interface {
	ListApplications(*AppListRequest, ApplicationService_ListApplicationsServer) error
	GetAppDetail(context.Context, *AppDetailRequest) (*AppDetail, error)
	GetAppStatus(context.Context, *AppDetailRequest) (*AppStatus, error)
	Hibernate(context.Context, *HibernateRequest) (*HibernateResponse, error)
	UnHibernate(context.Context, *HibernateRequest) (*HibernateResponse, error)
	GetDeploymentHistory(context.Context, *AppDetailRequest) (*HelmAppDeploymentHistory, error)
	GetValuesYaml(context.Context, *AppDetailRequest) (*ReleaseInfo, error)
	GetDesiredManifest(context.Context, *ObjectRequest) (*DesiredManifestResponse, error)
	UninstallRelease(context.Context, *ReleaseIdentifier) (*UninstallReleaseResponse, error)
	UpgradeRelease(context.Context, *UpgradeReleaseRequest) (*UpgradeReleaseResponse, error)
	GetDeploymentDetail(context.Context, *DeploymentDetailRequest) (*DeploymentDetailResponse, error)
	InstallRelease(context.Context, *InstallReleaseRequest) (*InstallReleaseResponse, error)
	UpgradeReleaseWithChartInfo(context.Context, *InstallReleaseRequest) (*UpgradeReleaseResponse, error)
	IsReleaseInstalled(context.Context, *ReleaseIdentifier) (*BooleanResponse, error)
	RollbackRelease(context.Context, *RollbackReleaseRequest) (*BooleanResponse, error)
	TemplateChart(context.Context, *InstallReleaseRequest) (*TemplateChartResponse, error)
	TemplateChartBulk(context.Context, *BulkInstallReleaseRequest) (*BulkTemplateChartResponse, error)
	TemplateChartAndRetrieveChart(context.Context, *InstallReleaseRequest) (*TemplateChartResponseWithChart, error)
	InstallReleaseWithCustomChart(context.Context, *HelmInstallCustomRequest) (*HelmInstallCustomResponse, error)
	GetNotes(context.Context, *InstallReleaseRequest) (*ChartNotesResponse, error)
	UpgradeReleaseWithCustomChart(context.Context, *UpgradeReleaseRequest) (*UpgradeReleaseResponse, error)
	ValidateOCIRegistry(context.Context, *RegistryCredential) (*OCIRegistryResponse, error)
	PushHelmChartToOCIRegistry(context.Context, *OCIRegistryRequest) (*OCIRegistryResponse, error)
	GetResourceTreeForExternalResources(context.Context, *ExternalResourceTreeRequest) (*ResourceTreeResponse, error)
	// contains filtered or unexported methods
}

ApplicationServiceServer is the server API for ApplicationService service. All implementations must embed UnimplementedApplicationServiceServer for forward compatibility

type ApplicationService_ListApplicationsClient

type ApplicationService_ListApplicationsClient interface {
	Recv() (*DeployedAppList, error)
	grpc.ClientStream
}

type ApplicationService_ListApplicationsServer

type ApplicationService_ListApplicationsServer interface {
	Send(*DeployedAppList) error
	grpc.ServerStream
}

type BooleanResponse

type BooleanResponse struct {
	Result bool `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	// contains filtered or unexported fields
}

func (*BooleanResponse) Descriptor deprecated

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

Deprecated: Use BooleanResponse.ProtoReflect.Descriptor instead.

func (*BooleanResponse) GetResult

func (x *BooleanResponse) GetResult() bool

func (*BooleanResponse) ProtoMessage

func (*BooleanResponse) ProtoMessage()

func (*BooleanResponse) ProtoReflect

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

func (*BooleanResponse) Reset

func (x *BooleanResponse) Reset()

func (*BooleanResponse) String

func (x *BooleanResponse) String() string

type BulkInstallReleaseRequest

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

func (*BulkInstallReleaseRequest) Descriptor deprecated

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

Deprecated: Use BulkInstallReleaseRequest.ProtoReflect.Descriptor instead.

func (*BulkInstallReleaseRequest) GetBulkInstallReleaseRequest

func (x *BulkInstallReleaseRequest) GetBulkInstallReleaseRequest() []*InstallReleaseRequest

func (*BulkInstallReleaseRequest) ProtoMessage

func (*BulkInstallReleaseRequest) ProtoMessage()

func (*BulkInstallReleaseRequest) ProtoReflect

func (*BulkInstallReleaseRequest) Reset

func (x *BulkInstallReleaseRequest) Reset()

func (*BulkInstallReleaseRequest) String

func (x *BulkInstallReleaseRequest) String() string

type BulkTemplateChartResponse

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

func (*BulkTemplateChartResponse) Descriptor deprecated

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

Deprecated: Use BulkTemplateChartResponse.ProtoReflect.Descriptor instead.

func (*BulkTemplateChartResponse) GetBulkTemplateChartResponse

func (x *BulkTemplateChartResponse) GetBulkTemplateChartResponse() []*TemplateChartResponse

func (*BulkTemplateChartResponse) ProtoMessage

func (*BulkTemplateChartResponse) ProtoMessage()

func (*BulkTemplateChartResponse) ProtoReflect

func (*BulkTemplateChartResponse) Reset

func (x *BulkTemplateChartResponse) Reset()

func (*BulkTemplateChartResponse) String

func (x *BulkTemplateChartResponse) String() string

type ChartContent

type ChartContent struct {
	Content []byte `protobuf:"bytes,1,opt,name=Content,proto3" json:"Content,omitempty"`
	// contains filtered or unexported fields
}

func (*ChartContent) Descriptor deprecated

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

Deprecated: Use ChartContent.ProtoReflect.Descriptor instead.

func (*ChartContent) GetContent

func (x *ChartContent) GetContent() []byte

func (*ChartContent) ProtoMessage

func (*ChartContent) ProtoMessage()

func (*ChartContent) ProtoReflect

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

func (*ChartContent) Reset

func (x *ChartContent) Reset()

func (*ChartContent) String

func (x *ChartContent) String() string

type ChartMetadata

type ChartMetadata struct {
	ChartName    string   `protobuf:"bytes,1,opt,name=chartName,proto3" json:"chartName,omitempty"`
	ChartVersion string   `protobuf:"bytes,2,opt,name=chartVersion,proto3" json:"chartVersion,omitempty"`
	Home         string   `protobuf:"bytes,3,opt,name=home,proto3" json:"home,omitempty"`
	Sources      []string `protobuf:"bytes,4,rep,name=sources,proto3" json:"sources,omitempty"`
	Description  string   `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
	// Contains the rendered templates/NOTES.txt
	Notes string `protobuf:"bytes,6,opt,name=notes,proto3" json:"notes,omitempty"`
	// contains filtered or unexported fields
}

func (*ChartMetadata) Descriptor deprecated

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

Deprecated: Use ChartMetadata.ProtoReflect.Descriptor instead.

func (*ChartMetadata) GetChartName

func (x *ChartMetadata) GetChartName() string

func (*ChartMetadata) GetChartVersion

func (x *ChartMetadata) GetChartVersion() string

func (*ChartMetadata) GetDescription

func (x *ChartMetadata) GetDescription() string

func (*ChartMetadata) GetHome

func (x *ChartMetadata) GetHome() string

func (*ChartMetadata) GetNotes

func (x *ChartMetadata) GetNotes() string

func (*ChartMetadata) GetSources

func (x *ChartMetadata) GetSources() []string

func (*ChartMetadata) ProtoMessage

func (*ChartMetadata) ProtoMessage()

func (*ChartMetadata) ProtoReflect

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

func (*ChartMetadata) Reset

func (x *ChartMetadata) Reset()

func (*ChartMetadata) String

func (x *ChartMetadata) String() string

type ChartNotesResponse

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

func (*ChartNotesResponse) Descriptor deprecated

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

Deprecated: Use ChartNotesResponse.ProtoReflect.Descriptor instead.

func (*ChartNotesResponse) GetNotes

func (x *ChartNotesResponse) GetNotes() string

func (*ChartNotesResponse) ProtoMessage

func (*ChartNotesResponse) ProtoMessage()

func (*ChartNotesResponse) ProtoReflect

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

func (*ChartNotesResponse) Reset

func (x *ChartNotesResponse) Reset()

func (*ChartNotesResponse) String

func (x *ChartNotesResponse) String() string

type ChartRepository

type ChartRepository struct {
	Name     string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Url      string `protobuf:"bytes,2,opt,name=url,proto3" json:"url,omitempty"`
	Username string `protobuf:"bytes,3,opt,name=username,proto3" json:"username,omitempty"`
	Password string `protobuf:"bytes,4,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*ChartRepository) Descriptor deprecated

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

Deprecated: Use ChartRepository.ProtoReflect.Descriptor instead.

func (*ChartRepository) GetName

func (x *ChartRepository) GetName() string

func (*ChartRepository) GetPassword

func (x *ChartRepository) GetPassword() string

func (*ChartRepository) GetUrl

func (x *ChartRepository) GetUrl() string

func (*ChartRepository) GetUsername

func (x *ChartRepository) GetUsername() string

func (*ChartRepository) ProtoMessage

func (*ChartRepository) ProtoMessage()

func (*ChartRepository) ProtoReflect

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

func (*ChartRepository) Reset

func (x *ChartRepository) Reset()

func (*ChartRepository) String

func (x *ChartRepository) String() string

type ClusterConfig

type ClusterConfig struct {
	ApiServerUrl           string `protobuf:"bytes,1,opt,name=apiServerUrl,proto3" json:"apiServerUrl,omitempty"`
	Token                  string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	ClusterId              int32  `protobuf:"varint,3,opt,name=clusterId,proto3" json:"clusterId,omitempty"`
	ClusterName            string `protobuf:"bytes,4,opt,name=clusterName,proto3" json:"clusterName,omitempty"`
	InsecureSkipTLSVerify  bool   `protobuf:"varint,5,opt,name=insecureSkipTLSVerify,proto3" json:"insecureSkipTLSVerify,omitempty"`
	KeyData                string `protobuf:"bytes,6,opt,name=keyData,proto3" json:"keyData,omitempty"`
	CertData               string `protobuf:"bytes,7,opt,name=certData,proto3" json:"certData,omitempty"`
	CaData                 string `protobuf:"bytes,8,opt,name=caData,proto3" json:"caData,omitempty"`
	ProxyUrl               string `protobuf:"bytes,9,opt,name=proxyUrl,proto3" json:"proxyUrl,omitempty"`
	ToConnectWithSSHTunnel bool   `protobuf:"varint,10,opt,name=toConnectWithSSHTunnel,proto3" json:"toConnectWithSSHTunnel,omitempty"`
	SshTunnelUser          string `protobuf:"bytes,11,opt,name=sshTunnelUser,proto3" json:"sshTunnelUser,omitempty"`
	SshTunnelPassword      string `protobuf:"bytes,12,opt,name=sshTunnelPassword,proto3" json:"sshTunnelPassword,omitempty"`
	SshTunnelAuthKey       string `protobuf:"bytes,13,opt,name=sshTunnelAuthKey,proto3" json:"sshTunnelAuthKey,omitempty"`
	SshTunnelServerAddress string `protobuf:"bytes,14,opt,name=sshTunnelServerAddress,proto3" json:"sshTunnelServerAddress,omitempty"`
	// contains filtered or unexported fields
}

func (*ClusterConfig) Descriptor deprecated

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

Deprecated: Use ClusterConfig.ProtoReflect.Descriptor instead.

func (*ClusterConfig) GetApiServerUrl

func (x *ClusterConfig) GetApiServerUrl() string

func (*ClusterConfig) GetCaData

func (x *ClusterConfig) GetCaData() string

func (*ClusterConfig) GetCertData

func (x *ClusterConfig) GetCertData() string

func (*ClusterConfig) GetClusterId

func (x *ClusterConfig) GetClusterId() int32

func (*ClusterConfig) GetClusterName

func (x *ClusterConfig) GetClusterName() string

func (*ClusterConfig) GetInsecureSkipTLSVerify

func (x *ClusterConfig) GetInsecureSkipTLSVerify() bool

func (*ClusterConfig) GetKeyData

func (x *ClusterConfig) GetKeyData() string

func (*ClusterConfig) GetProxyUrl

func (x *ClusterConfig) GetProxyUrl() string

func (*ClusterConfig) GetSshTunnelAuthKey

func (x *ClusterConfig) GetSshTunnelAuthKey() string

func (*ClusterConfig) GetSshTunnelPassword

func (x *ClusterConfig) GetSshTunnelPassword() string

func (*ClusterConfig) GetSshTunnelServerAddress

func (x *ClusterConfig) GetSshTunnelServerAddress() string

func (*ClusterConfig) GetSshTunnelUser

func (x *ClusterConfig) GetSshTunnelUser() string

func (*ClusterConfig) GetToConnectWithSSHTunnel

func (x *ClusterConfig) GetToConnectWithSSHTunnel() bool

func (*ClusterConfig) GetToken

func (x *ClusterConfig) GetToken() string

func (*ClusterConfig) ProtoMessage

func (*ClusterConfig) ProtoMessage()

func (*ClusterConfig) ProtoReflect

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

func (*ClusterConfig) Reset

func (x *ClusterConfig) Reset()

func (*ClusterConfig) String

func (x *ClusterConfig) String() string

type DeployedAppDetail

type DeployedAppDetail struct {
	AppId             string               `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
	AppName           string               `protobuf:"bytes,2,opt,name=appName,proto3" json:"appName,omitempty"`
	ChartName         string               `protobuf:"bytes,3,opt,name=chartName,proto3" json:"chartName,omitempty"`
	ChartAvatar       string               `protobuf:"bytes,4,opt,name=chartAvatar,proto3" json:"chartAvatar,omitempty"`
	EnvironmentDetail *EnvironmentDetails  `protobuf:"bytes,5,opt,name=environmentDetail,proto3" json:"environmentDetail,omitempty"`
	LastDeployed      *timestamp.Timestamp `protobuf:"bytes,6,opt,name=LastDeployed,proto3" json:"LastDeployed,omitempty"`
	ChartVersion      string               `protobuf:"bytes,7,opt,name=chartVersion,proto3" json:"chartVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployedAppDetail) Descriptor deprecated

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

Deprecated: Use DeployedAppDetail.ProtoReflect.Descriptor instead.

func (*DeployedAppDetail) GetAppId

func (x *DeployedAppDetail) GetAppId() string

func (*DeployedAppDetail) GetAppName

func (x *DeployedAppDetail) GetAppName() string

func (*DeployedAppDetail) GetChartAvatar

func (x *DeployedAppDetail) GetChartAvatar() string

func (*DeployedAppDetail) GetChartName

func (x *DeployedAppDetail) GetChartName() string

func (*DeployedAppDetail) GetChartVersion

func (x *DeployedAppDetail) GetChartVersion() string

func (*DeployedAppDetail) GetEnvironmentDetail

func (x *DeployedAppDetail) GetEnvironmentDetail() *EnvironmentDetails

func (*DeployedAppDetail) GetLastDeployed

func (x *DeployedAppDetail) GetLastDeployed() *timestamp.Timestamp

func (*DeployedAppDetail) ProtoMessage

func (*DeployedAppDetail) ProtoMessage()

func (*DeployedAppDetail) ProtoReflect

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

func (*DeployedAppDetail) Reset

func (x *DeployedAppDetail) Reset()

func (*DeployedAppDetail) String

func (x *DeployedAppDetail) String() string

type DeployedAppList

type DeployedAppList struct {
	DeployedAppDetail []*DeployedAppDetail `protobuf:"bytes,1,rep,name=DeployedAppDetail,proto3" json:"DeployedAppDetail,omitempty"`
	ClusterId         int32                `protobuf:"varint,2,opt,name=clusterId,proto3" json:"clusterId,omitempty"`
	ErrorMsg          string               `protobuf:"bytes,3,opt,name=errorMsg,proto3" json:"errorMsg,omitempty"`
	Errored           bool                 `protobuf:"varint,4,opt,name=errored,proto3" json:"errored,omitempty"`
	// contains filtered or unexported fields
}

func (*DeployedAppList) Descriptor deprecated

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

Deprecated: Use DeployedAppList.ProtoReflect.Descriptor instead.

func (*DeployedAppList) GetClusterId

func (x *DeployedAppList) GetClusterId() int32

func (*DeployedAppList) GetDeployedAppDetail

func (x *DeployedAppList) GetDeployedAppDetail() []*DeployedAppDetail

func (*DeployedAppList) GetErrorMsg

func (x *DeployedAppList) GetErrorMsg() string

func (*DeployedAppList) GetErrored

func (x *DeployedAppList) GetErrored() bool

func (*DeployedAppList) ProtoMessage

func (*DeployedAppList) ProtoMessage()

func (*DeployedAppList) ProtoReflect

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

func (*DeployedAppList) Reset

func (x *DeployedAppList) Reset()

func (*DeployedAppList) String

func (x *DeployedAppList) String() string

type DeploymentDetailRequest

type DeploymentDetailRequest struct {
	ReleaseIdentifier *ReleaseIdentifier `protobuf:"bytes,1,opt,name=releaseIdentifier,proto3" json:"releaseIdentifier,omitempty"`
	DeploymentVersion int32              `protobuf:"varint,2,opt,name=deploymentVersion,proto3" json:"deploymentVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*DeploymentDetailRequest) Descriptor deprecated

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

Deprecated: Use DeploymentDetailRequest.ProtoReflect.Descriptor instead.

func (*DeploymentDetailRequest) GetDeploymentVersion

func (x *DeploymentDetailRequest) GetDeploymentVersion() int32

func (*DeploymentDetailRequest) GetReleaseIdentifier

func (x *DeploymentDetailRequest) GetReleaseIdentifier() *ReleaseIdentifier

func (*DeploymentDetailRequest) ProtoMessage

func (*DeploymentDetailRequest) ProtoMessage()

func (*DeploymentDetailRequest) ProtoReflect

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

func (*DeploymentDetailRequest) Reset

func (x *DeploymentDetailRequest) Reset()

func (*DeploymentDetailRequest) String

func (x *DeploymentDetailRequest) String() string

type DeploymentDetailResponse

type DeploymentDetailResponse struct {
	Manifest   string `protobuf:"bytes,1,opt,name=manifest,proto3" json:"manifest,omitempty"`
	ValuesYaml string `protobuf:"bytes,2,opt,name=valuesYaml,proto3" json:"valuesYaml,omitempty"`
	// contains filtered or unexported fields
}

func (*DeploymentDetailResponse) Descriptor deprecated

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

Deprecated: Use DeploymentDetailResponse.ProtoReflect.Descriptor instead.

func (*DeploymentDetailResponse) GetManifest

func (x *DeploymentDetailResponse) GetManifest() string

func (*DeploymentDetailResponse) GetValuesYaml

func (x *DeploymentDetailResponse) GetValuesYaml() string

func (*DeploymentDetailResponse) ProtoMessage

func (*DeploymentDetailResponse) ProtoMessage()

func (*DeploymentDetailResponse) ProtoReflect

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

func (*DeploymentDetailResponse) Reset

func (x *DeploymentDetailResponse) Reset()

func (*DeploymentDetailResponse) String

func (x *DeploymentDetailResponse) String() string

type DesiredManifestResponse

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

func (*DesiredManifestResponse) Descriptor deprecated

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

Deprecated: Use DesiredManifestResponse.ProtoReflect.Descriptor instead.

func (*DesiredManifestResponse) GetManifest

func (x *DesiredManifestResponse) GetManifest() string

func (*DesiredManifestResponse) ProtoMessage

func (*DesiredManifestResponse) ProtoMessage()

func (*DesiredManifestResponse) ProtoReflect

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

func (*DesiredManifestResponse) Reset

func (x *DesiredManifestResponse) Reset()

func (*DesiredManifestResponse) String

func (x *DesiredManifestResponse) String() string

type EnvironmentDetails

type EnvironmentDetails struct {
	ClusterName string `protobuf:"bytes,1,opt,name=clusterName,proto3" json:"clusterName,omitempty"`
	ClusterId   int32  `protobuf:"varint,2,opt,name=clusterId,proto3" json:"clusterId,omitempty"`
	Namespace   string `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*EnvironmentDetails) Descriptor deprecated

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

Deprecated: Use EnvironmentDetails.ProtoReflect.Descriptor instead.

func (*EnvironmentDetails) GetClusterId

func (x *EnvironmentDetails) GetClusterId() int32

func (*EnvironmentDetails) GetClusterName

func (x *EnvironmentDetails) GetClusterName() string

func (*EnvironmentDetails) GetNamespace

func (x *EnvironmentDetails) GetNamespace() string

func (*EnvironmentDetails) ProtoMessage

func (*EnvironmentDetails) ProtoMessage()

func (*EnvironmentDetails) ProtoReflect

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

func (*EnvironmentDetails) Reset

func (x *EnvironmentDetails) Reset()

func (*EnvironmentDetails) String

func (x *EnvironmentDetails) String() string

type EphemeralContainerData

type EphemeralContainerData struct {
	Name       string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	IsExternal bool   `protobuf:"varint,2,opt,name=isExternal,proto3" json:"isExternal,omitempty"`
	// contains filtered or unexported fields
}

func (*EphemeralContainerData) Descriptor deprecated

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

Deprecated: Use EphemeralContainerData.ProtoReflect.Descriptor instead.

func (*EphemeralContainerData) GetIsExternal

func (x *EphemeralContainerData) GetIsExternal() bool

func (*EphemeralContainerData) GetName

func (x *EphemeralContainerData) GetName() string

func (*EphemeralContainerData) ProtoMessage

func (*EphemeralContainerData) ProtoMessage()

func (*EphemeralContainerData) ProtoReflect

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

func (*EphemeralContainerData) Reset

func (x *EphemeralContainerData) Reset()

func (*EphemeralContainerData) String

func (x *EphemeralContainerData) String() string

type ExternalResourceDetail

type ExternalResourceDetail struct {
	Group     string `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Kind      string `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Version   string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	Name      string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Namespace string `protobuf:"bytes,5,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ExternalResourceDetail) Descriptor deprecated

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

Deprecated: Use ExternalResourceDetail.ProtoReflect.Descriptor instead.

func (*ExternalResourceDetail) GetGroup

func (x *ExternalResourceDetail) GetGroup() string

func (*ExternalResourceDetail) GetKind

func (x *ExternalResourceDetail) GetKind() string

func (*ExternalResourceDetail) GetName

func (x *ExternalResourceDetail) GetName() string

func (*ExternalResourceDetail) GetNamespace

func (x *ExternalResourceDetail) GetNamespace() string

func (*ExternalResourceDetail) GetVersion

func (x *ExternalResourceDetail) GetVersion() string

func (*ExternalResourceDetail) ProtoMessage

func (*ExternalResourceDetail) ProtoMessage()

func (*ExternalResourceDetail) ProtoReflect

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

func (*ExternalResourceDetail) Reset

func (x *ExternalResourceDetail) Reset()

func (*ExternalResourceDetail) String

func (x *ExternalResourceDetail) String() string

type ExternalResourceTreeRequest

type ExternalResourceTreeRequest struct {
	ClusterConfig          *ClusterConfig            `protobuf:"bytes,1,opt,name=clusterConfig,proto3" json:"clusterConfig,omitempty"`
	ExternalResourceDetail []*ExternalResourceDetail `protobuf:"bytes,2,rep,name=externalResourceDetail,proto3" json:"externalResourceDetail,omitempty"`
	// contains filtered or unexported fields
}

func (*ExternalResourceTreeRequest) Descriptor deprecated

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

Deprecated: Use ExternalResourceTreeRequest.ProtoReflect.Descriptor instead.

func (*ExternalResourceTreeRequest) GetClusterConfig

func (x *ExternalResourceTreeRequest) GetClusterConfig() *ClusterConfig

func (*ExternalResourceTreeRequest) GetExternalResourceDetail

func (x *ExternalResourceTreeRequest) GetExternalResourceDetail() []*ExternalResourceDetail

func (*ExternalResourceTreeRequest) ProtoMessage

func (*ExternalResourceTreeRequest) ProtoMessage()

func (*ExternalResourceTreeRequest) ProtoReflect

func (*ExternalResourceTreeRequest) Reset

func (x *ExternalResourceTreeRequest) Reset()

func (*ExternalResourceTreeRequest) String

func (x *ExternalResourceTreeRequest) String() string

type Gvk

type Gvk struct {
	Group   string `protobuf:"bytes,1,opt,name=Group,proto3" json:"Group,omitempty"`
	Version string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
	Kind    string `protobuf:"bytes,3,opt,name=Kind,proto3" json:"Kind,omitempty"`
	// contains filtered or unexported fields
}

func (*Gvk) Descriptor deprecated

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

Deprecated: Use Gvk.ProtoReflect.Descriptor instead.

func (*Gvk) GetGroup

func (x *Gvk) GetGroup() string

func (*Gvk) GetKind

func (x *Gvk) GetKind() string

func (*Gvk) GetVersion

func (x *Gvk) GetVersion() string

func (*Gvk) ProtoMessage

func (*Gvk) ProtoMessage()

func (*Gvk) ProtoReflect

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

func (*Gvk) Reset

func (x *Gvk) Reset()

func (*Gvk) String

func (x *Gvk) String() string

type HealthStatus

type HealthStatus struct {
	Status  string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Message string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	// contains filtered or unexported fields
}

func (*HealthStatus) Descriptor deprecated

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

Deprecated: Use HealthStatus.ProtoReflect.Descriptor instead.

func (*HealthStatus) GetMessage

func (x *HealthStatus) GetMessage() string

func (*HealthStatus) GetStatus

func (x *HealthStatus) GetStatus() string

func (*HealthStatus) ProtoMessage

func (*HealthStatus) ProtoMessage()

func (*HealthStatus) ProtoReflect

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

func (*HealthStatus) Reset

func (x *HealthStatus) Reset()

func (*HealthStatus) String

func (x *HealthStatus) String() string

type HelmAppDeploymentDetail

type HelmAppDeploymentDetail struct {
	ChartMetadata *ChartMetadata       `protobuf:"bytes,1,opt,name=chartMetadata,proto3" json:"chartMetadata,omitempty"`
	DockerImages  []string             `protobuf:"bytes,2,rep,name=dockerImages,proto3" json:"dockerImages,omitempty"`
	Version       int32                `protobuf:"varint,3,opt,name=version,proto3" json:"version,omitempty"`
	DeployedAt    *timestamp.Timestamp `protobuf:"bytes,4,opt,name=deployedAt,proto3" json:"deployedAt,omitempty"`
	DeployedBy    string               `protobuf:"bytes,5,opt,name=deployedBy,proto3" json:"deployedBy,omitempty"`
	Status        string               `protobuf:"bytes,6,opt,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmAppDeploymentDetail) Descriptor deprecated

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

Deprecated: Use HelmAppDeploymentDetail.ProtoReflect.Descriptor instead.

func (*HelmAppDeploymentDetail) GetChartMetadata

func (x *HelmAppDeploymentDetail) GetChartMetadata() *ChartMetadata

func (*HelmAppDeploymentDetail) GetDeployedAt

func (x *HelmAppDeploymentDetail) GetDeployedAt() *timestamp.Timestamp

func (*HelmAppDeploymentDetail) GetDeployedBy

func (x *HelmAppDeploymentDetail) GetDeployedBy() string

func (*HelmAppDeploymentDetail) GetDockerImages

func (x *HelmAppDeploymentDetail) GetDockerImages() []string

func (*HelmAppDeploymentDetail) GetStatus

func (x *HelmAppDeploymentDetail) GetStatus() string

func (*HelmAppDeploymentDetail) GetVersion

func (x *HelmAppDeploymentDetail) GetVersion() int32

func (*HelmAppDeploymentDetail) ProtoMessage

func (*HelmAppDeploymentDetail) ProtoMessage()

func (*HelmAppDeploymentDetail) ProtoReflect

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

func (*HelmAppDeploymentDetail) Reset

func (x *HelmAppDeploymentDetail) Reset()

func (*HelmAppDeploymentDetail) String

func (x *HelmAppDeploymentDetail) String() string

type HelmAppDeploymentHistory

type HelmAppDeploymentHistory struct {
	DeploymentHistory []*HelmAppDeploymentDetail `protobuf:"bytes,1,rep,name=deploymentHistory,proto3" json:"deploymentHistory,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmAppDeploymentHistory) Descriptor deprecated

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

Deprecated: Use HelmAppDeploymentHistory.ProtoReflect.Descriptor instead.

func (*HelmAppDeploymentHistory) GetDeploymentHistory

func (x *HelmAppDeploymentHistory) GetDeploymentHistory() []*HelmAppDeploymentDetail

func (*HelmAppDeploymentHistory) ProtoMessage

func (*HelmAppDeploymentHistory) ProtoMessage()

func (*HelmAppDeploymentHistory) ProtoReflect

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

func (*HelmAppDeploymentHistory) Reset

func (x *HelmAppDeploymentHistory) Reset()

func (*HelmAppDeploymentHistory) String

func (x *HelmAppDeploymentHistory) String() string

type HelmInstallCustomRequest

type HelmInstallCustomRequest struct {
	ValuesYaml        string             `protobuf:"bytes,1,opt,name=valuesYaml,proto3" json:"valuesYaml,omitempty"`
	ChartContent      *ChartContent      `protobuf:"bytes,2,opt,name=chartContent,proto3" json:"chartContent,omitempty"`
	ReleaseIdentifier *ReleaseIdentifier `protobuf:"bytes,3,opt,name=releaseIdentifier,proto3" json:"releaseIdentifier,omitempty"`
	RunInCtx          bool               `protobuf:"varint,4,opt,name=RunInCtx,proto3" json:"RunInCtx,omitempty"`
	K8SVersion        string             `protobuf:"bytes,5,opt,name=K8sVersion,proto3" json:"K8sVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmInstallCustomRequest) Descriptor deprecated

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

Deprecated: Use HelmInstallCustomRequest.ProtoReflect.Descriptor instead.

func (*HelmInstallCustomRequest) GetChartContent

func (x *HelmInstallCustomRequest) GetChartContent() *ChartContent

func (*HelmInstallCustomRequest) GetK8SVersion

func (x *HelmInstallCustomRequest) GetK8SVersion() string

func (*HelmInstallCustomRequest) GetReleaseIdentifier

func (x *HelmInstallCustomRequest) GetReleaseIdentifier() *ReleaseIdentifier

func (*HelmInstallCustomRequest) GetRunInCtx

func (x *HelmInstallCustomRequest) GetRunInCtx() bool

func (*HelmInstallCustomRequest) GetValuesYaml

func (x *HelmInstallCustomRequest) GetValuesYaml() string

func (*HelmInstallCustomRequest) ProtoMessage

func (*HelmInstallCustomRequest) ProtoMessage()

func (*HelmInstallCustomRequest) ProtoReflect

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

func (*HelmInstallCustomRequest) Reset

func (x *HelmInstallCustomRequest) Reset()

func (*HelmInstallCustomRequest) String

func (x *HelmInstallCustomRequest) String() string

type HelmInstallCustomResponse

type HelmInstallCustomResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmInstallCustomResponse) Descriptor deprecated

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

Deprecated: Use HelmInstallCustomResponse.ProtoReflect.Descriptor instead.

func (*HelmInstallCustomResponse) GetSuccess

func (x *HelmInstallCustomResponse) GetSuccess() bool

func (*HelmInstallCustomResponse) ProtoMessage

func (*HelmInstallCustomResponse) ProtoMessage()

func (*HelmInstallCustomResponse) ProtoReflect

func (*HelmInstallCustomResponse) Reset

func (x *HelmInstallCustomResponse) Reset()

func (*HelmInstallCustomResponse) String

func (x *HelmInstallCustomResponse) String() string

type HibernateRequest

type HibernateRequest struct {
	ClusterConfig    *ClusterConfig      `protobuf:"bytes,1,opt,name=clusterConfig,proto3" json:"clusterConfig,omitempty"`
	ObjectIdentifier []*ObjectIdentifier `protobuf:"bytes,2,rep,name=objectIdentifier,proto3" json:"objectIdentifier,omitempty"`
	// contains filtered or unexported fields
}

func (*HibernateRequest) Descriptor deprecated

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

Deprecated: Use HibernateRequest.ProtoReflect.Descriptor instead.

func (*HibernateRequest) GetClusterConfig

func (x *HibernateRequest) GetClusterConfig() *ClusterConfig

func (*HibernateRequest) GetObjectIdentifier

func (x *HibernateRequest) GetObjectIdentifier() []*ObjectIdentifier

func (*HibernateRequest) ProtoMessage

func (*HibernateRequest) ProtoMessage()

func (*HibernateRequest) ProtoReflect

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

func (*HibernateRequest) Reset

func (x *HibernateRequest) Reset()

func (*HibernateRequest) String

func (x *HibernateRequest) String() string

type HibernateResponse

type HibernateResponse struct {
	Status []*HibernateStatus `protobuf:"bytes,1,rep,name=status,proto3" json:"status,omitempty"`
	// contains filtered or unexported fields
}

func (*HibernateResponse) Descriptor deprecated

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

Deprecated: Use HibernateResponse.ProtoReflect.Descriptor instead.

func (*HibernateResponse) GetStatus

func (x *HibernateResponse) GetStatus() []*HibernateStatus

func (*HibernateResponse) ProtoMessage

func (*HibernateResponse) ProtoMessage()

func (*HibernateResponse) ProtoReflect

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

func (*HibernateResponse) Reset

func (x *HibernateResponse) Reset()

func (*HibernateResponse) String

func (x *HibernateResponse) String() string

type HibernateStatus

type HibernateStatus struct {
	TargetObject *ObjectIdentifier `protobuf:"bytes,1,opt,name=targetObject,proto3" json:"targetObject,omitempty"`
	Success      bool              `protobuf:"varint,2,opt,name=success,proto3" json:"success,omitempty"`
	ErrorMsg     string            `protobuf:"bytes,3,opt,name=errorMsg,proto3" json:"errorMsg,omitempty"`
	// contains filtered or unexported fields
}

func (*HibernateStatus) Descriptor deprecated

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

Deprecated: Use HibernateStatus.ProtoReflect.Descriptor instead.

func (*HibernateStatus) GetErrorMsg

func (x *HibernateStatus) GetErrorMsg() string

func (*HibernateStatus) GetSuccess

func (x *HibernateStatus) GetSuccess() bool

func (*HibernateStatus) GetTargetObject

func (x *HibernateStatus) GetTargetObject() *ObjectIdentifier

func (*HibernateStatus) ProtoMessage

func (*HibernateStatus) ProtoMessage()

func (*HibernateStatus) ProtoReflect

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

func (*HibernateStatus) Reset

func (x *HibernateStatus) Reset()

func (*HibernateStatus) String

func (x *HibernateStatus) String() string

type InfoItem

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

func (*InfoItem) Descriptor deprecated

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

Deprecated: Use InfoItem.ProtoReflect.Descriptor instead.

func (*InfoItem) GetName

func (x *InfoItem) GetName() string

func (*InfoItem) GetValue

func (x *InfoItem) GetValue() string

func (*InfoItem) ProtoMessage

func (*InfoItem) ProtoMessage()

func (*InfoItem) ProtoReflect

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

func (*InfoItem) Reset

func (x *InfoItem) Reset()

func (*InfoItem) String

func (x *InfoItem) String() string

type InstallReleaseRequest

type InstallReleaseRequest struct {
	ReleaseIdentifier          *ReleaseIdentifier  `protobuf:"bytes,1,opt,name=releaseIdentifier,proto3" json:"releaseIdentifier,omitempty"`
	ChartName                  string              `protobuf:"bytes,2,opt,name=chartName,proto3" json:"chartName,omitempty"`
	ChartVersion               string              `protobuf:"bytes,3,opt,name=chartVersion,proto3" json:"chartVersion,omitempty"`
	ValuesYaml                 string              `protobuf:"bytes,4,opt,name=valuesYaml,proto3" json:"valuesYaml,omitempty"`
	ChartRepository            *ChartRepository    `protobuf:"bytes,5,opt,name=chartRepository,proto3" json:"chartRepository,omitempty"`
	K8SVersion                 string              `protobuf:"bytes,6,opt,name=K8sVersion,proto3" json:"K8sVersion,omitempty"`
	HistoryMax                 int32               `protobuf:"varint,7,opt,name=historyMax,proto3" json:"historyMax,omitempty"`
	RegistryCredential         *RegistryCredential `protobuf:"bytes,8,opt,name=RegistryCredential,proto3" json:"RegistryCredential,omitempty"`
	IsOCIRepo                  bool                `protobuf:"varint,9,opt,name=IsOCIRepo,proto3" json:"IsOCIRepo,omitempty"`
	InstallAppVersionHistoryId int32               `protobuf:"varint,10,opt,name=installAppVersionHistoryId,proto3" json:"installAppVersionHistoryId,omitempty"`
	ChartContent               *ChartContent       `protobuf:"bytes,11,opt,name=chartContent,proto3" json:"chartContent,omitempty"`
	AppName                    string              `protobuf:"bytes,12,opt,name=appName,proto3" json:"appName,omitempty"`
	// contains filtered or unexported fields
}

func (*InstallReleaseRequest) Descriptor deprecated

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

Deprecated: Use InstallReleaseRequest.ProtoReflect.Descriptor instead.

func (*InstallReleaseRequest) GetAppName

func (x *InstallReleaseRequest) GetAppName() string

func (*InstallReleaseRequest) GetChartContent

func (x *InstallReleaseRequest) GetChartContent() *ChartContent

func (*InstallReleaseRequest) GetChartName

func (x *InstallReleaseRequest) GetChartName() string

func (*InstallReleaseRequest) GetChartRepository

func (x *InstallReleaseRequest) GetChartRepository() *ChartRepository

func (*InstallReleaseRequest) GetChartVersion

func (x *InstallReleaseRequest) GetChartVersion() string

func (*InstallReleaseRequest) GetHistoryMax

func (x *InstallReleaseRequest) GetHistoryMax() int32

func (*InstallReleaseRequest) GetInstallAppVersionHistoryId

func (x *InstallReleaseRequest) GetInstallAppVersionHistoryId() int32

func (*InstallReleaseRequest) GetIsOCIRepo

func (x *InstallReleaseRequest) GetIsOCIRepo() bool

func (*InstallReleaseRequest) GetK8SVersion

func (x *InstallReleaseRequest) GetK8SVersion() string

func (*InstallReleaseRequest) GetRegistryCredential

func (x *InstallReleaseRequest) GetRegistryCredential() *RegistryCredential

func (*InstallReleaseRequest) GetReleaseIdentifier

func (x *InstallReleaseRequest) GetReleaseIdentifier() *ReleaseIdentifier

func (*InstallReleaseRequest) GetValuesYaml

func (x *InstallReleaseRequest) GetValuesYaml() string

func (*InstallReleaseRequest) ProtoMessage

func (*InstallReleaseRequest) ProtoMessage()

func (*InstallReleaseRequest) ProtoReflect

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

func (*InstallReleaseRequest) Reset

func (x *InstallReleaseRequest) Reset()

func (*InstallReleaseRequest) String

func (x *InstallReleaseRequest) String() string

type InstallReleaseResponse

type InstallReleaseResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*InstallReleaseResponse) Descriptor deprecated

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

Deprecated: Use InstallReleaseResponse.ProtoReflect.Descriptor instead.

func (*InstallReleaseResponse) GetSuccess

func (x *InstallReleaseResponse) GetSuccess() bool

func (*InstallReleaseResponse) ProtoMessage

func (*InstallReleaseResponse) ProtoMessage()

func (*InstallReleaseResponse) ProtoReflect

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

func (*InstallReleaseResponse) Reset

func (x *InstallReleaseResponse) Reset()

func (*InstallReleaseResponse) String

func (x *InstallReleaseResponse) String() string

type OCIRegistryPushResponse

type OCIRegistryPushResponse struct {
	Digest    string `protobuf:"bytes,1,opt,name=Digest,proto3" json:"Digest,omitempty"`
	PushedURL string `protobuf:"bytes,2,opt,name=PushedURL,proto3" json:"PushedURL,omitempty"`
	// contains filtered or unexported fields
}

func (*OCIRegistryPushResponse) Descriptor deprecated

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

Deprecated: Use OCIRegistryPushResponse.ProtoReflect.Descriptor instead.

func (*OCIRegistryPushResponse) GetDigest

func (x *OCIRegistryPushResponse) GetDigest() string

func (*OCIRegistryPushResponse) GetPushedURL

func (x *OCIRegistryPushResponse) GetPushedURL() string

func (*OCIRegistryPushResponse) ProtoMessage

func (*OCIRegistryPushResponse) ProtoMessage()

func (*OCIRegistryPushResponse) ProtoReflect

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

func (*OCIRegistryPushResponse) Reset

func (x *OCIRegistryPushResponse) Reset()

func (*OCIRegistryPushResponse) String

func (x *OCIRegistryPushResponse) String() string

type OCIRegistryRequest

type OCIRegistryRequest struct {
	Chart              []byte              `protobuf:"bytes,1,opt,name=Chart,proto3" json:"Chart,omitempty"`
	ChartName          string              `protobuf:"bytes,2,opt,name=ChartName,proto3" json:"ChartName,omitempty"`
	ChartVersion       string              `protobuf:"bytes,3,opt,name=ChartVersion,proto3" json:"ChartVersion,omitempty"`
	IsInsecure         bool                `protobuf:"varint,4,opt,name=IsInsecure,proto3" json:"IsInsecure,omitempty"`
	RegistryCredential *RegistryCredential `protobuf:"bytes,5,opt,name=RegistryCredential,proto3" json:"RegistryCredential,omitempty"`
	// contains filtered or unexported fields
}

func (*OCIRegistryRequest) Descriptor deprecated

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

Deprecated: Use OCIRegistryRequest.ProtoReflect.Descriptor instead.

func (*OCIRegistryRequest) GetChart

func (x *OCIRegistryRequest) GetChart() []byte

func (*OCIRegistryRequest) GetChartName

func (x *OCIRegistryRequest) GetChartName() string

func (*OCIRegistryRequest) GetChartVersion

func (x *OCIRegistryRequest) GetChartVersion() string

func (*OCIRegistryRequest) GetIsInsecure

func (x *OCIRegistryRequest) GetIsInsecure() bool

func (*OCIRegistryRequest) GetRegistryCredential

func (x *OCIRegistryRequest) GetRegistryCredential() *RegistryCredential

func (*OCIRegistryRequest) ProtoMessage

func (*OCIRegistryRequest) ProtoMessage()

func (*OCIRegistryRequest) ProtoReflect

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

func (*OCIRegistryRequest) Reset

func (x *OCIRegistryRequest) Reset()

func (*OCIRegistryRequest) String

func (x *OCIRegistryRequest) String() string

type OCIRegistryResponse

type OCIRegistryResponse struct {
	IsLoggedIn bool                     `protobuf:"varint,1,opt,name=IsLoggedIn,proto3" json:"IsLoggedIn,omitempty"`
	PushResult *OCIRegistryPushResponse `protobuf:"bytes,2,opt,name=PushResult,proto3" json:"PushResult,omitempty"`
	// contains filtered or unexported fields
}

func (*OCIRegistryResponse) Descriptor deprecated

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

Deprecated: Use OCIRegistryResponse.ProtoReflect.Descriptor instead.

func (*OCIRegistryResponse) GetIsLoggedIn

func (x *OCIRegistryResponse) GetIsLoggedIn() bool

func (*OCIRegistryResponse) GetPushResult

func (x *OCIRegistryResponse) GetPushResult() *OCIRegistryPushResponse

func (*OCIRegistryResponse) ProtoMessage

func (*OCIRegistryResponse) ProtoMessage()

func (*OCIRegistryResponse) ProtoReflect

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

func (*OCIRegistryResponse) Reset

func (x *OCIRegistryResponse) Reset()

func (*OCIRegistryResponse) String

func (x *OCIRegistryResponse) String() string

type ObjectIdentifier

type ObjectIdentifier struct {
	Group     string `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Kind      string `protobuf:"bytes,2,opt,name=kind,proto3" json:"kind,omitempty"`
	Version   string `protobuf:"bytes,3,opt,name=version,proto3" json:"version,omitempty"`
	Name      string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
	Namespace string `protobuf:"bytes,5,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ObjectIdentifier) Descriptor deprecated

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

Deprecated: Use ObjectIdentifier.ProtoReflect.Descriptor instead.

func (*ObjectIdentifier) GetGroup

func (x *ObjectIdentifier) GetGroup() string

func (*ObjectIdentifier) GetKind

func (x *ObjectIdentifier) GetKind() string

func (*ObjectIdentifier) GetName

func (x *ObjectIdentifier) GetName() string

func (*ObjectIdentifier) GetNamespace

func (x *ObjectIdentifier) GetNamespace() string

func (*ObjectIdentifier) GetVersion

func (x *ObjectIdentifier) GetVersion() string

func (*ObjectIdentifier) ProtoMessage

func (*ObjectIdentifier) ProtoMessage()

func (*ObjectIdentifier) ProtoReflect

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

func (*ObjectIdentifier) Reset

func (x *ObjectIdentifier) Reset()

func (*ObjectIdentifier) String

func (x *ObjectIdentifier) String() string

type ObjectRequest

type ObjectRequest struct {
	ClusterConfig    *ClusterConfig    `protobuf:"bytes,1,opt,name=clusterConfig,proto3" json:"clusterConfig,omitempty"`
	ObjectIdentifier *ObjectIdentifier `protobuf:"bytes,2,opt,name=objectIdentifier,proto3" json:"objectIdentifier,omitempty"`
	ReleaseName      string            `protobuf:"bytes,3,opt,name=releaseName,proto3" json:"releaseName,omitempty"`
	ReleaseNamespace string            `protobuf:"bytes,4,opt,name=releaseNamespace,proto3" json:"releaseNamespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ObjectRequest) Descriptor deprecated

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

Deprecated: Use ObjectRequest.ProtoReflect.Descriptor instead.

func (*ObjectRequest) GetClusterConfig

func (x *ObjectRequest) GetClusterConfig() *ClusterConfig

func (*ObjectRequest) GetObjectIdentifier

func (x *ObjectRequest) GetObjectIdentifier() *ObjectIdentifier

func (*ObjectRequest) GetReleaseName

func (x *ObjectRequest) GetReleaseName() string

func (*ObjectRequest) GetReleaseNamespace

func (x *ObjectRequest) GetReleaseNamespace() string

func (*ObjectRequest) ProtoMessage

func (*ObjectRequest) ProtoMessage()

func (*ObjectRequest) ProtoReflect

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

func (*ObjectRequest) Reset

func (x *ObjectRequest) Reset()

func (*ObjectRequest) String

func (x *ObjectRequest) String() string

type PodMetadata

type PodMetadata struct {
	Name                string                    `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Uid                 string                    `protobuf:"bytes,2,opt,name=uid,proto3" json:"uid,omitempty"`
	Containers          []string                  `protobuf:"bytes,3,rep,name=containers,proto3" json:"containers,omitempty"`
	InitContainers      []string                  `protobuf:"bytes,4,rep,name=initContainers,proto3" json:"initContainers,omitempty"`
	IsNew               bool                      `protobuf:"varint,5,opt,name=isNew,proto3" json:"isNew,omitempty"`
	EphemeralContainers []*EphemeralContainerData `protobuf:"bytes,6,rep,name=ephemeralContainers,proto3" json:"ephemeralContainers,omitempty"`
	// contains filtered or unexported fields
}

func (*PodMetadata) Descriptor deprecated

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

Deprecated: Use PodMetadata.ProtoReflect.Descriptor instead.

func (*PodMetadata) GetContainers

func (x *PodMetadata) GetContainers() []string

func (*PodMetadata) GetEphemeralContainers

func (x *PodMetadata) GetEphemeralContainers() []*EphemeralContainerData

func (*PodMetadata) GetInitContainers

func (x *PodMetadata) GetInitContainers() []string

func (*PodMetadata) GetIsNew

func (x *PodMetadata) GetIsNew() bool

func (*PodMetadata) GetName

func (x *PodMetadata) GetName() string

func (*PodMetadata) GetUid

func (x *PodMetadata) GetUid() string

func (*PodMetadata) ProtoMessage

func (*PodMetadata) ProtoMessage()

func (*PodMetadata) ProtoReflect

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

func (*PodMetadata) Reset

func (x *PodMetadata) Reset()

func (*PodMetadata) String

func (x *PodMetadata) String() string

type RegistryCredential

type RegistryCredential struct {
	RegistryUrl  string `protobuf:"bytes,1,opt,name=RegistryUrl,proto3" json:"RegistryUrl,omitempty"`
	Username     string `protobuf:"bytes,2,opt,name=Username,proto3" json:"Username,omitempty"`
	Password     string `protobuf:"bytes,3,opt,name=Password,proto3" json:"Password,omitempty"`
	AwsRegion    string `protobuf:"bytes,4,opt,name=AwsRegion,proto3" json:"AwsRegion,omitempty"`
	AccessKey    string `protobuf:"bytes,5,opt,name=AccessKey,proto3" json:"AccessKey,omitempty"`
	SecretKey    string `protobuf:"bytes,6,opt,name=SecretKey,proto3" json:"SecretKey,omitempty"`
	RegistryType string `protobuf:"bytes,7,opt,name=RegistryType,proto3" json:"RegistryType,omitempty"`
	RepoName     string `protobuf:"bytes,8,opt,name=RepoName,proto3" json:"RepoName,omitempty"`
	IsPublic     bool   `protobuf:"varint,9,opt,name=IsPublic,proto3" json:"IsPublic,omitempty"`
	// contains filtered or unexported fields
}

func (*RegistryCredential) Descriptor deprecated

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

Deprecated: Use RegistryCredential.ProtoReflect.Descriptor instead.

func (*RegistryCredential) GetAccessKey

func (x *RegistryCredential) GetAccessKey() string

func (*RegistryCredential) GetAwsRegion

func (x *RegistryCredential) GetAwsRegion() string

func (*RegistryCredential) GetIsPublic

func (x *RegistryCredential) GetIsPublic() bool

func (*RegistryCredential) GetPassword

func (x *RegistryCredential) GetPassword() string

func (*RegistryCredential) GetRegistryType

func (x *RegistryCredential) GetRegistryType() string

func (*RegistryCredential) GetRegistryUrl

func (x *RegistryCredential) GetRegistryUrl() string

func (*RegistryCredential) GetRepoName

func (x *RegistryCredential) GetRepoName() string

func (*RegistryCredential) GetSecretKey

func (x *RegistryCredential) GetSecretKey() string

func (*RegistryCredential) GetUsername

func (x *RegistryCredential) GetUsername() string

func (*RegistryCredential) ProtoMessage

func (*RegistryCredential) ProtoMessage()

func (*RegistryCredential) ProtoReflect

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

func (*RegistryCredential) Reset

func (x *RegistryCredential) Reset()

func (*RegistryCredential) String

func (x *RegistryCredential) String() string

type ReleaseIdentifier

type ReleaseIdentifier struct {
	ClusterConfig    *ClusterConfig `protobuf:"bytes,1,opt,name=clusterConfig,proto3" json:"clusterConfig,omitempty"`
	ReleaseName      string         `protobuf:"bytes,2,opt,name=releaseName,proto3" json:"releaseName,omitempty"`
	ReleaseNamespace string         `protobuf:"bytes,3,opt,name=releaseNamespace,proto3" json:"releaseNamespace,omitempty"`
	// contains filtered or unexported fields
}

func (*ReleaseIdentifier) Descriptor deprecated

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

Deprecated: Use ReleaseIdentifier.ProtoReflect.Descriptor instead.

func (*ReleaseIdentifier) GetClusterConfig

func (x *ReleaseIdentifier) GetClusterConfig() *ClusterConfig

func (*ReleaseIdentifier) GetReleaseName

func (x *ReleaseIdentifier) GetReleaseName() string

func (*ReleaseIdentifier) GetReleaseNamespace

func (x *ReleaseIdentifier) GetReleaseNamespace() string

func (*ReleaseIdentifier) ProtoMessage

func (*ReleaseIdentifier) ProtoMessage()

func (*ReleaseIdentifier) ProtoReflect

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

func (*ReleaseIdentifier) Reset

func (x *ReleaseIdentifier) Reset()

func (*ReleaseIdentifier) String

func (x *ReleaseIdentifier) String() string

type ReleaseInfo

type ReleaseInfo struct {
	DeployedAppDetail *DeployedAppDetail `protobuf:"bytes,1,opt,name=deployedAppDetail,proto3" json:"deployedAppDetail,omitempty"`
	DefaultValues     string             `protobuf:"bytes,2,opt,name=defaultValues,proto3" json:"defaultValues,omitempty"`
	OverrideValues    string             `protobuf:"bytes,3,opt,name=overrideValues,proto3" json:"overrideValues,omitempty"`
	MergedValues      string             `protobuf:"bytes,4,opt,name=mergedValues,proto3" json:"mergedValues,omitempty"`
	Readme            string             `protobuf:"bytes,5,opt,name=readme,proto3" json:"readme,omitempty"`
	ValuesSchemaJson  string             `protobuf:"bytes,6,opt,name=valuesSchemaJson,proto3" json:"valuesSchemaJson,omitempty"`
	// contains filtered or unexported fields
}

func (*ReleaseInfo) Descriptor deprecated

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

Deprecated: Use ReleaseInfo.ProtoReflect.Descriptor instead.

func (*ReleaseInfo) GetDefaultValues

func (x *ReleaseInfo) GetDefaultValues() string

func (*ReleaseInfo) GetDeployedAppDetail

func (x *ReleaseInfo) GetDeployedAppDetail() *DeployedAppDetail

func (*ReleaseInfo) GetMergedValues

func (x *ReleaseInfo) GetMergedValues() string

func (*ReleaseInfo) GetOverrideValues

func (x *ReleaseInfo) GetOverrideValues() string

func (*ReleaseInfo) GetReadme

func (x *ReleaseInfo) GetReadme() string

func (*ReleaseInfo) GetValuesSchemaJson

func (x *ReleaseInfo) GetValuesSchemaJson() string

func (*ReleaseInfo) ProtoMessage

func (*ReleaseInfo) ProtoMessage()

func (*ReleaseInfo) ProtoReflect

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

func (*ReleaseInfo) Reset

func (x *ReleaseInfo) Reset()

func (*ReleaseInfo) String

func (x *ReleaseInfo) String() string

type ReleaseStatus

type ReleaseStatus struct {
	Status      string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Message     string `protobuf:"bytes,2,opt,name=message,proto3" json:"message,omitempty"`
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*ReleaseStatus) Descriptor deprecated

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

Deprecated: Use ReleaseStatus.ProtoReflect.Descriptor instead.

func (*ReleaseStatus) GetDescription

func (x *ReleaseStatus) GetDescription() string

func (*ReleaseStatus) GetMessage

func (x *ReleaseStatus) GetMessage() string

func (*ReleaseStatus) GetStatus

func (x *ReleaseStatus) GetStatus() string

func (*ReleaseStatus) ProtoMessage

func (*ReleaseStatus) ProtoMessage()

func (*ReleaseStatus) ProtoReflect

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

func (*ReleaseStatus) Reset

func (x *ReleaseStatus) Reset()

func (*ReleaseStatus) String

func (x *ReleaseStatus) String() string

type ResourceFilter

type ResourceFilter struct {
	Gvk                *Gvk                `protobuf:"bytes,1,opt,name=gvk,proto3" json:"gvk,omitempty"`
	ResourceIdentifier *ResourceIdentifier `protobuf:"bytes,2,opt,name=resourceIdentifier,proto3" json:"resourceIdentifier,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceFilter) Descriptor deprecated

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

Deprecated: Use ResourceFilter.ProtoReflect.Descriptor instead.

func (*ResourceFilter) GetGvk

func (x *ResourceFilter) GetGvk() *Gvk

func (*ResourceFilter) GetResourceIdentifier

func (x *ResourceFilter) GetResourceIdentifier() *ResourceIdentifier

func (*ResourceFilter) ProtoMessage

func (*ResourceFilter) ProtoMessage()

func (*ResourceFilter) ProtoReflect

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

func (*ResourceFilter) Reset

func (x *ResourceFilter) Reset()

func (*ResourceFilter) String

func (x *ResourceFilter) String() string

type ResourceIdentifier

type ResourceIdentifier struct {
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ResourceIdentifier) Descriptor deprecated

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

Deprecated: Use ResourceIdentifier.ProtoReflect.Descriptor instead.

func (*ResourceIdentifier) GetLabels

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

func (*ResourceIdentifier) ProtoMessage

func (*ResourceIdentifier) ProtoMessage()

func (*ResourceIdentifier) ProtoReflect

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

func (*ResourceIdentifier) Reset

func (x *ResourceIdentifier) Reset()

func (*ResourceIdentifier) String

func (x *ResourceIdentifier) String() string

type ResourceNetworkingInfo

type ResourceNetworkingInfo struct {
	Labels map[string]string `` /* 153-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ResourceNetworkingInfo) Descriptor deprecated

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

Deprecated: Use ResourceNetworkingInfo.ProtoReflect.Descriptor instead.

func (*ResourceNetworkingInfo) GetLabels

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

func (*ResourceNetworkingInfo) ProtoMessage

func (*ResourceNetworkingInfo) ProtoMessage()

func (*ResourceNetworkingInfo) ProtoReflect

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

func (*ResourceNetworkingInfo) Reset

func (x *ResourceNetworkingInfo) Reset()

func (*ResourceNetworkingInfo) String

func (x *ResourceNetworkingInfo) String() string

type ResourceNode

type ResourceNode struct {
	Group           string                  `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Version         string                  `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	Kind            string                  `protobuf:"bytes,3,opt,name=kind,proto3" json:"kind,omitempty"`
	Namespace       string                  `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name            string                  `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Uid             string                  `protobuf:"bytes,6,opt,name=uid,proto3" json:"uid,omitempty"`
	ParentRefs      []*ResourceRef          `protobuf:"bytes,7,rep,name=parentRefs,proto3" json:"parentRefs,omitempty"`
	NetworkingInfo  *ResourceNetworkingInfo `protobuf:"bytes,8,opt,name=networkingInfo,proto3" json:"networkingInfo,omitempty"`
	ResourceVersion string                  `protobuf:"bytes,9,opt,name=resourceVersion,proto3" json:"resourceVersion,omitempty"`
	Health          *HealthStatus           `protobuf:"bytes,10,opt,name=health,proto3" json:"health,omitempty"`
	IsHibernated    bool                    `protobuf:"varint,11,opt,name=isHibernated,proto3" json:"isHibernated,omitempty"`
	CanBeHibernated bool                    `protobuf:"varint,12,opt,name=canBeHibernated,proto3" json:"canBeHibernated,omitempty"`
	Info            []*InfoItem             `protobuf:"bytes,13,rep,name=info,proto3" json:"info,omitempty"`
	CreatedAt       string                  `protobuf:"bytes,14,opt,name=createdAt,proto3" json:"createdAt,omitempty"`
	Port            []int64                 `protobuf:"varint,15,rep,packed,name=port,proto3" json:"port,omitempty"`
	IsHook          bool                    `protobuf:"varint,16,opt,name=isHook,proto3" json:"isHook,omitempty"`
	HookType        string                  `protobuf:"bytes,17,opt,name=hookType,proto3" json:"hookType,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceNode) Descriptor deprecated

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

Deprecated: Use ResourceNode.ProtoReflect.Descriptor instead.

func (*ResourceNode) GetCanBeHibernated

func (x *ResourceNode) GetCanBeHibernated() bool

func (*ResourceNode) GetCreatedAt

func (x *ResourceNode) GetCreatedAt() string

func (*ResourceNode) GetGroup

func (x *ResourceNode) GetGroup() string

func (*ResourceNode) GetHealth

func (x *ResourceNode) GetHealth() *HealthStatus

func (*ResourceNode) GetHookType

func (x *ResourceNode) GetHookType() string

func (*ResourceNode) GetInfo

func (x *ResourceNode) GetInfo() []*InfoItem

func (*ResourceNode) GetIsHibernated

func (x *ResourceNode) GetIsHibernated() bool

func (*ResourceNode) GetIsHook

func (x *ResourceNode) GetIsHook() bool

func (*ResourceNode) GetKind

func (x *ResourceNode) GetKind() string

func (*ResourceNode) GetName

func (x *ResourceNode) GetName() string

func (*ResourceNode) GetNamespace

func (x *ResourceNode) GetNamespace() string

func (*ResourceNode) GetNetworkingInfo

func (x *ResourceNode) GetNetworkingInfo() *ResourceNetworkingInfo

func (*ResourceNode) GetParentRefs

func (x *ResourceNode) GetParentRefs() []*ResourceRef

func (*ResourceNode) GetPort

func (x *ResourceNode) GetPort() []int64

func (*ResourceNode) GetResourceVersion

func (x *ResourceNode) GetResourceVersion() string

func (*ResourceNode) GetUid

func (x *ResourceNode) GetUid() string

func (*ResourceNode) GetVersion

func (x *ResourceNode) GetVersion() string

func (*ResourceNode) ProtoMessage

func (*ResourceNode) ProtoMessage()

func (*ResourceNode) ProtoReflect

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

func (*ResourceNode) Reset

func (x *ResourceNode) Reset()

func (*ResourceNode) String

func (x *ResourceNode) String() string

type ResourceRef

type ResourceRef struct {
	Group     string `protobuf:"bytes,1,opt,name=group,proto3" json:"group,omitempty"`
	Version   string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	Kind      string `protobuf:"bytes,3,opt,name=kind,proto3" json:"kind,omitempty"`
	Namespace string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name      string `protobuf:"bytes,5,opt,name=name,proto3" json:"name,omitempty"`
	Uid       string `protobuf:"bytes,6,opt,name=uid,proto3" json:"uid,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceRef) Descriptor deprecated

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

Deprecated: Use ResourceRef.ProtoReflect.Descriptor instead.

func (*ResourceRef) GetGroup

func (x *ResourceRef) GetGroup() string

func (*ResourceRef) GetKind

func (x *ResourceRef) GetKind() string

func (*ResourceRef) GetName

func (x *ResourceRef) GetName() string

func (*ResourceRef) GetNamespace

func (x *ResourceRef) GetNamespace() string

func (*ResourceRef) GetUid

func (x *ResourceRef) GetUid() string

func (*ResourceRef) GetVersion

func (x *ResourceRef) GetVersion() string

func (*ResourceRef) ProtoMessage

func (*ResourceRef) ProtoMessage()

func (*ResourceRef) ProtoReflect

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

func (*ResourceRef) Reset

func (x *ResourceRef) Reset()

func (*ResourceRef) String

func (x *ResourceRef) String() string

type ResourceTreeFilter

type ResourceTreeFilter struct {
	GlobalFilter    *ResourceIdentifier `protobuf:"bytes,1,opt,name=globalFilter,proto3" json:"globalFilter,omitempty"`
	ResourceFilters []*ResourceFilter   `protobuf:"bytes,2,rep,name=resourceFilters,proto3" json:"resourceFilters,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceTreeFilter) Descriptor deprecated

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

Deprecated: Use ResourceTreeFilter.ProtoReflect.Descriptor instead.

func (*ResourceTreeFilter) GetGlobalFilter

func (x *ResourceTreeFilter) GetGlobalFilter() *ResourceIdentifier

func (*ResourceTreeFilter) GetResourceFilters

func (x *ResourceTreeFilter) GetResourceFilters() []*ResourceFilter

func (*ResourceTreeFilter) ProtoMessage

func (*ResourceTreeFilter) ProtoMessage()

func (*ResourceTreeFilter) ProtoReflect

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

func (*ResourceTreeFilter) Reset

func (x *ResourceTreeFilter) Reset()

func (*ResourceTreeFilter) String

func (x *ResourceTreeFilter) String() string

type ResourceTreeResponse

type ResourceTreeResponse struct {
	Nodes       []*ResourceNode `protobuf:"bytes,1,rep,name=nodes,proto3" json:"nodes,omitempty"`
	PodMetadata []*PodMetadata  `protobuf:"bytes,2,rep,name=podMetadata,proto3" json:"podMetadata,omitempty"`
	// contains filtered or unexported fields
}

func (*ResourceTreeResponse) Descriptor deprecated

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

Deprecated: Use ResourceTreeResponse.ProtoReflect.Descriptor instead.

func (*ResourceTreeResponse) GetNodes

func (x *ResourceTreeResponse) GetNodes() []*ResourceNode

func (*ResourceTreeResponse) GetPodMetadata

func (x *ResourceTreeResponse) GetPodMetadata() []*PodMetadata

func (*ResourceTreeResponse) ProtoMessage

func (*ResourceTreeResponse) ProtoMessage()

func (*ResourceTreeResponse) ProtoReflect

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

func (*ResourceTreeResponse) Reset

func (x *ResourceTreeResponse) Reset()

func (*ResourceTreeResponse) String

func (x *ResourceTreeResponse) String() string

type RollbackReleaseRequest

type RollbackReleaseRequest struct {
	ReleaseIdentifier *ReleaseIdentifier `protobuf:"bytes,1,opt,name=releaseIdentifier,proto3" json:"releaseIdentifier,omitempty"`
	Version           int32              `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*RollbackReleaseRequest) Descriptor deprecated

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

Deprecated: Use RollbackReleaseRequest.ProtoReflect.Descriptor instead.

func (*RollbackReleaseRequest) GetReleaseIdentifier

func (x *RollbackReleaseRequest) GetReleaseIdentifier() *ReleaseIdentifier

func (*RollbackReleaseRequest) GetVersion

func (x *RollbackReleaseRequest) GetVersion() int32

func (*RollbackReleaseRequest) ProtoMessage

func (*RollbackReleaseRequest) ProtoMessage()

func (*RollbackReleaseRequest) ProtoReflect

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

func (*RollbackReleaseRequest) Reset

func (x *RollbackReleaseRequest) Reset()

func (*RollbackReleaseRequest) String

func (x *RollbackReleaseRequest) String() string

type TemplateChartResponse

type TemplateChartResponse struct {
	GeneratedManifest string `protobuf:"bytes,1,opt,name=generatedManifest,proto3" json:"generatedManifest,omitempty"`
	AppName           string `protobuf:"bytes,2,opt,name=appName,proto3" json:"appName,omitempty"`
	// contains filtered or unexported fields
}

func (*TemplateChartResponse) Descriptor deprecated

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

Deprecated: Use TemplateChartResponse.ProtoReflect.Descriptor instead.

func (*TemplateChartResponse) GetAppName

func (x *TemplateChartResponse) GetAppName() string

func (*TemplateChartResponse) GetGeneratedManifest

func (x *TemplateChartResponse) GetGeneratedManifest() string

func (*TemplateChartResponse) ProtoMessage

func (*TemplateChartResponse) ProtoMessage()

func (*TemplateChartResponse) ProtoReflect

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

func (*TemplateChartResponse) Reset

func (x *TemplateChartResponse) Reset()

func (*TemplateChartResponse) String

func (x *TemplateChartResponse) String() string

type TemplateChartResponseWithChart

type TemplateChartResponseWithChart struct {
	TemplateChartResponse *TemplateChartResponse `protobuf:"bytes,1,opt,name=templateChartResponse,proto3" json:"templateChartResponse,omitempty"`
	ChartBytes            *ChartContent          `protobuf:"bytes,2,opt,name=chartBytes,proto3" json:"chartBytes,omitempty"`
	// contains filtered or unexported fields
}

func (*TemplateChartResponseWithChart) Descriptor deprecated

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

Deprecated: Use TemplateChartResponseWithChart.ProtoReflect.Descriptor instead.

func (*TemplateChartResponseWithChart) GetChartBytes

func (x *TemplateChartResponseWithChart) GetChartBytes() *ChartContent

func (*TemplateChartResponseWithChart) GetTemplateChartResponse

func (x *TemplateChartResponseWithChart) GetTemplateChartResponse() *TemplateChartResponse

func (*TemplateChartResponseWithChart) ProtoMessage

func (*TemplateChartResponseWithChart) ProtoMessage()

func (*TemplateChartResponseWithChart) ProtoReflect

func (*TemplateChartResponseWithChart) Reset

func (x *TemplateChartResponseWithChart) Reset()

func (*TemplateChartResponseWithChart) String

type UnimplementedApplicationServiceServer

type UnimplementedApplicationServiceServer struct {
}

UnimplementedApplicationServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedApplicationServiceServer) GetAppDetail

func (UnimplementedApplicationServiceServer) GetAppStatus

func (UnimplementedApplicationServiceServer) GetDeploymentDetail

func (UnimplementedApplicationServiceServer) GetDeploymentHistory

func (UnimplementedApplicationServiceServer) GetDesiredManifest

func (UnimplementedApplicationServiceServer) GetNotes

func (UnimplementedApplicationServiceServer) GetResourceTreeForExternalResources

func (UnimplementedApplicationServiceServer) GetValuesYaml

func (UnimplementedApplicationServiceServer) Hibernate

func (UnimplementedApplicationServiceServer) InstallRelease

func (UnimplementedApplicationServiceServer) InstallReleaseWithCustomChart

func (UnimplementedApplicationServiceServer) IsReleaseInstalled

func (UnimplementedApplicationServiceServer) ListApplications

func (UnimplementedApplicationServiceServer) PushHelmChartToOCIRegistry

func (UnimplementedApplicationServiceServer) RollbackRelease

func (UnimplementedApplicationServiceServer) TemplateChart

func (UnimplementedApplicationServiceServer) TemplateChartAndRetrieveChart

func (UnimplementedApplicationServiceServer) TemplateChartBulk

func (UnimplementedApplicationServiceServer) UnHibernate

func (UnimplementedApplicationServiceServer) UninstallRelease

func (UnimplementedApplicationServiceServer) UpgradeRelease

func (UnimplementedApplicationServiceServer) UpgradeReleaseWithChartInfo

func (UnimplementedApplicationServiceServer) UpgradeReleaseWithCustomChart

func (UnimplementedApplicationServiceServer) ValidateOCIRegistry

type UninstallReleaseResponse

type UninstallReleaseResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*UninstallReleaseResponse) Descriptor deprecated

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

Deprecated: Use UninstallReleaseResponse.ProtoReflect.Descriptor instead.

func (*UninstallReleaseResponse) GetSuccess

func (x *UninstallReleaseResponse) GetSuccess() bool

func (*UninstallReleaseResponse) ProtoMessage

func (*UninstallReleaseResponse) ProtoMessage()

func (*UninstallReleaseResponse) ProtoReflect

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

func (*UninstallReleaseResponse) Reset

func (x *UninstallReleaseResponse) Reset()

func (*UninstallReleaseResponse) String

func (x *UninstallReleaseResponse) String() string

type UnsafeApplicationServiceServer

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

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

type UpgradeReleaseRequest

type UpgradeReleaseRequest struct {
	ReleaseIdentifier *ReleaseIdentifier `protobuf:"bytes,1,opt,name=releaseIdentifier,proto3" json:"releaseIdentifier,omitempty"`
	ValuesYaml        string             `protobuf:"bytes,2,opt,name=valuesYaml,proto3" json:"valuesYaml,omitempty"`
	HistoryMax        int32              `protobuf:"varint,3,opt,name=historyMax,proto3" json:"historyMax,omitempty"`
	ChartContent      *ChartContent      `protobuf:"bytes,4,opt,name=chartContent,proto3" json:"chartContent,omitempty"`
	RunInCtx          bool               `protobuf:"varint,5,opt,name=RunInCtx,proto3" json:"RunInCtx,omitempty"`
	K8SVersion        string             `protobuf:"bytes,6,opt,name=K8sVersion,proto3" json:"K8sVersion,omitempty"`
	// contains filtered or unexported fields
}

func (*UpgradeReleaseRequest) Descriptor deprecated

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

Deprecated: Use UpgradeReleaseRequest.ProtoReflect.Descriptor instead.

func (*UpgradeReleaseRequest) GetChartContent

func (x *UpgradeReleaseRequest) GetChartContent() *ChartContent

func (*UpgradeReleaseRequest) GetHistoryMax

func (x *UpgradeReleaseRequest) GetHistoryMax() int32

func (*UpgradeReleaseRequest) GetK8SVersion

func (x *UpgradeReleaseRequest) GetK8SVersion() string

func (*UpgradeReleaseRequest) GetReleaseIdentifier

func (x *UpgradeReleaseRequest) GetReleaseIdentifier() *ReleaseIdentifier

func (*UpgradeReleaseRequest) GetRunInCtx

func (x *UpgradeReleaseRequest) GetRunInCtx() bool

func (*UpgradeReleaseRequest) GetValuesYaml

func (x *UpgradeReleaseRequest) GetValuesYaml() string

func (*UpgradeReleaseRequest) ProtoMessage

func (*UpgradeReleaseRequest) ProtoMessage()

func (*UpgradeReleaseRequest) ProtoReflect

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

func (*UpgradeReleaseRequest) Reset

func (x *UpgradeReleaseRequest) Reset()

func (*UpgradeReleaseRequest) String

func (x *UpgradeReleaseRequest) String() string

type UpgradeReleaseResponse

type UpgradeReleaseResponse struct {
	Success bool `protobuf:"varint,1,opt,name=success,proto3" json:"success,omitempty"`
	// contains filtered or unexported fields
}

func (*UpgradeReleaseResponse) Descriptor deprecated

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

Deprecated: Use UpgradeReleaseResponse.ProtoReflect.Descriptor instead.

func (*UpgradeReleaseResponse) GetSuccess

func (x *UpgradeReleaseResponse) GetSuccess() bool

func (*UpgradeReleaseResponse) ProtoMessage

func (*UpgradeReleaseResponse) ProtoMessage()

func (*UpgradeReleaseResponse) ProtoReflect

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

func (*UpgradeReleaseResponse) Reset

func (x *UpgradeReleaseResponse) Reset()

func (*UpgradeReleaseResponse) String

func (x *UpgradeReleaseResponse) String() string

Jump to

Keyboard shortcuts

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