зеркало из https://github.com/microsoft/moc.git
957 строки
36 KiB
Go
957 строки
36 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: moc_cloudagent_kubernetes.proto
|
|
|
|
package cloud
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
wrappers "github.com/golang/protobuf/ptypes/wrappers"
|
|
common "github.com/microsoft/moc/rpc/common"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type NodeType int32
|
|
|
|
const (
|
|
NodeType_ControlPlane NodeType = 0
|
|
NodeType_LinuxWorker NodeType = 1
|
|
NodeType_WindowsWorker NodeType = 2
|
|
NodeType_LoadBalancer NodeType = 3
|
|
)
|
|
|
|
var NodeType_name = map[int32]string{
|
|
0: "ControlPlane",
|
|
1: "LinuxWorker",
|
|
2: "WindowsWorker",
|
|
3: "LoadBalancer",
|
|
}
|
|
|
|
var NodeType_value = map[string]int32{
|
|
"ControlPlane": 0,
|
|
"LinuxWorker": 1,
|
|
"WindowsWorker": 2,
|
|
"LoadBalancer": 3,
|
|
}
|
|
|
|
func (x NodeType) String() string {
|
|
return proto.EnumName(NodeType_name, int32(x))
|
|
}
|
|
|
|
func (NodeType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{0}
|
|
}
|
|
|
|
type ManagementStrategyType int32
|
|
|
|
const (
|
|
ManagementStrategyType_Pivoted ManagementStrategyType = 0
|
|
ManagementStrategyType_Distinct ManagementStrategyType = 1
|
|
)
|
|
|
|
var ManagementStrategyType_name = map[int32]string{
|
|
0: "Pivoted",
|
|
1: "Distinct",
|
|
}
|
|
|
|
var ManagementStrategyType_value = map[string]int32{
|
|
"Pivoted": 0,
|
|
"Distinct": 1,
|
|
}
|
|
|
|
func (x ManagementStrategyType) String() string {
|
|
return proto.EnumName(ManagementStrategyType_name, int32(x))
|
|
}
|
|
|
|
func (ManagementStrategyType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{1}
|
|
}
|
|
|
|
type KubernetesRequest struct {
|
|
Kubernetess []*Kubernetes `protobuf:"bytes,1,rep,name=Kubernetess,proto3" json:"Kubernetess,omitempty"`
|
|
OperationType common.Operation `protobuf:"varint,2,opt,name=OperationType,proto3,enum=moc.Operation" json:"OperationType,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *KubernetesRequest) Reset() { *m = KubernetesRequest{} }
|
|
func (m *KubernetesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*KubernetesRequest) ProtoMessage() {}
|
|
func (*KubernetesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{0}
|
|
}
|
|
|
|
func (m *KubernetesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_KubernetesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *KubernetesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_KubernetesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *KubernetesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_KubernetesRequest.Merge(m, src)
|
|
}
|
|
func (m *KubernetesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_KubernetesRequest.Size(m)
|
|
}
|
|
func (m *KubernetesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_KubernetesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_KubernetesRequest proto.InternalMessageInfo
|
|
|
|
func (m *KubernetesRequest) GetKubernetess() []*Kubernetes {
|
|
if m != nil {
|
|
return m.Kubernetess
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KubernetesRequest) GetOperationType() common.Operation {
|
|
if m != nil {
|
|
return m.OperationType
|
|
}
|
|
return common.Operation_GET
|
|
}
|
|
|
|
type KubernetesResponse struct {
|
|
Kubernetess []*Kubernetes `protobuf:"bytes,1,rep,name=Kubernetess,proto3" json:"Kubernetess,omitempty"`
|
|
Result *wrappers.BoolValue `protobuf:"bytes,2,opt,name=Result,proto3" json:"Result,omitempty"`
|
|
Error string `protobuf:"bytes,3,opt,name=Error,proto3" json:"Error,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *KubernetesResponse) Reset() { *m = KubernetesResponse{} }
|
|
func (m *KubernetesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*KubernetesResponse) ProtoMessage() {}
|
|
func (*KubernetesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{1}
|
|
}
|
|
|
|
func (m *KubernetesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_KubernetesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *KubernetesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_KubernetesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *KubernetesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_KubernetesResponse.Merge(m, src)
|
|
}
|
|
func (m *KubernetesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_KubernetesResponse.Size(m)
|
|
}
|
|
func (m *KubernetesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_KubernetesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_KubernetesResponse proto.InternalMessageInfo
|
|
|
|
func (m *KubernetesResponse) GetKubernetess() []*Kubernetes {
|
|
if m != nil {
|
|
return m.Kubernetess
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KubernetesResponse) GetResult() *wrappers.BoolValue {
|
|
if m != nil {
|
|
return m.Result
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *KubernetesResponse) GetError() string {
|
|
if m != nil {
|
|
return m.Error
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type StorageConfiguration struct {
|
|
Csi string `protobuf:"bytes,1,opt,name=csi,proto3" json:"csi,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *StorageConfiguration) Reset() { *m = StorageConfiguration{} }
|
|
func (m *StorageConfiguration) String() string { return proto.CompactTextString(m) }
|
|
func (*StorageConfiguration) ProtoMessage() {}
|
|
func (*StorageConfiguration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{2}
|
|
}
|
|
|
|
func (m *StorageConfiguration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_StorageConfiguration.Unmarshal(m, b)
|
|
}
|
|
func (m *StorageConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_StorageConfiguration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *StorageConfiguration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_StorageConfiguration.Merge(m, src)
|
|
}
|
|
func (m *StorageConfiguration) XXX_Size() int {
|
|
return xxx_messageInfo_StorageConfiguration.Size(m)
|
|
}
|
|
func (m *StorageConfiguration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_StorageConfiguration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_StorageConfiguration proto.InternalMessageInfo
|
|
|
|
func (m *StorageConfiguration) GetCsi() string {
|
|
if m != nil {
|
|
return m.Csi
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type NetworkConfiguration struct {
|
|
Cni string `protobuf:"bytes,1,opt,name=cni,proto3" json:"cni,omitempty"`
|
|
PodCidr string `protobuf:"bytes,2,opt,name=podCidr,proto3" json:"podCidr,omitempty"`
|
|
ClusterCidr string `protobuf:"bytes,3,opt,name=clusterCidr,proto3" json:"clusterCidr,omitempty"`
|
|
// TODO: merge controlplane cidr and network
|
|
ControlPlaneCidr string `protobuf:"bytes,4,opt,name=controlPlaneCidr,proto3" json:"controlPlaneCidr,omitempty"`
|
|
Virtualnetwork string `protobuf:"bytes,5,opt,name=virtualnetwork,proto3" json:"virtualnetwork,omitempty"`
|
|
LoadBalancerVip string `protobuf:"bytes,6,opt,name=loadBalancerVip,proto3" json:"loadBalancerVip,omitempty"`
|
|
LoadBalancerMac string `protobuf:"bytes,7,opt,name=loadBalancerMac,proto3" json:"loadBalancerMac,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NetworkConfiguration) Reset() { *m = NetworkConfiguration{} }
|
|
func (m *NetworkConfiguration) String() string { return proto.CompactTextString(m) }
|
|
func (*NetworkConfiguration) ProtoMessage() {}
|
|
func (*NetworkConfiguration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{3}
|
|
}
|
|
|
|
func (m *NetworkConfiguration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NetworkConfiguration.Unmarshal(m, b)
|
|
}
|
|
func (m *NetworkConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NetworkConfiguration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NetworkConfiguration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NetworkConfiguration.Merge(m, src)
|
|
}
|
|
func (m *NetworkConfiguration) XXX_Size() int {
|
|
return xxx_messageInfo_NetworkConfiguration.Size(m)
|
|
}
|
|
func (m *NetworkConfiguration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NetworkConfiguration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NetworkConfiguration proto.InternalMessageInfo
|
|
|
|
func (m *NetworkConfiguration) GetCni() string {
|
|
if m != nil {
|
|
return m.Cni
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NetworkConfiguration) GetPodCidr() string {
|
|
if m != nil {
|
|
return m.PodCidr
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NetworkConfiguration) GetClusterCidr() string {
|
|
if m != nil {
|
|
return m.ClusterCidr
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NetworkConfiguration) GetControlPlaneCidr() string {
|
|
if m != nil {
|
|
return m.ControlPlaneCidr
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NetworkConfiguration) GetVirtualnetwork() string {
|
|
if m != nil {
|
|
return m.Virtualnetwork
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NetworkConfiguration) GetLoadBalancerVip() string {
|
|
if m != nil {
|
|
return m.LoadBalancerVip
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NetworkConfiguration) GetLoadBalancerMac() string {
|
|
if m != nil {
|
|
return m.LoadBalancerMac
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type NodePoolConfiguration struct {
|
|
NodeType NodeType `protobuf:"varint,1,opt,name=NodeType,proto3,enum=moc.cloudagent.kubernetes.NodeType" json:"NodeType,omitempty"`
|
|
Imagereference string `protobuf:"bytes,2,opt,name=imagereference,proto3" json:"imagereference,omitempty"`
|
|
Replicas int32 `protobuf:"varint,3,opt,name=replicas,proto3" json:"replicas,omitempty"`
|
|
VMSize string `protobuf:"bytes,4,opt,name=VMSize,proto3" json:"VMSize,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NodePoolConfiguration) Reset() { *m = NodePoolConfiguration{} }
|
|
func (m *NodePoolConfiguration) String() string { return proto.CompactTextString(m) }
|
|
func (*NodePoolConfiguration) ProtoMessage() {}
|
|
func (*NodePoolConfiguration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{4}
|
|
}
|
|
|
|
func (m *NodePoolConfiguration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NodePoolConfiguration.Unmarshal(m, b)
|
|
}
|
|
func (m *NodePoolConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NodePoolConfiguration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NodePoolConfiguration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NodePoolConfiguration.Merge(m, src)
|
|
}
|
|
func (m *NodePoolConfiguration) XXX_Size() int {
|
|
return xxx_messageInfo_NodePoolConfiguration.Size(m)
|
|
}
|
|
func (m *NodePoolConfiguration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NodePoolConfiguration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NodePoolConfiguration proto.InternalMessageInfo
|
|
|
|
func (m *NodePoolConfiguration) GetNodeType() NodeType {
|
|
if m != nil {
|
|
return m.NodeType
|
|
}
|
|
return NodeType_ControlPlane
|
|
}
|
|
|
|
func (m *NodePoolConfiguration) GetImagereference() string {
|
|
if m != nil {
|
|
return m.Imagereference
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *NodePoolConfiguration) GetReplicas() int32 {
|
|
if m != nil {
|
|
return m.Replicas
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *NodePoolConfiguration) GetVMSize() string {
|
|
if m != nil {
|
|
return m.VMSize
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type SSHPublicKey struct {
|
|
KeyData string `protobuf:"bytes,1,opt,name=keyData,proto3" json:"keyData,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SSHPublicKey) Reset() { *m = SSHPublicKey{} }
|
|
func (m *SSHPublicKey) String() string { return proto.CompactTextString(m) }
|
|
func (*SSHPublicKey) ProtoMessage() {}
|
|
func (*SSHPublicKey) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{5}
|
|
}
|
|
|
|
func (m *SSHPublicKey) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SSHPublicKey.Unmarshal(m, b)
|
|
}
|
|
func (m *SSHPublicKey) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SSHPublicKey.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SSHPublicKey) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SSHPublicKey.Merge(m, src)
|
|
}
|
|
func (m *SSHPublicKey) XXX_Size() int {
|
|
return xxx_messageInfo_SSHPublicKey.Size(m)
|
|
}
|
|
func (m *SSHPublicKey) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SSHPublicKey.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SSHPublicKey proto.InternalMessageInfo
|
|
|
|
func (m *SSHPublicKey) GetKeyData() string {
|
|
if m != nil {
|
|
return m.KeyData
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ComputeConfiguration struct {
|
|
Cri string `protobuf:"bytes,1,opt,name=cri,proto3" json:"cri,omitempty"`
|
|
PublicKey *SSHPublicKey `protobuf:"bytes,2,opt,name=publicKey,proto3" json:"publicKey,omitempty"`
|
|
NodePools []*NodePoolConfiguration `protobuf:"bytes,3,rep,name=NodePools,proto3" json:"NodePools,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ComputeConfiguration) Reset() { *m = ComputeConfiguration{} }
|
|
func (m *ComputeConfiguration) String() string { return proto.CompactTextString(m) }
|
|
func (*ComputeConfiguration) ProtoMessage() {}
|
|
func (*ComputeConfiguration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{6}
|
|
}
|
|
|
|
func (m *ComputeConfiguration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ComputeConfiguration.Unmarshal(m, b)
|
|
}
|
|
func (m *ComputeConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ComputeConfiguration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ComputeConfiguration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ComputeConfiguration.Merge(m, src)
|
|
}
|
|
func (m *ComputeConfiguration) XXX_Size() int {
|
|
return xxx_messageInfo_ComputeConfiguration.Size(m)
|
|
}
|
|
func (m *ComputeConfiguration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ComputeConfiguration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ComputeConfiguration proto.InternalMessageInfo
|
|
|
|
func (m *ComputeConfiguration) GetCri() string {
|
|
if m != nil {
|
|
return m.Cri
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ComputeConfiguration) GetPublicKey() *SSHPublicKey {
|
|
if m != nil {
|
|
return m.PublicKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ComputeConfiguration) GetNodePools() []*NodePoolConfiguration {
|
|
if m != nil {
|
|
return m.NodePools
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ClusterConfiguration struct {
|
|
Version string `protobuf:"bytes,1,opt,name=version,proto3" json:"version,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ClusterConfiguration) Reset() { *m = ClusterConfiguration{} }
|
|
func (m *ClusterConfiguration) String() string { return proto.CompactTextString(m) }
|
|
func (*ClusterConfiguration) ProtoMessage() {}
|
|
func (*ClusterConfiguration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{7}
|
|
}
|
|
|
|
func (m *ClusterConfiguration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ClusterConfiguration.Unmarshal(m, b)
|
|
}
|
|
func (m *ClusterConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ClusterConfiguration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ClusterConfiguration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ClusterConfiguration.Merge(m, src)
|
|
}
|
|
func (m *ClusterConfiguration) XXX_Size() int {
|
|
return xxx_messageInfo_ClusterConfiguration.Size(m)
|
|
}
|
|
func (m *ClusterConfiguration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ClusterConfiguration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ClusterConfiguration proto.InternalMessageInfo
|
|
|
|
func (m *ClusterConfiguration) GetVersion() string {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ClusterAPIConfiguration struct {
|
|
ConfigurationEndpoint string `protobuf:"bytes,1,opt,name=ConfigurationEndpoint,proto3" json:"ConfigurationEndpoint,omitempty"`
|
|
InfrastructureProviderVersion string `protobuf:"bytes,2,opt,name=InfrastructureProviderVersion,proto3" json:"InfrastructureProviderVersion,omitempty"`
|
|
BootstrapProviderVersion string `protobuf:"bytes,3,opt,name=BootstrapProviderVersion,proto3" json:"BootstrapProviderVersion,omitempty"`
|
|
ControlPlaneProviderVersion string `protobuf:"bytes,4,opt,name=ControlPlaneProviderVersion,proto3" json:"ControlPlaneProviderVersion,omitempty"`
|
|
CoreProviderVersion string `protobuf:"bytes,5,opt,name=CoreProviderVersion,proto3" json:"CoreProviderVersion,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ClusterAPIConfiguration) Reset() { *m = ClusterAPIConfiguration{} }
|
|
func (m *ClusterAPIConfiguration) String() string { return proto.CompactTextString(m) }
|
|
func (*ClusterAPIConfiguration) ProtoMessage() {}
|
|
func (*ClusterAPIConfiguration) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{8}
|
|
}
|
|
|
|
func (m *ClusterAPIConfiguration) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ClusterAPIConfiguration.Unmarshal(m, b)
|
|
}
|
|
func (m *ClusterAPIConfiguration) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ClusterAPIConfiguration.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ClusterAPIConfiguration) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ClusterAPIConfiguration.Merge(m, src)
|
|
}
|
|
func (m *ClusterAPIConfiguration) XXX_Size() int {
|
|
return xxx_messageInfo_ClusterAPIConfiguration.Size(m)
|
|
}
|
|
func (m *ClusterAPIConfiguration) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ClusterAPIConfiguration.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ClusterAPIConfiguration proto.InternalMessageInfo
|
|
|
|
func (m *ClusterAPIConfiguration) GetConfigurationEndpoint() string {
|
|
if m != nil {
|
|
return m.ConfigurationEndpoint
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ClusterAPIConfiguration) GetInfrastructureProviderVersion() string {
|
|
if m != nil {
|
|
return m.InfrastructureProviderVersion
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ClusterAPIConfiguration) GetBootstrapProviderVersion() string {
|
|
if m != nil {
|
|
return m.BootstrapProviderVersion
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ClusterAPIConfiguration) GetControlPlaneProviderVersion() string {
|
|
if m != nil {
|
|
return m.ControlPlaneProviderVersion
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ClusterAPIConfiguration) GetCoreProviderVersion() string {
|
|
if m != nil {
|
|
return m.CoreProviderVersion
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type ContainerRegistry struct {
|
|
Name string `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ContainerRegistry) Reset() { *m = ContainerRegistry{} }
|
|
func (m *ContainerRegistry) String() string { return proto.CompactTextString(m) }
|
|
func (*ContainerRegistry) ProtoMessage() {}
|
|
func (*ContainerRegistry) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{9}
|
|
}
|
|
|
|
func (m *ContainerRegistry) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ContainerRegistry.Unmarshal(m, b)
|
|
}
|
|
func (m *ContainerRegistry) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ContainerRegistry.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ContainerRegistry) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ContainerRegistry.Merge(m, src)
|
|
}
|
|
func (m *ContainerRegistry) XXX_Size() int {
|
|
return xxx_messageInfo_ContainerRegistry.Size(m)
|
|
}
|
|
func (m *ContainerRegistry) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ContainerRegistry.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ContainerRegistry proto.InternalMessageInfo
|
|
|
|
func (m *ContainerRegistry) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ContainerRegistry) GetUsername() string {
|
|
if m != nil {
|
|
return m.Username
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ContainerRegistry) GetPassword() string {
|
|
if m != nil {
|
|
return m.Password
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Kubernetes struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
Id string `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
|
|
Status *common.Status `protobuf:"bytes,4,opt,name=status,proto3" json:"status,omitempty"`
|
|
Cluster *ClusterConfiguration `protobuf:"bytes,5,opt,name=cluster,proto3" json:"cluster,omitempty"`
|
|
Network *NetworkConfiguration `protobuf:"bytes,6,opt,name=network,proto3" json:"network,omitempty"`
|
|
Storage *StorageConfiguration `protobuf:"bytes,7,opt,name=storage,proto3" json:"storage,omitempty"`
|
|
Compute *ComputeConfiguration `protobuf:"bytes,8,opt,name=compute,proto3" json:"compute,omitempty"`
|
|
GroupName string `protobuf:"bytes,9,opt,name=groupName,proto3" json:"groupName,omitempty"`
|
|
ManagementStrategy ManagementStrategyType `protobuf:"varint,10,opt,name=managementStrategy,proto3,enum=moc.cloudagent.kubernetes.ManagementStrategyType" json:"managementStrategy,omitempty"`
|
|
LocationName string `protobuf:"bytes,11,opt,name=locationName,proto3" json:"locationName,omitempty"`
|
|
KubeConfig []byte `protobuf:"bytes,12,opt,name=kubeConfig,proto3" json:"kubeConfig,omitempty"`
|
|
CapiConfig *ClusterAPIConfiguration `protobuf:"bytes,13,opt,name=capiConfig,proto3" json:"capiConfig,omitempty"`
|
|
ContainerRegistry *ContainerRegistry `protobuf:"bytes,14,opt,name=containerRegistry,proto3" json:"containerRegistry,omitempty"`
|
|
DeploymentManifest []byte `protobuf:"bytes,15,opt,name=deploymentManifest,proto3" json:"deploymentManifest,omitempty"`
|
|
Tags *common.Tags `protobuf:"bytes,16,opt,name=tags,proto3" json:"tags,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Kubernetes) Reset() { *m = Kubernetes{} }
|
|
func (m *Kubernetes) String() string { return proto.CompactTextString(m) }
|
|
func (*Kubernetes) ProtoMessage() {}
|
|
func (*Kubernetes) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_fbe617ed62e63e04, []int{10}
|
|
}
|
|
|
|
func (m *Kubernetes) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Kubernetes.Unmarshal(m, b)
|
|
}
|
|
func (m *Kubernetes) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Kubernetes.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Kubernetes) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Kubernetes.Merge(m, src)
|
|
}
|
|
func (m *Kubernetes) XXX_Size() int {
|
|
return xxx_messageInfo_Kubernetes.Size(m)
|
|
}
|
|
func (m *Kubernetes) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Kubernetes.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Kubernetes proto.InternalMessageInfo
|
|
|
|
func (m *Kubernetes) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Kubernetes) GetId() string {
|
|
if m != nil {
|
|
return m.Id
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Kubernetes) GetStatus() *common.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetCluster() *ClusterConfiguration {
|
|
if m != nil {
|
|
return m.Cluster
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetNetwork() *NetworkConfiguration {
|
|
if m != nil {
|
|
return m.Network
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetStorage() *StorageConfiguration {
|
|
if m != nil {
|
|
return m.Storage
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetCompute() *ComputeConfiguration {
|
|
if m != nil {
|
|
return m.Compute
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetGroupName() string {
|
|
if m != nil {
|
|
return m.GroupName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Kubernetes) GetManagementStrategy() ManagementStrategyType {
|
|
if m != nil {
|
|
return m.ManagementStrategy
|
|
}
|
|
return ManagementStrategyType_Pivoted
|
|
}
|
|
|
|
func (m *Kubernetes) GetLocationName() string {
|
|
if m != nil {
|
|
return m.LocationName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Kubernetes) GetKubeConfig() []byte {
|
|
if m != nil {
|
|
return m.KubeConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetCapiConfig() *ClusterAPIConfiguration {
|
|
if m != nil {
|
|
return m.CapiConfig
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetContainerRegistry() *ContainerRegistry {
|
|
if m != nil {
|
|
return m.ContainerRegistry
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetDeploymentManifest() []byte {
|
|
if m != nil {
|
|
return m.DeploymentManifest
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *Kubernetes) GetTags() *common.Tags {
|
|
if m != nil {
|
|
return m.Tags
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("moc.cloudagent.kubernetes.NodeType", NodeType_name, NodeType_value)
|
|
proto.RegisterEnum("moc.cloudagent.kubernetes.ManagementStrategyType", ManagementStrategyType_name, ManagementStrategyType_value)
|
|
proto.RegisterType((*KubernetesRequest)(nil), "moc.cloudagent.kubernetes.KubernetesRequest")
|
|
proto.RegisterType((*KubernetesResponse)(nil), "moc.cloudagent.kubernetes.KubernetesResponse")
|
|
proto.RegisterType((*StorageConfiguration)(nil), "moc.cloudagent.kubernetes.StorageConfiguration")
|
|
proto.RegisterType((*NetworkConfiguration)(nil), "moc.cloudagent.kubernetes.NetworkConfiguration")
|
|
proto.RegisterType((*NodePoolConfiguration)(nil), "moc.cloudagent.kubernetes.NodePoolConfiguration")
|
|
proto.RegisterType((*SSHPublicKey)(nil), "moc.cloudagent.kubernetes.SSHPublicKey")
|
|
proto.RegisterType((*ComputeConfiguration)(nil), "moc.cloudagent.kubernetes.ComputeConfiguration")
|
|
proto.RegisterType((*ClusterConfiguration)(nil), "moc.cloudagent.kubernetes.ClusterConfiguration")
|
|
proto.RegisterType((*ClusterAPIConfiguration)(nil), "moc.cloudagent.kubernetes.ClusterAPIConfiguration")
|
|
proto.RegisterType((*ContainerRegistry)(nil), "moc.cloudagent.kubernetes.ContainerRegistry")
|
|
proto.RegisterType((*Kubernetes)(nil), "moc.cloudagent.kubernetes.Kubernetes")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("moc_cloudagent_kubernetes.proto", fileDescriptor_fbe617ed62e63e04) }
|
|
|
|
var fileDescriptor_fbe617ed62e63e04 = []byte{
|
|
// 1100 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x56, 0xcd, 0x72, 0xdb, 0x36,
|
|
0x10, 0x0e, 0x65, 0x47, 0xb2, 0x56, 0xb2, 0x2d, 0xa3, 0x4e, 0xc2, 0xba, 0x8d, 0xab, 0x61, 0xa6,
|
|
0xad, 0xc6, 0x93, 0x48, 0xae, 0x92, 0x53, 0x2f, 0x6d, 0x2c, 0x7b, 0x5a, 0x4f, 0x62, 0x57, 0x03,
|
|
0xa5, 0xce, 0x4c, 0x2e, 0x19, 0x98, 0x84, 0x58, 0x8c, 0x48, 0x80, 0x05, 0x40, 0xbb, 0xca, 0x13,
|
|
0xf4, 0xd0, 0x53, 0x5f, 0xa2, 0x2f, 0xd0, 0x9e, 0x7b, 0xca, 0x7b, 0x75, 0x08, 0x92, 0x26, 0xf5,
|
|
0x13, 0x39, 0x87, 0x9e, 0x44, 0x7c, 0xfb, 0xed, 0x87, 0xdd, 0xc5, 0x62, 0x05, 0xf8, 0x22, 0x14,
|
|
0xee, 0x5b, 0x37, 0x10, 0xb1, 0x47, 0x7c, 0xca, 0xf5, 0xdb, 0x49, 0x7c, 0x49, 0x25, 0xa7, 0x9a,
|
|
0xaa, 0x6e, 0x24, 0x85, 0x16, 0xe8, 0xd3, 0x50, 0xb8, 0xdd, 0x82, 0xd0, 0x2d, 0x08, 0x7b, 0xfb,
|
|
0xbe, 0x10, 0x7e, 0x40, 0x7b, 0x86, 0x78, 0x19, 0x8f, 0x7b, 0xd7, 0x92, 0x44, 0x11, 0x95, 0x99,
|
|
0xeb, 0xde, 0x03, 0xa3, 0x2d, 0xc2, 0x50, 0xf0, 0xec, 0x27, 0x35, 0x38, 0x7f, 0x5a, 0xb0, 0xf3,
|
|
0xe2, 0x46, 0x07, 0xd3, 0x5f, 0x63, 0xaa, 0x34, 0xfa, 0x01, 0x1a, 0x05, 0xa8, 0x6c, 0xab, 0xbd,
|
|
0xd6, 0x69, 0xf4, 0xbf, 0xec, 0x7e, 0x70, 0xff, 0x6e, 0x49, 0xa2, 0xec, 0x89, 0x9e, 0xc1, 0xe6,
|
|
0x4f, 0x11, 0x95, 0x44, 0x33, 0xc1, 0x5f, 0x4d, 0x23, 0x6a, 0x57, 0xda, 0x56, 0x67, 0xab, 0xbf,
|
|
0x65, 0xa4, 0x6e, 0x2c, 0x78, 0x96, 0xe4, 0xfc, 0x65, 0x01, 0x2a, 0x07, 0xa5, 0x22, 0xc1, 0x15,
|
|
0xfd, 0xff, 0xa2, 0xea, 0x43, 0x15, 0x53, 0x15, 0x07, 0xda, 0x84, 0xd3, 0xe8, 0xef, 0x75, 0xd3,
|
|
0xf2, 0x75, 0xf3, 0xf2, 0x75, 0x8f, 0x84, 0x08, 0x2e, 0x48, 0x10, 0x53, 0x9c, 0x31, 0xd1, 0x2e,
|
|
0xdc, 0x3d, 0x91, 0x52, 0x48, 0x7b, 0xad, 0x6d, 0x75, 0xea, 0x38, 0x5d, 0x38, 0x1d, 0xd8, 0x1d,
|
|
0x69, 0x21, 0x89, 0x4f, 0x07, 0x82, 0x8f, 0x99, 0x1f, 0xa7, 0x59, 0xa0, 0x16, 0xac, 0xb9, 0x8a,
|
|
0xd9, 0x96, 0xe1, 0x26, 0x9f, 0xce, 0x1f, 0x15, 0xd8, 0x3d, 0xa7, 0xfa, 0x5a, 0xc8, 0xc9, 0x22,
|
|
0x95, 0x17, 0x54, 0xce, 0x90, 0x0d, 0xb5, 0x48, 0x78, 0x03, 0xe6, 0x49, 0x13, 0x5f, 0x1d, 0xe7,
|
|
0x4b, 0xd4, 0x86, 0x86, 0x1b, 0xc4, 0x4a, 0x53, 0x69, 0xac, 0x69, 0x28, 0x65, 0x08, 0x1d, 0x40,
|
|
0xcb, 0x15, 0x5c, 0x4b, 0x11, 0x0c, 0x03, 0xc2, 0xa9, 0xa1, 0xad, 0x1b, 0xda, 0x02, 0x8e, 0xbe,
|
|
0x82, 0xad, 0x2b, 0x26, 0x75, 0x4c, 0x02, 0x9e, 0x06, 0x66, 0xdf, 0x35, 0xcc, 0x39, 0x14, 0x75,
|
|
0x60, 0x3b, 0x10, 0xc4, 0x3b, 0x22, 0x01, 0xe1, 0x2e, 0x95, 0x17, 0x2c, 0xb2, 0xab, 0x86, 0x38,
|
|
0x0f, 0xcf, 0x33, 0xcf, 0x88, 0x6b, 0xd7, 0x16, 0x99, 0x67, 0xc4, 0x75, 0xfe, 0xb6, 0xe0, 0xde,
|
|
0xb9, 0xf0, 0xe8, 0x50, 0x88, 0x60, 0xb6, 0x1e, 0xdf, 0xc1, 0x46, 0x62, 0x30, 0xdd, 0x62, 0x99,
|
|
0x6e, 0x79, 0xb4, 0xe2, 0x88, 0x73, 0x2a, 0xbe, 0x71, 0x4a, 0xd2, 0x62, 0x21, 0xf1, 0xa9, 0xa4,
|
|
0x63, 0x2a, 0x29, 0x77, 0x69, 0x56, 0xc5, 0x39, 0x14, 0xed, 0xc1, 0x86, 0xa4, 0x51, 0xc0, 0x5c,
|
|
0xa2, 0x4c, 0x25, 0xef, 0xe2, 0x9b, 0x35, 0xba, 0x0f, 0xd5, 0x8b, 0xb3, 0x11, 0x7b, 0x47, 0xb3,
|
|
0xe2, 0x65, 0x2b, 0xa7, 0x0b, 0xcd, 0xd1, 0xe8, 0xc7, 0x61, 0x7c, 0x19, 0x30, 0xf7, 0x05, 0x9d,
|
|
0xa2, 0x7d, 0xa8, 0x4d, 0xe8, 0xf4, 0x98, 0x68, 0x92, 0x1e, 0xe0, 0xd1, 0xfa, 0xef, 0xff, 0xd8,
|
|
0x16, 0xce, 0x41, 0xe7, 0x5f, 0x0b, 0x76, 0x07, 0x22, 0x8c, 0x62, 0xbd, 0xa4, 0x41, 0x64, 0x71,
|
|
0xea, 0x92, 0xa1, 0x13, 0xa8, 0x47, 0xb9, 0x6e, 0xd6, 0x97, 0x5f, 0xaf, 0x48, 0xbc, 0x1c, 0x06,
|
|
0x2e, 0x3c, 0xd1, 0x39, 0xd4, 0xf3, 0xba, 0x26, 0x69, 0x25, 0x57, 0xe4, 0xf0, 0x96, 0xfa, 0x2d,
|
|
0x9c, 0x01, 0x2e, 0x24, 0x9c, 0x43, 0xd8, 0x1d, 0x64, 0xfd, 0x35, 0x93, 0x80, 0x0d, 0xb5, 0x2b,
|
|
0x2a, 0x15, 0x13, 0x3c, 0x4b, 0x22, 0x5f, 0x3a, 0xef, 0x2b, 0xf0, 0x20, 0x73, 0x79, 0x3e, 0x3c,
|
|
0x9d, 0xf5, 0x7a, 0x06, 0xf7, 0x66, 0x80, 0x13, 0xee, 0x45, 0x82, 0x71, 0x9d, 0x69, 0x2c, 0x37,
|
|
0xa2, 0x63, 0x78, 0x78, 0xca, 0xc7, 0x92, 0x28, 0x2d, 0x63, 0x57, 0xc7, 0x92, 0x0e, 0xa5, 0xb8,
|
|
0x62, 0x1e, 0x95, 0x17, 0x59, 0x04, 0xe9, 0x01, 0xaf, 0x26, 0xa1, 0x6f, 0xc1, 0x3e, 0x12, 0x42,
|
|
0x2b, 0x2d, 0x49, 0x34, 0x2f, 0x90, 0xde, 0xa4, 0x0f, 0xda, 0xd1, 0xf7, 0xf0, 0xd9, 0xa0, 0x74,
|
|
0x7d, 0xe6, 0xdd, 0xd3, 0x26, 0x59, 0x45, 0x41, 0x87, 0xf0, 0xc9, 0x40, 0x2c, 0x46, 0x9e, 0xde,
|
|
0xb8, 0x65, 0x26, 0x67, 0x02, 0x3b, 0x89, 0x20, 0x61, 0x9c, 0x4a, 0x4c, 0x7d, 0xa6, 0xb4, 0x9c,
|
|
0x22, 0x04, 0xeb, 0xe7, 0x24, 0xa4, 0x59, 0xbd, 0xcc, 0x37, 0x6a, 0xc3, 0xc6, 0xcf, 0x8a, 0x4a,
|
|
0x9e, 0xe0, 0x95, 0x52, 0x17, 0xde, 0xa0, 0x09, 0x63, 0x48, 0x94, 0xba, 0x16, 0xd2, 0x4b, 0x53,
|
|
0xcd, 0x19, 0x39, 0xea, 0xbc, 0xaf, 0x02, 0x14, 0x23, 0x32, 0xd9, 0x86, 0x97, 0xb6, 0x31, 0x22,
|
|
0x5b, 0x50, 0x61, 0x5e, 0x56, 0xea, 0x0a, 0xf3, 0xd0, 0x23, 0xa8, 0x2a, 0x4d, 0x74, 0xac, 0x4c,
|
|
0xfa, 0x8d, 0x7e, 0xc3, 0xb4, 0xd9, 0xc8, 0x40, 0x38, 0x33, 0xa1, 0x53, 0xa8, 0x65, 0xe3, 0xc9,
|
|
0xa4, 0xda, 0xe8, 0xf7, 0x56, 0x34, 0xe3, 0xb2, 0x46, 0xc3, 0xb9, 0x7f, 0x22, 0x95, 0xcf, 0xa9,
|
|
0xea, 0xad, 0x52, 0xcb, 0x46, 0x2d, 0xce, 0xfd, 0x13, 0x29, 0x95, 0x8e, 0x6d, 0x33, 0x9f, 0x56,
|
|
0x4b, 0x2d, 0x1b, 0xf0, 0x38, 0xf7, 0x37, 0x09, 0xa6, 0x17, 0xdc, 0xde, 0xb8, 0x3d, 0xc1, 0x25,
|
|
0xa3, 0x00, 0xe7, 0xfe, 0xe8, 0x73, 0xa8, 0xfb, 0x52, 0xc4, 0x91, 0x39, 0xe0, 0xba, 0xa9, 0x73,
|
|
0x01, 0x20, 0x02, 0x28, 0x24, 0x9c, 0xf8, 0x34, 0xa4, 0x5c, 0x8f, 0xb4, 0x24, 0x9a, 0xfa, 0x53,
|
|
0x1b, 0xcc, 0x84, 0xfc, 0x66, 0xc5, 0x9e, 0x67, 0x0b, 0x4e, 0x66, 0x5e, 0x2e, 0x11, 0x43, 0x0e,
|
|
0x34, 0x03, 0xe1, 0x9a, 0xa8, 0x4c, 0x0c, 0x0d, 0x13, 0xc3, 0x0c, 0x86, 0xf6, 0x01, 0x12, 0xf1,
|
|
0x34, 0x05, 0xbb, 0xd9, 0xb6, 0x3a, 0x4d, 0x5c, 0x42, 0x10, 0x06, 0x70, 0x49, 0xc4, 0x32, 0xfb,
|
|
0xa6, 0x29, 0x49, 0xff, 0xf6, 0x33, 0x9f, 0x9f, 0x14, 0xb8, 0xa4, 0x82, 0xde, 0xc0, 0x8e, 0x3b,
|
|
0x7f, 0x13, 0xec, 0x2d, 0x23, 0xfd, 0x78, 0x65, 0xb5, 0xe7, 0x7c, 0xf0, 0xa2, 0x0c, 0xea, 0x02,
|
|
0xf2, 0x68, 0x14, 0x88, 0x69, 0x52, 0x89, 0x33, 0xc2, 0xd9, 0x98, 0x2a, 0x6d, 0x6f, 0x9b, 0xbc,
|
|
0x96, 0x58, 0xd0, 0x43, 0x58, 0xd7, 0xc4, 0x57, 0x76, 0xcb, 0x6c, 0x5f, 0x37, 0xdb, 0xbf, 0x22,
|
|
0xbe, 0xc2, 0x06, 0x3e, 0xc0, 0xc5, 0xbf, 0x17, 0x6a, 0x41, 0xb3, 0x3c, 0x11, 0x5a, 0x77, 0xd0,
|
|
0x36, 0x34, 0x5e, 0x32, 0x1e, 0xff, 0xf6, 0x5a, 0xc8, 0x09, 0x95, 0x2d, 0x0b, 0xed, 0xc0, 0xe6,
|
|
0x6b, 0xc6, 0x3d, 0x71, 0xad, 0x32, 0xa8, 0x92, 0x78, 0xbd, 0x2c, 0xfd, 0x59, 0xb6, 0xd6, 0x0e,
|
|
0x9e, 0xc2, 0xfd, 0xe5, 0x87, 0x88, 0x1a, 0x50, 0x1b, 0xb2, 0x2b, 0xa1, 0xa9, 0xd7, 0xba, 0x83,
|
|
0x9a, 0xb0, 0x71, 0xcc, 0x94, 0x66, 0xdc, 0xd5, 0x2d, 0xab, 0xff, 0x0e, 0xb6, 0x8b, 0xfb, 0xfc,
|
|
0x3c, 0x29, 0x0d, 0xf2, 0xa1, 0x7a, 0xca, 0xaf, 0xc4, 0x84, 0xa2, 0xc7, 0x1f, 0xf7, 0x68, 0x4a,
|
|
0x5f, 0x83, 0x7b, 0x4f, 0x3e, 0x92, 0x9d, 0x3e, 0xd3, 0x9c, 0x3b, 0x47, 0xbd, 0x37, 0x4f, 0x7c,
|
|
0xa6, 0x7f, 0x89, 0x2f, 0xbb, 0xae, 0x08, 0x7b, 0x21, 0x73, 0xa5, 0x50, 0x62, 0xac, 0x7b, 0xa1,
|
|
0x70, 0x7b, 0x32, 0x72, 0x7b, 0x85, 0x54, 0xfa, 0x79, 0x59, 0x35, 0x0f, 0xaf, 0xa7, 0xff, 0x05,
|
|
0x00, 0x00, 0xff, 0xff, 0x74, 0xae, 0xbd, 0xbf, 0x03, 0x0b, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// KubernetesAgentClient is the client API for KubernetesAgent service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type KubernetesAgentClient interface {
|
|
Invoke(ctx context.Context, in *KubernetesRequest, opts ...grpc.CallOption) (*KubernetesResponse, error)
|
|
}
|
|
|
|
type kubernetesAgentClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewKubernetesAgentClient(cc *grpc.ClientConn) KubernetesAgentClient {
|
|
return &kubernetesAgentClient{cc}
|
|
}
|
|
|
|
func (c *kubernetesAgentClient) Invoke(ctx context.Context, in *KubernetesRequest, opts ...grpc.CallOption) (*KubernetesResponse, error) {
|
|
out := new(KubernetesResponse)
|
|
err := c.cc.Invoke(ctx, "/moc.cloudagent.kubernetes.KubernetesAgent/Invoke", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// KubernetesAgentServer is the server API for KubernetesAgent service.
|
|
type KubernetesAgentServer interface {
|
|
Invoke(context.Context, *KubernetesRequest) (*KubernetesResponse, error)
|
|
}
|
|
|
|
// UnimplementedKubernetesAgentServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedKubernetesAgentServer struct {
|
|
}
|
|
|
|
func (*UnimplementedKubernetesAgentServer) Invoke(ctx context.Context, req *KubernetesRequest) (*KubernetesResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Invoke not implemented")
|
|
}
|
|
|
|
func RegisterKubernetesAgentServer(s *grpc.Server, srv KubernetesAgentServer) {
|
|
s.RegisterService(&_KubernetesAgent_serviceDesc, srv)
|
|
}
|
|
|
|
func _KubernetesAgent_Invoke_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(KubernetesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(KubernetesAgentServer).Invoke(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/moc.cloudagent.kubernetes.KubernetesAgent/Invoke",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(KubernetesAgentServer).Invoke(ctx, req.(*KubernetesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _KubernetesAgent_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "moc.cloudagent.kubernetes.KubernetesAgent",
|
|
HandlerType: (*KubernetesAgentServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Invoke",
|
|
Handler: _KubernetesAgent_Invoke_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "moc_cloudagent_kubernetes.proto",
|
|
}
|