api

package
v0.7.0-rc1 Latest Latest
Warning

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

Go to latest
Published: Mar 24, 2022 License: MPL-2.0 Imports: 17 Imported by: 2

Documentation

Overview

Package api is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

This section is empty.

Variables

View Source
var (
	AutomationKind_name = map[int32]string{
		0: "KustomizationAutomation",
		1: "HelmReleaseAutomation",
	}
	AutomationKind_value = map[string]int32{
		"KustomizationAutomation": 0,
		"HelmReleaseAutomation":   1,
	}
)

Enum value maps for AutomationKind.

View Source
var (
	SourceRef_SourceKind_name = map[int32]string{
		0: "GitRepository",
		1: "Bucket",
		2: "HelmRepository",
		3: "HelmChart",
	}
	SourceRef_SourceKind_value = map[string]int32{
		"GitRepository":  0,
		"Bucket":         1,
		"HelmRepository": 2,
		"HelmChart":      3,
	}
)

Enum value maps for SourceRef_SourceKind.

View Source
var (
	Bucket_Provider_name = map[int32]string{
		0: "Generic",
		1: "AWS",
		2: "GCP",
	}
	Bucket_Provider_value = map[string]int32{
		"Generic": 0,
		"AWS":     1,
		"GCP":     2,
	}
)

Enum value maps for Bucket_Provider.

View Source
var Core_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "gitops_core.v1.Core",
	HandlerType: (*CoreServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "ListKustomizations",
			Handler:    _Core_ListKustomizations_Handler,
		},
		{
			MethodName: "GetKustomization",
			Handler:    _Core_GetKustomization_Handler,
		},
		{
			MethodName: "ListHelmReleases",
			Handler:    _Core_ListHelmReleases_Handler,
		},
		{
			MethodName: "GetHelmRelease",
			Handler:    _Core_GetHelmRelease_Handler,
		},
		{
			MethodName: "ListGitRepositories",
			Handler:    _Core_ListGitRepositories_Handler,
		},
		{
			MethodName: "ListHelmCharts",
			Handler:    _Core_ListHelmCharts_Handler,
		},
		{
			MethodName: "ListHelmRepositories",
			Handler:    _Core_ListHelmRepositories_Handler,
		},
		{
			MethodName: "ListBuckets",
			Handler:    _Core_ListBuckets_Handler,
		},
		{
			MethodName: "ListFluxRuntimeObjects",
			Handler:    _Core_ListFluxRuntimeObjects_Handler,
		},
		{
			MethodName: "GetReconciledObjects",
			Handler:    _Core_GetReconciledObjects_Handler,
		},
		{
			MethodName: "GetChildObjects",
			Handler:    _Core_GetChildObjects_Handler,
		},
		{
			MethodName: "GetFluxNamespace",
			Handler:    _Core_GetFluxNamespace_Handler,
		},
		{
			MethodName: "ListNamespaces",
			Handler:    _Core_ListNamespaces_Handler,
		},
		{
			MethodName: "ListFluxEvents",
			Handler:    _Core_ListFluxEvents_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "api/core/core.proto",
}

Core_ServiceDesc is the grpc.ServiceDesc for Core 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_api_core_core_proto protoreflect.FileDescriptor
View Source
var File_api_core_types_proto protoreflect.FileDescriptor

Functions

func RegisterCoreHandler

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

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

func RegisterCoreHandlerClient

func RegisterCoreHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CoreClient) error

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

func RegisterCoreHandlerFromEndpoint

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

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

func RegisterCoreHandlerServer

func RegisterCoreHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CoreServer) error

RegisterCoreHandlerServer registers the http handlers for service Core to "mux". UnaryRPC :call CoreServer 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 RegisterCoreHandlerFromEndpoint instead.

func RegisterCoreServer

func RegisterCoreServer(s grpc.ServiceRegistrar, srv CoreServer)

Types

type AutomationKind

type AutomationKind int32
const (
	// enums populate a global namespace, so spell these out.
	// `Kustomization` and `HelmRelease` are already taken as names.
	AutomationKind_KustomizationAutomation AutomationKind = 0
	AutomationKind_HelmReleaseAutomation   AutomationKind = 1
)

func (AutomationKind) Descriptor

func (AutomationKind) Enum

func (x AutomationKind) Enum() *AutomationKind

func (AutomationKind) EnumDescriptor deprecated

func (AutomationKind) EnumDescriptor() ([]byte, []int)

Deprecated: Use AutomationKind.Descriptor instead.

func (AutomationKind) Number

func (AutomationKind) String

func (x AutomationKind) String() string

func (AutomationKind) Type

type Bucket

type Bucket struct {
	Namespace     string          `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name          string          `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Endpoint      string          `protobuf:"bytes,3,opt,name=endpoint,proto3" json:"endpoint,omitempty"`
	Insecure      bool            `protobuf:"varint,4,opt,name=insecure,proto3" json:"insecure,omitempty"`
	Interval      *Interval       `protobuf:"bytes,5,opt,name=interval,proto3" json:"interval,omitempty"`
	Provider      Bucket_Provider `protobuf:"varint,6,opt,name=provider,proto3,enum=gitops_core.v1.Bucket_Provider" json:"provider,omitempty"`
	Region        string          `protobuf:"bytes,7,opt,name=region,proto3" json:"region,omitempty"`
	SecretRefName string          `protobuf:"bytes,8,opt,name=secretRefName,proto3" json:"secretRefName,omitempty"`
	Timeout       int32           `protobuf:"varint,9,opt,name=timeout,proto3" json:"timeout,omitempty"`
	Conditions    []*Condition    `protobuf:"bytes,10,rep,name=conditions,proto3" json:"conditions,omitempty"`
	BucketName    string          `protobuf:"bytes,11,opt,name=bucket_name,json=bucketName,proto3" json:"bucket_name,omitempty"`
	Suspended     bool            `protobuf:"varint,12,opt,name=suspended,proto3" json:"suspended,omitempty"`
	LastUpdatedAt string          `protobuf:"bytes,13,opt,name=lastUpdatedAt,proto3" json:"lastUpdatedAt,omitempty"`
	// contains filtered or unexported fields
}

func (*Bucket) Descriptor deprecated

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

Deprecated: Use Bucket.ProtoReflect.Descriptor instead.

func (*Bucket) GetBucketName

func (x *Bucket) GetBucketName() string

func (*Bucket) GetConditions

func (x *Bucket) GetConditions() []*Condition

func (*Bucket) GetEndpoint

func (x *Bucket) GetEndpoint() string

func (*Bucket) GetInsecure

func (x *Bucket) GetInsecure() bool

func (*Bucket) GetInterval

func (x *Bucket) GetInterval() *Interval

func (*Bucket) GetLastUpdatedAt

func (x *Bucket) GetLastUpdatedAt() string

func (*Bucket) GetName

func (x *Bucket) GetName() string

func (*Bucket) GetNamespace

func (x *Bucket) GetNamespace() string

func (*Bucket) GetProvider

func (x *Bucket) GetProvider() Bucket_Provider

func (*Bucket) GetRegion

func (x *Bucket) GetRegion() string

func (*Bucket) GetSecretRefName

func (x *Bucket) GetSecretRefName() string

func (*Bucket) GetSuspended

func (x *Bucket) GetSuspended() bool

func (*Bucket) GetTimeout

func (x *Bucket) GetTimeout() int32

func (*Bucket) ProtoMessage

func (*Bucket) ProtoMessage()

func (*Bucket) ProtoReflect

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

func (*Bucket) Reset

func (x *Bucket) Reset()

func (*Bucket) String

func (x *Bucket) String() string

type Bucket_Provider

type Bucket_Provider int32
const (
	Bucket_Generic Bucket_Provider = 0
	Bucket_AWS     Bucket_Provider = 1
	Bucket_GCP     Bucket_Provider = 2
)

func (Bucket_Provider) Descriptor

func (Bucket_Provider) Enum

func (x Bucket_Provider) Enum() *Bucket_Provider

func (Bucket_Provider) EnumDescriptor deprecated

func (Bucket_Provider) EnumDescriptor() ([]byte, []int)

Deprecated: Use Bucket_Provider.Descriptor instead.

func (Bucket_Provider) Number

func (Bucket_Provider) String

func (x Bucket_Provider) String() string

func (Bucket_Provider) Type

type Condition

type Condition struct {
	Type      string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Status    string `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
	Reason    string `protobuf:"bytes,3,opt,name=reason,proto3" json:"reason,omitempty"`
	Message   string `protobuf:"bytes,4,opt,name=message,proto3" json:"message,omitempty"`
	Timestamp string `protobuf:"bytes,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	// contains filtered or unexported fields
}

func (*Condition) Descriptor deprecated

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

Deprecated: Use Condition.ProtoReflect.Descriptor instead.

func (*Condition) GetMessage

func (x *Condition) GetMessage() string

func (*Condition) GetReason

func (x *Condition) GetReason() string

func (*Condition) GetStatus

func (x *Condition) GetStatus() string

func (*Condition) GetTimestamp

func (x *Condition) GetTimestamp() string

func (*Condition) GetType

func (x *Condition) GetType() string

func (*Condition) ProtoMessage

func (*Condition) ProtoMessage()

func (*Condition) ProtoReflect

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

func (*Condition) Reset

func (x *Condition) Reset()

func (*Condition) String

func (x *Condition) String() string

type CoreClient

type CoreClient interface {
	//
	// ListKustomization lists Kustomizations from a cluster via GitOps.
	ListKustomizations(ctx context.Context, in *ListKustomizationsRequest, opts ...grpc.CallOption) (*ListKustomizationsResponse, error)
	//
	// GetKustomization gets data about a single Kustomization from a cluster.
	GetKustomization(ctx context.Context, in *GetKustomizationRequest, opts ...grpc.CallOption) (*GetKustomizationResponse, error)
	//
	// ListHelmReleases lists helm releases from a cluster.
	ListHelmReleases(ctx context.Context, in *ListHelmReleasesRequest, opts ...grpc.CallOption) (*ListHelmReleasesResponse, error)
	//
	// GetHelmRelease gets data about a single HelmRelease from the cluster.
	GetHelmRelease(ctx context.Context, in *GetHelmReleaseRequest, opts ...grpc.CallOption) (*GetHelmReleaseResponse, error)
	//
	// ListGitRepository lists git repositories objects from a cluster.
	ListGitRepositories(ctx context.Context, in *ListGitRepositoriesRequest, opts ...grpc.CallOption) (*ListGitRepositoriesResponse, error)
	//
	// ListHelmCharts lists helm chart objects from a cluster.
	ListHelmCharts(ctx context.Context, in *ListHelmChartsRequest, opts ...grpc.CallOption) (*ListHelmChartsResponse, error)
	//
	// ListHelmRepository lists helm repository objects from a cluster.
	ListHelmRepositories(ctx context.Context, in *ListHelmRepositoriesRequest, opts ...grpc.CallOption) (*ListHelmRepositoriesResponse, error)
	//
	// ListBuckets lists bucket objects from a cluster.
	ListBuckets(ctx context.Context, in *ListBucketRequest, opts ...grpc.CallOption) (*ListBucketsResponse, error)
	//
	// ListFluxRuntimeObjects lists the flux runtime deployments from a cluster.
	ListFluxRuntimeObjects(ctx context.Context, in *ListFluxRuntimeObjectsRequest, opts ...grpc.CallOption) (*ListFluxRuntimeObjectsResponse, error)
	//
	// GetReconciledObjects returns a list of objects that were created as a result a Flux automation.
	// This list is derived by looking at the Kustomization or HelmRelease specified in the request body.
	GetReconciledObjects(ctx context.Context, in *GetReconciledObjectsRequest, opts ...grpc.CallOption) (*GetReconciledObjectsResponse, error)
	//
	// GetChildObjects returns the children of a given object, specified by a GroupVersionKind.
	// Not all Kubernets objects have children. For example, a Deployment has a child ReplicaSet, but a Service has no child objects.
	GetChildObjects(ctx context.Context, in *GetChildObjectsRequest, opts ...grpc.CallOption) (*GetChildObjectsResponse, error)
	//
	// GetFluxNamespace returns with a namespace with a specific label.
	GetFluxNamespace(ctx context.Context, in *GetFluxNamespaceRequest, opts ...grpc.CallOption) (*GetFluxNamespaceResponse, error)
	//
	// ListNamespaces returns with the list of available namespaces.
	ListNamespaces(ctx context.Context, in *ListNamespacesRequest, opts ...grpc.CallOption) (*ListNamespacesResponse, error)
	//
	// ListFluxEvents returns with a list of events based on Flux labels
	ListFluxEvents(ctx context.Context, in *ListFluxEventsRequest, opts ...grpc.CallOption) (*ListFluxEventsResponse, error)
}

CoreClient is the client API for Core 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.

func NewCoreClient

func NewCoreClient(cc grpc.ClientConnInterface) CoreClient

type CoreServer

type CoreServer interface {
	//
	// ListKustomization lists Kustomizations from a cluster via GitOps.
	ListKustomizations(context.Context, *ListKustomizationsRequest) (*ListKustomizationsResponse, error)
	//
	// GetKustomization gets data about a single Kustomization from a cluster.
	GetKustomization(context.Context, *GetKustomizationRequest) (*GetKustomizationResponse, error)
	//
	// ListHelmReleases lists helm releases from a cluster.
	ListHelmReleases(context.Context, *ListHelmReleasesRequest) (*ListHelmReleasesResponse, error)
	//
	// GetHelmRelease gets data about a single HelmRelease from the cluster.
	GetHelmRelease(context.Context, *GetHelmReleaseRequest) (*GetHelmReleaseResponse, error)
	//
	// ListGitRepository lists git repositories objects from a cluster.
	ListGitRepositories(context.Context, *ListGitRepositoriesRequest) (*ListGitRepositoriesResponse, error)
	//
	// ListHelmCharts lists helm chart objects from a cluster.
	ListHelmCharts(context.Context, *ListHelmChartsRequest) (*ListHelmChartsResponse, error)
	//
	// ListHelmRepository lists helm repository objects from a cluster.
	ListHelmRepositories(context.Context, *ListHelmRepositoriesRequest) (*ListHelmRepositoriesResponse, error)
	//
	// ListBuckets lists bucket objects from a cluster.
	ListBuckets(context.Context, *ListBucketRequest) (*ListBucketsResponse, error)
	//
	// ListFluxRuntimeObjects lists the flux runtime deployments from a cluster.
	ListFluxRuntimeObjects(context.Context, *ListFluxRuntimeObjectsRequest) (*ListFluxRuntimeObjectsResponse, error)
	//
	// GetReconciledObjects returns a list of objects that were created as a result a Flux automation.
	// This list is derived by looking at the Kustomization or HelmRelease specified in the request body.
	GetReconciledObjects(context.Context, *GetReconciledObjectsRequest) (*GetReconciledObjectsResponse, error)
	//
	// GetChildObjects returns the children of a given object, specified by a GroupVersionKind.
	// Not all Kubernets objects have children. For example, a Deployment has a child ReplicaSet, but a Service has no child objects.
	GetChildObjects(context.Context, *GetChildObjectsRequest) (*GetChildObjectsResponse, error)
	//
	// GetFluxNamespace returns with a namespace with a specific label.
	GetFluxNamespace(context.Context, *GetFluxNamespaceRequest) (*GetFluxNamespaceResponse, error)
	//
	// ListNamespaces returns with the list of available namespaces.
	ListNamespaces(context.Context, *ListNamespacesRequest) (*ListNamespacesResponse, error)
	//
	// ListFluxEvents returns with a list of events based on Flux labels
	ListFluxEvents(context.Context, *ListFluxEventsRequest) (*ListFluxEventsResponse, error)
	// contains filtered or unexported methods
}

CoreServer is the server API for Core service. All implementations must embed UnimplementedCoreServer for forward compatibility

type Deployment

type Deployment struct {
	Name       string       `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Namespace  string       `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Conditions []*Condition `protobuf:"bytes,3,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Images     []string     `protobuf:"bytes,4,rep,name=images,proto3" json:"images,omitempty"`
	Suspended  bool         `protobuf:"varint,5,opt,name=suspended,proto3" json:"suspended,omitempty"`
	// contains filtered or unexported fields
}

func (*Deployment) Descriptor deprecated

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

Deprecated: Use Deployment.ProtoReflect.Descriptor instead.

func (*Deployment) GetConditions

func (x *Deployment) GetConditions() []*Condition

func (*Deployment) GetImages

func (x *Deployment) GetImages() []string

func (*Deployment) GetName

func (x *Deployment) GetName() string

func (*Deployment) GetNamespace

func (x *Deployment) GetNamespace() string

func (*Deployment) GetSuspended

func (x *Deployment) GetSuspended() bool

func (*Deployment) ProtoMessage

func (*Deployment) ProtoMessage()

func (*Deployment) ProtoReflect

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

func (*Deployment) Reset

func (x *Deployment) Reset()

func (*Deployment) String

func (x *Deployment) String() string

type Event

type Event struct {
	Type      string `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Reason    string `protobuf:"bytes,2,opt,name=reason,proto3" json:"reason,omitempty"`
	Message   string `protobuf:"bytes,3,opt,name=message,proto3" json:"message,omitempty"`
	Timestamp string `protobuf:"bytes,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
	Component string `protobuf:"bytes,5,opt,name=component,proto3" json:"component,omitempty"`
	Host      string `protobuf:"bytes,6,opt,name=host,proto3" json:"host,omitempty"`
	Name      string `protobuf:"bytes,7,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*Event) Descriptor deprecated

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

Deprecated: Use Event.ProtoReflect.Descriptor instead.

func (*Event) GetComponent

func (x *Event) GetComponent() string

func (*Event) GetHost

func (x *Event) GetHost() string

func (*Event) GetMessage

func (x *Event) GetMessage() string

func (*Event) GetName

func (x *Event) GetName() string

func (*Event) GetReason

func (x *Event) GetReason() string

func (*Event) GetTimestamp

func (x *Event) GetTimestamp() string

func (*Event) GetType

func (x *Event) GetType() string

func (*Event) ProtoMessage

func (*Event) ProtoMessage()

func (*Event) ProtoReflect

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

func (*Event) Reset

func (x *Event) Reset()

func (*Event) String

func (x *Event) String() string

type GetChildObjectsRequest

type GetChildObjectsRequest struct {
	GroupVersionKind *GroupVersionKind `protobuf:"bytes,1,opt,name=groupVersionKind,proto3" json:"groupVersionKind,omitempty"`
	Namespace        string            `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	ParentUid        string            `protobuf:"bytes,3,opt,name=parentUid,proto3" json:"parentUid,omitempty"`
	// contains filtered or unexported fields
}

func (*GetChildObjectsRequest) Descriptor deprecated

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

Deprecated: Use GetChildObjectsRequest.ProtoReflect.Descriptor instead.

func (*GetChildObjectsRequest) GetGroupVersionKind

func (x *GetChildObjectsRequest) GetGroupVersionKind() *GroupVersionKind

func (*GetChildObjectsRequest) GetNamespace

func (x *GetChildObjectsRequest) GetNamespace() string

func (*GetChildObjectsRequest) GetParentUid

func (x *GetChildObjectsRequest) GetParentUid() string

func (*GetChildObjectsRequest) ProtoMessage

func (*GetChildObjectsRequest) ProtoMessage()

func (*GetChildObjectsRequest) ProtoReflect

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

func (*GetChildObjectsRequest) Reset

func (x *GetChildObjectsRequest) Reset()

func (*GetChildObjectsRequest) String

func (x *GetChildObjectsRequest) String() string

type GetChildObjectsResponse

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

func (*GetChildObjectsResponse) Descriptor deprecated

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

Deprecated: Use GetChildObjectsResponse.ProtoReflect.Descriptor instead.

func (*GetChildObjectsResponse) GetObjects

func (x *GetChildObjectsResponse) GetObjects() []*UnstructuredObject

func (*GetChildObjectsResponse) ProtoMessage

func (*GetChildObjectsResponse) ProtoMessage()

func (*GetChildObjectsResponse) ProtoReflect

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

func (*GetChildObjectsResponse) Reset

func (x *GetChildObjectsResponse) Reset()

func (*GetChildObjectsResponse) String

func (x *GetChildObjectsResponse) String() string

type GetFluxNamespaceRequest

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

func (*GetFluxNamespaceRequest) Descriptor deprecated

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

Deprecated: Use GetFluxNamespaceRequest.ProtoReflect.Descriptor instead.

func (*GetFluxNamespaceRequest) ProtoMessage

func (*GetFluxNamespaceRequest) ProtoMessage()

func (*GetFluxNamespaceRequest) ProtoReflect

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

func (*GetFluxNamespaceRequest) Reset

func (x *GetFluxNamespaceRequest) Reset()

func (*GetFluxNamespaceRequest) String

func (x *GetFluxNamespaceRequest) String() string

type GetFluxNamespaceResponse

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

func (*GetFluxNamespaceResponse) Descriptor deprecated

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

Deprecated: Use GetFluxNamespaceResponse.ProtoReflect.Descriptor instead.

func (*GetFluxNamespaceResponse) GetName

func (x *GetFluxNamespaceResponse) GetName() string

func (*GetFluxNamespaceResponse) ProtoMessage

func (*GetFluxNamespaceResponse) ProtoMessage()

func (*GetFluxNamespaceResponse) ProtoReflect

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

func (*GetFluxNamespaceResponse) Reset

func (x *GetFluxNamespaceResponse) Reset()

func (*GetFluxNamespaceResponse) String

func (x *GetFluxNamespaceResponse) String() string

type GetHelmReleaseRequest

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

func (*GetHelmReleaseRequest) Descriptor deprecated

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

Deprecated: Use GetHelmReleaseRequest.ProtoReflect.Descriptor instead.

func (*GetHelmReleaseRequest) GetName

func (x *GetHelmReleaseRequest) GetName() string

func (*GetHelmReleaseRequest) GetNamespace

func (x *GetHelmReleaseRequest) GetNamespace() string

func (*GetHelmReleaseRequest) ProtoMessage

func (*GetHelmReleaseRequest) ProtoMessage()

func (*GetHelmReleaseRequest) ProtoReflect

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

func (*GetHelmReleaseRequest) Reset

func (x *GetHelmReleaseRequest) Reset()

func (*GetHelmReleaseRequest) String

func (x *GetHelmReleaseRequest) String() string

type GetHelmReleaseResponse

type GetHelmReleaseResponse struct {
	HelmRelease *HelmRelease `protobuf:"bytes,1,opt,name=helm_release,json=helmRelease,proto3" json:"helm_release,omitempty"`
	// contains filtered or unexported fields
}

func (*GetHelmReleaseResponse) Descriptor deprecated

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

Deprecated: Use GetHelmReleaseResponse.ProtoReflect.Descriptor instead.

func (*GetHelmReleaseResponse) GetHelmRelease

func (x *GetHelmReleaseResponse) GetHelmRelease() *HelmRelease

func (*GetHelmReleaseResponse) ProtoMessage

func (*GetHelmReleaseResponse) ProtoMessage()

func (*GetHelmReleaseResponse) ProtoReflect

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

func (*GetHelmReleaseResponse) Reset

func (x *GetHelmReleaseResponse) Reset()

func (*GetHelmReleaseResponse) String

func (x *GetHelmReleaseResponse) String() string

type GetKustomizationRequest

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

func (*GetKustomizationRequest) Descriptor deprecated

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

Deprecated: Use GetKustomizationRequest.ProtoReflect.Descriptor instead.

func (*GetKustomizationRequest) GetName

func (x *GetKustomizationRequest) GetName() string

func (*GetKustomizationRequest) GetNamespace

func (x *GetKustomizationRequest) GetNamespace() string

func (*GetKustomizationRequest) ProtoMessage

func (*GetKustomizationRequest) ProtoMessage()

func (*GetKustomizationRequest) ProtoReflect

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

func (*GetKustomizationRequest) Reset

func (x *GetKustomizationRequest) Reset()

func (*GetKustomizationRequest) String

func (x *GetKustomizationRequest) String() string

type GetKustomizationResponse

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

func (*GetKustomizationResponse) Descriptor deprecated

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

Deprecated: Use GetKustomizationResponse.ProtoReflect.Descriptor instead.

func (*GetKustomizationResponse) GetKustomization

func (x *GetKustomizationResponse) GetKustomization() *Kustomization

func (*GetKustomizationResponse) ProtoMessage

func (*GetKustomizationResponse) ProtoMessage()

func (*GetKustomizationResponse) ProtoReflect

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

func (*GetKustomizationResponse) Reset

func (x *GetKustomizationResponse) Reset()

func (*GetKustomizationResponse) String

func (x *GetKustomizationResponse) String() string

type GetReconciledObjectsRequest

type GetReconciledObjectsRequest struct {
	AutomationName string              `protobuf:"bytes,1,opt,name=automationName,proto3" json:"automationName,omitempty"`
	Namespace      string              `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	AutomationKind AutomationKind      `protobuf:"varint,3,opt,name=automationKind,proto3,enum=gitops_core.v1.AutomationKind" json:"automationKind,omitempty"`
	Kinds          []*GroupVersionKind `protobuf:"bytes,4,rep,name=kinds,proto3" json:"kinds,omitempty"`
	// contains filtered or unexported fields
}

func (*GetReconciledObjectsRequest) Descriptor deprecated

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

Deprecated: Use GetReconciledObjectsRequest.ProtoReflect.Descriptor instead.

func (*GetReconciledObjectsRequest) GetAutomationKind

func (x *GetReconciledObjectsRequest) GetAutomationKind() AutomationKind

func (*GetReconciledObjectsRequest) GetAutomationName

func (x *GetReconciledObjectsRequest) GetAutomationName() string

func (*GetReconciledObjectsRequest) GetKinds

func (*GetReconciledObjectsRequest) GetNamespace

func (x *GetReconciledObjectsRequest) GetNamespace() string

func (*GetReconciledObjectsRequest) ProtoMessage

func (*GetReconciledObjectsRequest) ProtoMessage()

func (*GetReconciledObjectsRequest) ProtoReflect

func (*GetReconciledObjectsRequest) Reset

func (x *GetReconciledObjectsRequest) Reset()

func (*GetReconciledObjectsRequest) String

func (x *GetReconciledObjectsRequest) String() string

type GetReconciledObjectsResponse

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

func (*GetReconciledObjectsResponse) Descriptor deprecated

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

Deprecated: Use GetReconciledObjectsResponse.ProtoReflect.Descriptor instead.

func (*GetReconciledObjectsResponse) GetObjects

func (*GetReconciledObjectsResponse) ProtoMessage

func (*GetReconciledObjectsResponse) ProtoMessage()

func (*GetReconciledObjectsResponse) ProtoReflect

func (*GetReconciledObjectsResponse) Reset

func (x *GetReconciledObjectsResponse) Reset()

func (*GetReconciledObjectsResponse) String

type GitRepository

type GitRepository struct {
	Namespace     string            `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name          string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Url           string            `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
	Reference     *GitRepositoryRef `protobuf:"bytes,4,opt,name=reference,proto3" json:"reference,omitempty"`
	SecretRef     string            `protobuf:"bytes,5,opt,name=secretRef,proto3" json:"secretRef,omitempty"`
	Interval      *Interval         `protobuf:"bytes,6,opt,name=interval,proto3" json:"interval,omitempty"`
	Conditions    []*Condition      `protobuf:"bytes,7,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Suspended     bool              `protobuf:"varint,8,opt,name=suspended,proto3" json:"suspended,omitempty"`
	LastUpdatedAt string            `protobuf:"bytes,9,opt,name=lastUpdatedAt,proto3" json:"lastUpdatedAt,omitempty"`
	// contains filtered or unexported fields
}

func (*GitRepository) Descriptor deprecated

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

Deprecated: Use GitRepository.ProtoReflect.Descriptor instead.

func (*GitRepository) GetConditions

func (x *GitRepository) GetConditions() []*Condition

func (*GitRepository) GetInterval

func (x *GitRepository) GetInterval() *Interval

func (*GitRepository) GetLastUpdatedAt

func (x *GitRepository) GetLastUpdatedAt() string

func (*GitRepository) GetName

func (x *GitRepository) GetName() string

func (*GitRepository) GetNamespace

func (x *GitRepository) GetNamespace() string

func (*GitRepository) GetReference

func (x *GitRepository) GetReference() *GitRepositoryRef

func (*GitRepository) GetSecretRef

func (x *GitRepository) GetSecretRef() string

func (*GitRepository) GetSuspended

func (x *GitRepository) GetSuspended() bool

func (*GitRepository) GetUrl

func (x *GitRepository) GetUrl() string

func (*GitRepository) ProtoMessage

func (*GitRepository) ProtoMessage()

func (*GitRepository) ProtoReflect

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

func (*GitRepository) Reset

func (x *GitRepository) Reset()

func (*GitRepository) String

func (x *GitRepository) String() string

type GitRepositoryRef

type GitRepositoryRef struct {
	Branch string `protobuf:"bytes,1,opt,name=branch,proto3" json:"branch,omitempty"`
	Tag    string `protobuf:"bytes,2,opt,name=tag,proto3" json:"tag,omitempty"`
	Semver string `protobuf:"bytes,3,opt,name=semver,proto3" json:"semver,omitempty"`
	Commit string `protobuf:"bytes,4,opt,name=commit,proto3" json:"commit,omitempty"`
	// contains filtered or unexported fields
}

func (*GitRepositoryRef) Descriptor deprecated

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

Deprecated: Use GitRepositoryRef.ProtoReflect.Descriptor instead.

func (*GitRepositoryRef) GetBranch

func (x *GitRepositoryRef) GetBranch() string

func (*GitRepositoryRef) GetCommit

func (x *GitRepositoryRef) GetCommit() string

func (*GitRepositoryRef) GetSemver

func (x *GitRepositoryRef) GetSemver() string

func (*GitRepositoryRef) GetTag

func (x *GitRepositoryRef) GetTag() string

func (*GitRepositoryRef) ProtoMessage

func (*GitRepositoryRef) ProtoMessage()

func (*GitRepositoryRef) ProtoReflect

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

func (*GitRepositoryRef) Reset

func (x *GitRepositoryRef) Reset()

func (*GitRepositoryRef) String

func (x *GitRepositoryRef) String() string

type GroupVersionKind

type GroupVersionKind 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"`
	// contains filtered or unexported fields
}

GroupVersionKind represents an objects Kubernetes API type data

func (*GroupVersionKind) Descriptor deprecated

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

Deprecated: Use GroupVersionKind.ProtoReflect.Descriptor instead.

func (*GroupVersionKind) GetGroup

func (x *GroupVersionKind) GetGroup() string

func (*GroupVersionKind) GetKind

func (x *GroupVersionKind) GetKind() string

func (*GroupVersionKind) GetVersion

func (x *GroupVersionKind) GetVersion() string

func (*GroupVersionKind) ProtoMessage

func (*GroupVersionKind) ProtoMessage()

func (*GroupVersionKind) ProtoReflect

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

func (*GroupVersionKind) Reset

func (x *GroupVersionKind) Reset()

func (*GroupVersionKind) String

func (x *GroupVersionKind) String() string

type HelmChart

type HelmChart struct {
	Namespace     string       `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name          string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	SourceRef     *SourceRef   `protobuf:"bytes,3,opt,name=sourceRef,proto3" json:"sourceRef,omitempty"`
	Chart         string       `protobuf:"bytes,4,opt,name=chart,proto3" json:"chart,omitempty"`
	Version       string       `protobuf:"bytes,5,opt,name=version,proto3" json:"version,omitempty"`
	Interval      *Interval    `protobuf:"bytes,6,opt,name=interval,proto3" json:"interval,omitempty"`
	Conditions    []*Condition `protobuf:"bytes,7,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Suspended     bool         `protobuf:"varint,8,opt,name=suspended,proto3" json:"suspended,omitempty"`
	LastUpdatedAt string       `protobuf:"bytes,9,opt,name=lastUpdatedAt,proto3" json:"lastUpdatedAt,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmChart) Descriptor deprecated

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

Deprecated: Use HelmChart.ProtoReflect.Descriptor instead.

func (*HelmChart) GetChart

func (x *HelmChart) GetChart() string

func (*HelmChart) GetConditions

func (x *HelmChart) GetConditions() []*Condition

func (*HelmChart) GetInterval

func (x *HelmChart) GetInterval() *Interval

func (*HelmChart) GetLastUpdatedAt

func (x *HelmChart) GetLastUpdatedAt() string

func (*HelmChart) GetName

func (x *HelmChart) GetName() string

func (*HelmChart) GetNamespace

func (x *HelmChart) GetNamespace() string

func (*HelmChart) GetSourceRef

func (x *HelmChart) GetSourceRef() *SourceRef

func (*HelmChart) GetSuspended

func (x *HelmChart) GetSuspended() bool

func (*HelmChart) GetVersion

func (x *HelmChart) GetVersion() string

func (*HelmChart) ProtoMessage

func (*HelmChart) ProtoMessage()

func (*HelmChart) ProtoReflect

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

func (*HelmChart) Reset

func (x *HelmChart) Reset()

func (*HelmChart) String

func (x *HelmChart) String() string

type HelmRelease

type HelmRelease struct {
	ReleaseName   string              `protobuf:"bytes,1,opt,name=release_name,json=releaseName,proto3" json:"release_name,omitempty"`
	Namespace     string              `protobuf:"bytes,2,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name          string              `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	Interval      *Interval           `protobuf:"bytes,4,opt,name=interval,proto3" json:"interval,omitempty"`
	HelmChart     *HelmChart          `protobuf:"bytes,5,opt,name=helm_chart,json=helmChart,proto3" json:"helm_chart,omitempty"`
	Conditions    []*Condition        `protobuf:"bytes,6,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Inventory     []*GroupVersionKind `protobuf:"bytes,10,rep,name=inventory,proto3" json:"inventory,omitempty"`
	Suspended     bool                `protobuf:"varint,11,opt,name=suspended,proto3" json:"suspended,omitempty"`
	LastUpdatedAt string              `protobuf:"bytes,12,opt,name=lastUpdatedAt,proto3" json:"lastUpdatedAt,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmRelease) Descriptor deprecated

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

Deprecated: Use HelmRelease.ProtoReflect.Descriptor instead.

func (*HelmRelease) GetConditions

func (x *HelmRelease) GetConditions() []*Condition

func (*HelmRelease) GetHelmChart

func (x *HelmRelease) GetHelmChart() *HelmChart

func (*HelmRelease) GetInterval

func (x *HelmRelease) GetInterval() *Interval

func (*HelmRelease) GetInventory

func (x *HelmRelease) GetInventory() []*GroupVersionKind

func (*HelmRelease) GetLastUpdatedAt

func (x *HelmRelease) GetLastUpdatedAt() string

func (*HelmRelease) GetName

func (x *HelmRelease) GetName() string

func (*HelmRelease) GetNamespace

func (x *HelmRelease) GetNamespace() string

func (*HelmRelease) GetReleaseName

func (x *HelmRelease) GetReleaseName() string

func (*HelmRelease) GetSuspended

func (x *HelmRelease) GetSuspended() bool

func (*HelmRelease) ProtoMessage

func (*HelmRelease) ProtoMessage()

func (*HelmRelease) ProtoReflect

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

func (*HelmRelease) Reset

func (x *HelmRelease) Reset()

func (*HelmRelease) String

func (x *HelmRelease) String() string

type HelmRepository

type HelmRepository struct {
	Namespace     string       `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name          string       `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Url           string       `protobuf:"bytes,3,opt,name=url,proto3" json:"url,omitempty"`
	Interval      *Interval    `protobuf:"bytes,4,opt,name=interval,proto3" json:"interval,omitempty"`
	Conditions    []*Condition `protobuf:"bytes,5,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Suspended     bool         `protobuf:"varint,6,opt,name=suspended,proto3" json:"suspended,omitempty"`
	LastUpdatedAt string       `protobuf:"bytes,7,opt,name=lastUpdatedAt,proto3" json:"lastUpdatedAt,omitempty"`
	// contains filtered or unexported fields
}

func (*HelmRepository) Descriptor deprecated

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

Deprecated: Use HelmRepository.ProtoReflect.Descriptor instead.

func (*HelmRepository) GetConditions

func (x *HelmRepository) GetConditions() []*Condition

func (*HelmRepository) GetInterval

func (x *HelmRepository) GetInterval() *Interval

func (*HelmRepository) GetLastUpdatedAt

func (x *HelmRepository) GetLastUpdatedAt() string

func (*HelmRepository) GetName

func (x *HelmRepository) GetName() string

func (*HelmRepository) GetNamespace

func (x *HelmRepository) GetNamespace() string

func (*HelmRepository) GetSuspended

func (x *HelmRepository) GetSuspended() bool

func (*HelmRepository) GetUrl

func (x *HelmRepository) GetUrl() string

func (*HelmRepository) ProtoMessage

func (*HelmRepository) ProtoMessage()

func (*HelmRepository) ProtoReflect

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

func (*HelmRepository) Reset

func (x *HelmRepository) Reset()

func (*HelmRepository) String

func (x *HelmRepository) String() string

type Interval

type Interval struct {
	Hours   int64 `protobuf:"varint,1,opt,name=hours,proto3" json:"hours,omitempty"`
	Minutes int64 `protobuf:"varint,2,opt,name=minutes,proto3" json:"minutes,omitempty"`
	Seconds int64 `protobuf:"varint,3,opt,name=seconds,proto3" json:"seconds,omitempty"`
	// contains filtered or unexported fields
}

func (*Interval) Descriptor deprecated

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

Deprecated: Use Interval.ProtoReflect.Descriptor instead.

func (*Interval) GetHours

func (x *Interval) GetHours() int64

func (*Interval) GetMinutes

func (x *Interval) GetMinutes() int64

func (*Interval) GetSeconds

func (x *Interval) GetSeconds() int64

func (*Interval) ProtoMessage

func (*Interval) ProtoMessage()

func (*Interval) ProtoReflect

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

func (*Interval) Reset

func (x *Interval) Reset()

func (*Interval) String

func (x *Interval) String() string

type Kustomization

type Kustomization struct {
	Namespace               string              `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Name                    string              `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Path                    string              `protobuf:"bytes,3,opt,name=path,proto3" json:"path,omitempty"`
	SourceRef               *SourceRef          `protobuf:"bytes,4,opt,name=sourceRef,proto3" json:"sourceRef,omitempty"`
	Interval                *Interval           `protobuf:"bytes,5,opt,name=interval,proto3" json:"interval,omitempty"`
	Conditions              []*Condition        `protobuf:"bytes,6,rep,name=conditions,proto3" json:"conditions,omitempty"`
	LastAppliedRevision     string              `protobuf:"bytes,7,opt,name=lastAppliedRevision,proto3" json:"lastAppliedRevision,omitempty"`
	LastAttemptedRevision   string              `protobuf:"bytes,8,opt,name=lastAttemptedRevision,proto3" json:"lastAttemptedRevision,omitempty"`
	LastHandledReconciledAt string              `protobuf:"bytes,9,opt,name=lastHandledReconciledAt,proto3" json:"lastHandledReconciledAt,omitempty"`
	Inventory               []*GroupVersionKind `protobuf:"bytes,10,rep,name=inventory,proto3" json:"inventory,omitempty"`
	Suspended               bool                `protobuf:"varint,11,opt,name=suspended,proto3" json:"suspended,omitempty"`
	// contains filtered or unexported fields
}

func (*Kustomization) Descriptor deprecated

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

Deprecated: Use Kustomization.ProtoReflect.Descriptor instead.

func (*Kustomization) GetConditions

func (x *Kustomization) GetConditions() []*Condition

func (*Kustomization) GetInterval

func (x *Kustomization) GetInterval() *Interval

func (*Kustomization) GetInventory

func (x *Kustomization) GetInventory() []*GroupVersionKind

func (*Kustomization) GetLastAppliedRevision

func (x *Kustomization) GetLastAppliedRevision() string

func (*Kustomization) GetLastAttemptedRevision

func (x *Kustomization) GetLastAttemptedRevision() string

func (*Kustomization) GetLastHandledReconciledAt

func (x *Kustomization) GetLastHandledReconciledAt() string

func (*Kustomization) GetName

func (x *Kustomization) GetName() string

func (*Kustomization) GetNamespace

func (x *Kustomization) GetNamespace() string

func (*Kustomization) GetPath

func (x *Kustomization) GetPath() string

func (*Kustomization) GetSourceRef

func (x *Kustomization) GetSourceRef() *SourceRef

func (*Kustomization) GetSuspended

func (x *Kustomization) GetSuspended() bool

func (*Kustomization) ProtoMessage

func (*Kustomization) ProtoMessage()

func (*Kustomization) ProtoReflect

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

func (*Kustomization) Reset

func (x *Kustomization) Reset()

func (*Kustomization) String

func (x *Kustomization) String() string

type ListBucketRequest

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

func (*ListBucketRequest) Descriptor deprecated

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

Deprecated: Use ListBucketRequest.ProtoReflect.Descriptor instead.

func (*ListBucketRequest) GetNamespace

func (x *ListBucketRequest) GetNamespace() string

func (*ListBucketRequest) ProtoMessage

func (*ListBucketRequest) ProtoMessage()

func (*ListBucketRequest) ProtoReflect

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

func (*ListBucketRequest) Reset

func (x *ListBucketRequest) Reset()

func (*ListBucketRequest) String

func (x *ListBucketRequest) String() string

type ListBucketsResponse

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

func (*ListBucketsResponse) Descriptor deprecated

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

Deprecated: Use ListBucketsResponse.ProtoReflect.Descriptor instead.

func (*ListBucketsResponse) GetBuckets

func (x *ListBucketsResponse) GetBuckets() []*Bucket

func (*ListBucketsResponse) ProtoMessage

func (*ListBucketsResponse) ProtoMessage()

func (*ListBucketsResponse) ProtoReflect

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

func (*ListBucketsResponse) Reset

func (x *ListBucketsResponse) Reset()

func (*ListBucketsResponse) String

func (x *ListBucketsResponse) String() string

type ListFluxEventsRequest

type ListFluxEventsRequest struct {
	Namespace      string           `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	InvolvedObject *ObjectReference `protobuf:"bytes,2,opt,name=involvedObject,proto3" json:"involvedObject,omitempty"`
	// contains filtered or unexported fields
}

func (*ListFluxEventsRequest) Descriptor deprecated

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

Deprecated: Use ListFluxEventsRequest.ProtoReflect.Descriptor instead.

func (*ListFluxEventsRequest) GetInvolvedObject

func (x *ListFluxEventsRequest) GetInvolvedObject() *ObjectReference

func (*ListFluxEventsRequest) GetNamespace

func (x *ListFluxEventsRequest) GetNamespace() string

func (*ListFluxEventsRequest) ProtoMessage

func (*ListFluxEventsRequest) ProtoMessage()

func (*ListFluxEventsRequest) ProtoReflect

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

func (*ListFluxEventsRequest) Reset

func (x *ListFluxEventsRequest) Reset()

func (*ListFluxEventsRequest) String

func (x *ListFluxEventsRequest) String() string

type ListFluxEventsResponse

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

func (*ListFluxEventsResponse) Descriptor deprecated

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

Deprecated: Use ListFluxEventsResponse.ProtoReflect.Descriptor instead.

func (*ListFluxEventsResponse) GetEvents

func (x *ListFluxEventsResponse) GetEvents() []*Event

func (*ListFluxEventsResponse) ProtoMessage

func (*ListFluxEventsResponse) ProtoMessage()

func (*ListFluxEventsResponse) ProtoReflect

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

func (*ListFluxEventsResponse) Reset

func (x *ListFluxEventsResponse) Reset()

func (*ListFluxEventsResponse) String

func (x *ListFluxEventsResponse) String() string

type ListFluxRuntimeObjectsRequest

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

func (*ListFluxRuntimeObjectsRequest) Descriptor deprecated

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

Deprecated: Use ListFluxRuntimeObjectsRequest.ProtoReflect.Descriptor instead.

func (*ListFluxRuntimeObjectsRequest) GetNamespace

func (x *ListFluxRuntimeObjectsRequest) GetNamespace() string

func (*ListFluxRuntimeObjectsRequest) ProtoMessage

func (*ListFluxRuntimeObjectsRequest) ProtoMessage()

func (*ListFluxRuntimeObjectsRequest) ProtoReflect

func (*ListFluxRuntimeObjectsRequest) Reset

func (x *ListFluxRuntimeObjectsRequest) Reset()

func (*ListFluxRuntimeObjectsRequest) String

type ListFluxRuntimeObjectsResponse

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

func (*ListFluxRuntimeObjectsResponse) Descriptor deprecated

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

Deprecated: Use ListFluxRuntimeObjectsResponse.ProtoReflect.Descriptor instead.

func (*ListFluxRuntimeObjectsResponse) GetDeployments

func (x *ListFluxRuntimeObjectsResponse) GetDeployments() []*Deployment

func (*ListFluxRuntimeObjectsResponse) ProtoMessage

func (*ListFluxRuntimeObjectsResponse) ProtoMessage()

func (*ListFluxRuntimeObjectsResponse) ProtoReflect

func (*ListFluxRuntimeObjectsResponse) Reset

func (x *ListFluxRuntimeObjectsResponse) Reset()

func (*ListFluxRuntimeObjectsResponse) String

type ListGitRepositoriesRequest

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

func (*ListGitRepositoriesRequest) Descriptor deprecated

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

Deprecated: Use ListGitRepositoriesRequest.ProtoReflect.Descriptor instead.

func (*ListGitRepositoriesRequest) GetNamespace

func (x *ListGitRepositoriesRequest) GetNamespace() string

func (*ListGitRepositoriesRequest) ProtoMessage

func (*ListGitRepositoriesRequest) ProtoMessage()

func (*ListGitRepositoriesRequest) ProtoReflect

func (*ListGitRepositoriesRequest) Reset

func (x *ListGitRepositoriesRequest) Reset()

func (*ListGitRepositoriesRequest) String

func (x *ListGitRepositoriesRequest) String() string

type ListGitRepositoriesResponse

type ListGitRepositoriesResponse struct {
	GitRepositories []*GitRepository `protobuf:"bytes,1,rep,name=git_repositories,json=gitRepositories,proto3" json:"git_repositories,omitempty"`
	// contains filtered or unexported fields
}

func (*ListGitRepositoriesResponse) Descriptor deprecated

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

Deprecated: Use ListGitRepositoriesResponse.ProtoReflect.Descriptor instead.

func (*ListGitRepositoriesResponse) GetGitRepositories

func (x *ListGitRepositoriesResponse) GetGitRepositories() []*GitRepository

func (*ListGitRepositoriesResponse) ProtoMessage

func (*ListGitRepositoriesResponse) ProtoMessage()

func (*ListGitRepositoriesResponse) ProtoReflect

func (*ListGitRepositoriesResponse) Reset

func (x *ListGitRepositoriesResponse) Reset()

func (*ListGitRepositoriesResponse) String

func (x *ListGitRepositoriesResponse) String() string

type ListHelmChartsRequest

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

func (*ListHelmChartsRequest) Descriptor deprecated

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

Deprecated: Use ListHelmChartsRequest.ProtoReflect.Descriptor instead.

func (*ListHelmChartsRequest) GetNamespace

func (x *ListHelmChartsRequest) GetNamespace() string

func (*ListHelmChartsRequest) ProtoMessage

func (*ListHelmChartsRequest) ProtoMessage()

func (*ListHelmChartsRequest) ProtoReflect

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

func (*ListHelmChartsRequest) Reset

func (x *ListHelmChartsRequest) Reset()

func (*ListHelmChartsRequest) String

func (x *ListHelmChartsRequest) String() string

type ListHelmChartsResponse

type ListHelmChartsResponse struct {
	HelmCharts []*HelmChart `protobuf:"bytes,1,rep,name=helm_charts,json=helmCharts,proto3" json:"helm_charts,omitempty"`
	// contains filtered or unexported fields
}

func (*ListHelmChartsResponse) Descriptor deprecated

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

Deprecated: Use ListHelmChartsResponse.ProtoReflect.Descriptor instead.

func (*ListHelmChartsResponse) GetHelmCharts

func (x *ListHelmChartsResponse) GetHelmCharts() []*HelmChart

func (*ListHelmChartsResponse) ProtoMessage

func (*ListHelmChartsResponse) ProtoMessage()

func (*ListHelmChartsResponse) ProtoReflect

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

func (*ListHelmChartsResponse) Reset

func (x *ListHelmChartsResponse) Reset()

func (*ListHelmChartsResponse) String

func (x *ListHelmChartsResponse) String() string

type ListHelmReleasesRequest

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

func (*ListHelmReleasesRequest) Descriptor deprecated

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

Deprecated: Use ListHelmReleasesRequest.ProtoReflect.Descriptor instead.

func (*ListHelmReleasesRequest) GetNamespace

func (x *ListHelmReleasesRequest) GetNamespace() string

func (*ListHelmReleasesRequest) ProtoMessage

func (*ListHelmReleasesRequest) ProtoMessage()

func (*ListHelmReleasesRequest) ProtoReflect

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

func (*ListHelmReleasesRequest) Reset

func (x *ListHelmReleasesRequest) Reset()

func (*ListHelmReleasesRequest) String

func (x *ListHelmReleasesRequest) String() string

type ListHelmReleasesResponse

type ListHelmReleasesResponse struct {
	HelmReleases []*HelmRelease `protobuf:"bytes,1,rep,name=helm_releases,json=helmReleases,proto3" json:"helm_releases,omitempty"`
	// contains filtered or unexported fields
}

func (*ListHelmReleasesResponse) Descriptor deprecated

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

Deprecated: Use ListHelmReleasesResponse.ProtoReflect.Descriptor instead.

func (*ListHelmReleasesResponse) GetHelmReleases

func (x *ListHelmReleasesResponse) GetHelmReleases() []*HelmRelease

func (*ListHelmReleasesResponse) ProtoMessage

func (*ListHelmReleasesResponse) ProtoMessage()

func (*ListHelmReleasesResponse) ProtoReflect

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

func (*ListHelmReleasesResponse) Reset

func (x *ListHelmReleasesResponse) Reset()

func (*ListHelmReleasesResponse) String

func (x *ListHelmReleasesResponse) String() string

type ListHelmRepositoriesRequest

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

func (*ListHelmRepositoriesRequest) Descriptor deprecated

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

Deprecated: Use ListHelmRepositoriesRequest.ProtoReflect.Descriptor instead.

func (*ListHelmRepositoriesRequest) GetNamespace

func (x *ListHelmRepositoriesRequest) GetNamespace() string

func (*ListHelmRepositoriesRequest) ProtoMessage

func (*ListHelmRepositoriesRequest) ProtoMessage()

func (*ListHelmRepositoriesRequest) ProtoReflect

func (*ListHelmRepositoriesRequest) Reset

func (x *ListHelmRepositoriesRequest) Reset()

func (*ListHelmRepositoriesRequest) String

func (x *ListHelmRepositoriesRequest) String() string

type ListHelmRepositoriesResponse

type ListHelmRepositoriesResponse struct {
	HelmRepositories []*HelmRepository `protobuf:"bytes,1,rep,name=helm_repositories,json=helmRepositories,proto3" json:"helm_repositories,omitempty"`
	// contains filtered or unexported fields
}

func (*ListHelmRepositoriesResponse) Descriptor deprecated

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

Deprecated: Use ListHelmRepositoriesResponse.ProtoReflect.Descriptor instead.

func (*ListHelmRepositoriesResponse) GetHelmRepositories

func (x *ListHelmRepositoriesResponse) GetHelmRepositories() []*HelmRepository

func (*ListHelmRepositoriesResponse) ProtoMessage

func (*ListHelmRepositoriesResponse) ProtoMessage()

func (*ListHelmRepositoriesResponse) ProtoReflect

func (*ListHelmRepositoriesResponse) Reset

func (x *ListHelmRepositoriesResponse) Reset()

func (*ListHelmRepositoriesResponse) String

type ListKustomizationsRequest

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

func (*ListKustomizationsRequest) Descriptor deprecated

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

Deprecated: Use ListKustomizationsRequest.ProtoReflect.Descriptor instead.

func (*ListKustomizationsRequest) GetNamespace

func (x *ListKustomizationsRequest) GetNamespace() string

func (*ListKustomizationsRequest) ProtoMessage

func (*ListKustomizationsRequest) ProtoMessage()

func (*ListKustomizationsRequest) ProtoReflect

func (*ListKustomizationsRequest) Reset

func (x *ListKustomizationsRequest) Reset()

func (*ListKustomizationsRequest) String

func (x *ListKustomizationsRequest) String() string

type ListKustomizationsResponse

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

func (*ListKustomizationsResponse) Descriptor deprecated

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

Deprecated: Use ListKustomizationsResponse.ProtoReflect.Descriptor instead.

func (*ListKustomizationsResponse) GetKustomizations

func (x *ListKustomizationsResponse) GetKustomizations() []*Kustomization

func (*ListKustomizationsResponse) ProtoMessage

func (*ListKustomizationsResponse) ProtoMessage()

func (*ListKustomizationsResponse) ProtoReflect

func (*ListKustomizationsResponse) Reset

func (x *ListKustomizationsResponse) Reset()

func (*ListKustomizationsResponse) String

func (x *ListKustomizationsResponse) String() string

type ListNamespacesRequest

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

func (*ListNamespacesRequest) Descriptor deprecated

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

Deprecated: Use ListNamespacesRequest.ProtoReflect.Descriptor instead.

func (*ListNamespacesRequest) ProtoMessage

func (*ListNamespacesRequest) ProtoMessage()

func (*ListNamespacesRequest) ProtoReflect

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

func (*ListNamespacesRequest) Reset

func (x *ListNamespacesRequest) Reset()

func (*ListNamespacesRequest) String

func (x *ListNamespacesRequest) String() string

type ListNamespacesResponse

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

func (*ListNamespacesResponse) Descriptor deprecated

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

Deprecated: Use ListNamespacesResponse.ProtoReflect.Descriptor instead.

func (*ListNamespacesResponse) GetNamespaces

func (x *ListNamespacesResponse) GetNamespaces() []*Namespace

func (*ListNamespacesResponse) ProtoMessage

func (*ListNamespacesResponse) ProtoMessage()

func (*ListNamespacesResponse) ProtoReflect

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

func (*ListNamespacesResponse) Reset

func (x *ListNamespacesResponse) Reset()

func (*ListNamespacesResponse) String

func (x *ListNamespacesResponse) String() string

type Namespace

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

func (*Namespace) Descriptor deprecated

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

Deprecated: Use Namespace.ProtoReflect.Descriptor instead.

func (*Namespace) GetAnnotations

func (x *Namespace) GetAnnotations() map[string]string

func (*Namespace) GetLabels

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

func (*Namespace) GetName

func (x *Namespace) GetName() string

func (*Namespace) GetStatus

func (x *Namespace) GetStatus() string

func (*Namespace) ProtoMessage

func (*Namespace) ProtoMessage()

func (*Namespace) ProtoReflect

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

func (*Namespace) Reset

func (x *Namespace) Reset()

func (*Namespace) String

func (x *Namespace) String() string

type ObjectReference

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

func (*ObjectReference) Descriptor deprecated

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

Deprecated: Use ObjectReference.ProtoReflect.Descriptor instead.

func (*ObjectReference) GetKind

func (x *ObjectReference) GetKind() string

func (*ObjectReference) GetName

func (x *ObjectReference) GetName() string

func (*ObjectReference) GetNamespace

func (x *ObjectReference) GetNamespace() string

func (*ObjectReference) ProtoMessage

func (*ObjectReference) ProtoMessage()

func (*ObjectReference) ProtoReflect

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

func (*ObjectReference) Reset

func (x *ObjectReference) Reset()

func (*ObjectReference) String

func (x *ObjectReference) String() string

type SourceRef

type SourceRef struct {
	Kind SourceRef_SourceKind `protobuf:"varint,1,opt,name=kind,proto3,enum=gitops_core.v1.SourceRef_SourceKind" json:"kind,omitempty"`
	Name string               `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*SourceRef) Descriptor deprecated

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

Deprecated: Use SourceRef.ProtoReflect.Descriptor instead.

func (*SourceRef) GetKind

func (x *SourceRef) GetKind() SourceRef_SourceKind

func (*SourceRef) GetName

func (x *SourceRef) GetName() string

func (*SourceRef) ProtoMessage

func (*SourceRef) ProtoMessage()

func (*SourceRef) ProtoReflect

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

func (*SourceRef) Reset

func (x *SourceRef) Reset()

func (*SourceRef) String

func (x *SourceRef) String() string

type SourceRef_SourceKind

type SourceRef_SourceKind int32
const (
	SourceRef_GitRepository  SourceRef_SourceKind = 0
	SourceRef_Bucket         SourceRef_SourceKind = 1
	SourceRef_HelmRepository SourceRef_SourceKind = 2
	SourceRef_HelmChart      SourceRef_SourceKind = 3
)

func (SourceRef_SourceKind) Descriptor

func (SourceRef_SourceKind) Enum

func (SourceRef_SourceKind) EnumDescriptor deprecated

func (SourceRef_SourceKind) EnumDescriptor() ([]byte, []int)

Deprecated: Use SourceRef_SourceKind.Descriptor instead.

func (SourceRef_SourceKind) Number

func (SourceRef_SourceKind) String

func (x SourceRef_SourceKind) String() string

func (SourceRef_SourceKind) Type

type UnimplementedCoreServer

type UnimplementedCoreServer struct {
}

UnimplementedCoreServer must be embedded to have forward compatible implementations.

func (UnimplementedCoreServer) GetChildObjects

func (UnimplementedCoreServer) GetHelmRelease

func (UnimplementedCoreServer) ListBuckets

func (UnimplementedCoreServer) ListFluxEvents

func (UnimplementedCoreServer) ListHelmCharts

func (UnimplementedCoreServer) ListNamespaces

type UnsafeCoreServer

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

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

type UnstructuredObject

type UnstructuredObject struct {
	GroupVersionKind *GroupVersionKind `protobuf:"bytes,1,opt,name=groupVersionKind,proto3" json:"groupVersionKind,omitempty"`
	Name             string            `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Namespace        string            `protobuf:"bytes,3,opt,name=namespace,proto3" json:"namespace,omitempty"`
	Uid              string            `protobuf:"bytes,4,opt,name=uid,proto3" json:"uid,omitempty"`
	Status           string            `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
	Conditions       []*Condition      `protobuf:"bytes,6,rep,name=conditions,proto3" json:"conditions,omitempty"`
	Suspended        bool              `protobuf:"varint,7,opt,name=suspended,proto3" json:"suspended,omitempty"`
	// contains filtered or unexported fields
}

UnstructuredObject is a Kubernetes object of an unknown type

func (*UnstructuredObject) Descriptor deprecated

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

Deprecated: Use UnstructuredObject.ProtoReflect.Descriptor instead.

func (*UnstructuredObject) GetConditions

func (x *UnstructuredObject) GetConditions() []*Condition

func (*UnstructuredObject) GetGroupVersionKind

func (x *UnstructuredObject) GetGroupVersionKind() *GroupVersionKind

func (*UnstructuredObject) GetName

func (x *UnstructuredObject) GetName() string

func (*UnstructuredObject) GetNamespace

func (x *UnstructuredObject) GetNamespace() string

func (*UnstructuredObject) GetStatus

func (x *UnstructuredObject) GetStatus() string

func (*UnstructuredObject) GetSuspended

func (x *UnstructuredObject) GetSuspended() bool

func (*UnstructuredObject) GetUid

func (x *UnstructuredObject) GetUid() string

func (*UnstructuredObject) ProtoMessage

func (*UnstructuredObject) ProtoMessage()

func (*UnstructuredObject) ProtoReflect

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

func (*UnstructuredObject) Reset

func (x *UnstructuredObject) Reset()

func (*UnstructuredObject) String

func (x *UnstructuredObject) String() string

Jump to

Keyboard shortcuts

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