Documentation ¶
Index ¶
- Constants
- Variables
- func RegisterPlatformEdgeServer(s grpc.ServiceRegistrar, srv PlatformEdgeServer)
- type AllocatePlatformEdgeClusterIn
- func (*AllocatePlatformEdgeClusterIn) Descriptor() ([]byte, []int)deprecated
- func (x *AllocatePlatformEdgeClusterIn) GetAccountName() string
- func (x *AllocatePlatformEdgeClusterIn) GetRegion() string
- func (*AllocatePlatformEdgeClusterIn) ProtoMessage()
- func (x *AllocatePlatformEdgeClusterIn) ProtoReflect() protoreflect.Message
- func (x *AllocatePlatformEdgeClusterIn) Reset()
- func (x *AllocatePlatformEdgeClusterIn) String() string
- type AllocatePlatformEdgeClusterOut
- func (*AllocatePlatformEdgeClusterOut) Descriptor() ([]byte, []int)deprecated
- func (x *AllocatePlatformEdgeClusterOut) GetClusterName() string
- func (x *AllocatePlatformEdgeClusterOut) GetOwnedByAccount() string
- func (x *AllocatePlatformEdgeClusterOut) GetPublicDnsHost() string
- func (*AllocatePlatformEdgeClusterOut) ProtoMessage()
- func (x *AllocatePlatformEdgeClusterOut) ProtoReflect() protoreflect.Message
- func (x *AllocatePlatformEdgeClusterOut) Reset()
- func (x *AllocatePlatformEdgeClusterOut) String() string
- type GetAllocatedPlatformEdgeClusterIn
- func (*GetAllocatedPlatformEdgeClusterIn) Descriptor() ([]byte, []int)deprecated
- func (x *GetAllocatedPlatformEdgeClusterIn) GetAccountName() string
- func (x *GetAllocatedPlatformEdgeClusterIn) GetClusterName() string
- func (*GetAllocatedPlatformEdgeClusterIn) ProtoMessage()
- func (x *GetAllocatedPlatformEdgeClusterIn) ProtoReflect() protoreflect.Message
- func (x *GetAllocatedPlatformEdgeClusterIn) Reset()
- func (x *GetAllocatedPlatformEdgeClusterIn) String() string
- type ListPlatformEdgeClustersIn
- func (*ListPlatformEdgeClustersIn) Descriptor() ([]byte, []int)deprecated
- func (x *ListPlatformEdgeClustersIn) GetRegion() string
- func (*ListPlatformEdgeClustersIn) ProtoMessage()
- func (x *ListPlatformEdgeClustersIn) ProtoReflect() protoreflect.Message
- func (x *ListPlatformEdgeClustersIn) Reset()
- func (x *ListPlatformEdgeClustersIn) String() string
- type ListPlatformEdgeClustersOut
- func (*ListPlatformEdgeClustersOut) Descriptor() ([]byte, []int)deprecated
- func (x *ListPlatformEdgeClustersOut) GetPlatformEdgeClusters() []*PlatformEdgeCluster
- func (*ListPlatformEdgeClustersOut) ProtoMessage()
- func (x *ListPlatformEdgeClustersOut) ProtoReflect() protoreflect.Message
- func (x *ListPlatformEdgeClustersOut) Reset()
- func (x *ListPlatformEdgeClustersOut) String() string
- type PlatformEdgeClient
- type PlatformEdgeCluster
- func (*PlatformEdgeCluster) Descriptor() ([]byte, []int)deprecated
- func (x *PlatformEdgeCluster) GetClusterName() string
- func (x *PlatformEdgeCluster) GetRegion() string
- func (*PlatformEdgeCluster) ProtoMessage()
- func (x *PlatformEdgeCluster) ProtoReflect() protoreflect.Message
- func (x *PlatformEdgeCluster) Reset()
- func (x *PlatformEdgeCluster) String() string
- type PlatformEdgeServer
- type UnimplementedPlatformEdgeServer
- func (UnimplementedPlatformEdgeServer) AllocatePlatformEdgeCluster(context.Context, *AllocatePlatformEdgeClusterIn) (*AllocatePlatformEdgeClusterOut, error)
- func (UnimplementedPlatformEdgeServer) GetAllocatedPlatformEdgeCluster(context.Context, *GetAllocatedPlatformEdgeClusterIn) (*AllocatePlatformEdgeClusterOut, error)
- func (UnimplementedPlatformEdgeServer) ListPlatformEdgeClusters(context.Context, *ListPlatformEdgeClustersIn) (*ListPlatformEdgeClustersOut, error)
- type UnsafePlatformEdgeServer
Constants ¶
const ( PlatformEdge_ListPlatformEdgeClusters_FullMethodName = "/PlatformEdge/ListPlatformEdgeClusters" PlatformEdge_AllocatePlatformEdgeCluster_FullMethodName = "/PlatformEdge/AllocatePlatformEdgeCluster" PlatformEdge_GetAllocatedPlatformEdgeCluster_FullMethodName = "/PlatformEdge/GetAllocatedPlatformEdgeCluster" )
Variables ¶
var File_platform_edge_proto protoreflect.FileDescriptor
var PlatformEdge_ServiceDesc = grpc.ServiceDesc{ ServiceName: "PlatformEdge", HandlerType: (*PlatformEdgeServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "ListPlatformEdgeClusters", Handler: _PlatformEdge_ListPlatformEdgeClusters_Handler, }, { MethodName: "AllocatePlatformEdgeCluster", Handler: _PlatformEdge_AllocatePlatformEdgeCluster_Handler, }, { MethodName: "GetAllocatedPlatformEdgeCluster", Handler: _PlatformEdge_GetAllocatedPlatformEdgeCluster_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "platform-edge.proto", }
PlatformEdge_ServiceDesc is the grpc.ServiceDesc for PlatformEdge service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterPlatformEdgeServer ¶
func RegisterPlatformEdgeServer(s grpc.ServiceRegistrar, srv PlatformEdgeServer)
Types ¶
type AllocatePlatformEdgeClusterIn ¶
type AllocatePlatformEdgeClusterIn struct { Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"` AccountName string `protobuf:"bytes,2,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"` // contains filtered or unexported fields }
func (*AllocatePlatformEdgeClusterIn) Descriptor
deprecated
func (*AllocatePlatformEdgeClusterIn) Descriptor() ([]byte, []int)
Deprecated: Use AllocatePlatformEdgeClusterIn.ProtoReflect.Descriptor instead.
func (*AllocatePlatformEdgeClusterIn) GetAccountName ¶
func (x *AllocatePlatformEdgeClusterIn) GetAccountName() string
func (*AllocatePlatformEdgeClusterIn) GetRegion ¶
func (x *AllocatePlatformEdgeClusterIn) GetRegion() string
func (*AllocatePlatformEdgeClusterIn) ProtoMessage ¶
func (*AllocatePlatformEdgeClusterIn) ProtoMessage()
func (*AllocatePlatformEdgeClusterIn) ProtoReflect ¶
func (x *AllocatePlatformEdgeClusterIn) ProtoReflect() protoreflect.Message
func (*AllocatePlatformEdgeClusterIn) Reset ¶
func (x *AllocatePlatformEdgeClusterIn) Reset()
func (*AllocatePlatformEdgeClusterIn) String ¶
func (x *AllocatePlatformEdgeClusterIn) String() string
type AllocatePlatformEdgeClusterOut ¶
type AllocatePlatformEdgeClusterOut struct { ClusterName string `protobuf:"bytes,1,opt,name=cluster_name,json=clusterName,proto3" json:"cluster_name,omitempty"` OwnedByAccount string `protobuf:"bytes,2,opt,name=owned_by_account,json=ownedByAccount,proto3" json:"owned_by_account,omitempty"` PublicDnsHost string `protobuf:"bytes,3,opt,name=public_dns_host,json=publicDnsHost,proto3" json:"public_dns_host,omitempty"` // contains filtered or unexported fields }
func (*AllocatePlatformEdgeClusterOut) Descriptor
deprecated
func (*AllocatePlatformEdgeClusterOut) Descriptor() ([]byte, []int)
Deprecated: Use AllocatePlatformEdgeClusterOut.ProtoReflect.Descriptor instead.
func (*AllocatePlatformEdgeClusterOut) GetClusterName ¶
func (x *AllocatePlatformEdgeClusterOut) GetClusterName() string
func (*AllocatePlatformEdgeClusterOut) GetOwnedByAccount ¶
func (x *AllocatePlatformEdgeClusterOut) GetOwnedByAccount() string
func (*AllocatePlatformEdgeClusterOut) GetPublicDnsHost ¶
func (x *AllocatePlatformEdgeClusterOut) GetPublicDnsHost() string
func (*AllocatePlatformEdgeClusterOut) ProtoMessage ¶
func (*AllocatePlatformEdgeClusterOut) ProtoMessage()
func (*AllocatePlatformEdgeClusterOut) ProtoReflect ¶
func (x *AllocatePlatformEdgeClusterOut) ProtoReflect() protoreflect.Message
func (*AllocatePlatformEdgeClusterOut) Reset ¶
func (x *AllocatePlatformEdgeClusterOut) Reset()
func (*AllocatePlatformEdgeClusterOut) String ¶
func (x *AllocatePlatformEdgeClusterOut) String() string
type GetAllocatedPlatformEdgeClusterIn ¶
type GetAllocatedPlatformEdgeClusterIn struct { AccountName string `protobuf:"bytes,1,opt,name=account_name,json=accountName,proto3" json:"account_name,omitempty"` ClusterName string `protobuf:"bytes,2,opt,name=cluster_name,json=clusterName,proto3" json:"cluster_name,omitempty"` // contains filtered or unexported fields }
func (*GetAllocatedPlatformEdgeClusterIn) Descriptor
deprecated
func (*GetAllocatedPlatformEdgeClusterIn) Descriptor() ([]byte, []int)
Deprecated: Use GetAllocatedPlatformEdgeClusterIn.ProtoReflect.Descriptor instead.
func (*GetAllocatedPlatformEdgeClusterIn) GetAccountName ¶
func (x *GetAllocatedPlatformEdgeClusterIn) GetAccountName() string
func (*GetAllocatedPlatformEdgeClusterIn) GetClusterName ¶
func (x *GetAllocatedPlatformEdgeClusterIn) GetClusterName() string
func (*GetAllocatedPlatformEdgeClusterIn) ProtoMessage ¶
func (*GetAllocatedPlatformEdgeClusterIn) ProtoMessage()
func (*GetAllocatedPlatformEdgeClusterIn) ProtoReflect ¶
func (x *GetAllocatedPlatformEdgeClusterIn) ProtoReflect() protoreflect.Message
func (*GetAllocatedPlatformEdgeClusterIn) Reset ¶
func (x *GetAllocatedPlatformEdgeClusterIn) Reset()
func (*GetAllocatedPlatformEdgeClusterIn) String ¶
func (x *GetAllocatedPlatformEdgeClusterIn) String() string
type ListPlatformEdgeClustersIn ¶
type ListPlatformEdgeClustersIn struct { Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"` // contains filtered or unexported fields }
func (*ListPlatformEdgeClustersIn) Descriptor
deprecated
func (*ListPlatformEdgeClustersIn) Descriptor() ([]byte, []int)
Deprecated: Use ListPlatformEdgeClustersIn.ProtoReflect.Descriptor instead.
func (*ListPlatformEdgeClustersIn) GetRegion ¶
func (x *ListPlatformEdgeClustersIn) GetRegion() string
func (*ListPlatformEdgeClustersIn) ProtoMessage ¶
func (*ListPlatformEdgeClustersIn) ProtoMessage()
func (*ListPlatformEdgeClustersIn) ProtoReflect ¶
func (x *ListPlatformEdgeClustersIn) ProtoReflect() protoreflect.Message
func (*ListPlatformEdgeClustersIn) Reset ¶
func (x *ListPlatformEdgeClustersIn) Reset()
func (*ListPlatformEdgeClustersIn) String ¶
func (x *ListPlatformEdgeClustersIn) String() string
type ListPlatformEdgeClustersOut ¶
type ListPlatformEdgeClustersOut struct { PlatformEdgeClusters []*PlatformEdgeCluster `protobuf:"bytes,1,rep,name=platform_edge_clusters,json=platformEdgeClusters,proto3" json:"platform_edge_clusters,omitempty"` // contains filtered or unexported fields }
func (*ListPlatformEdgeClustersOut) Descriptor
deprecated
func (*ListPlatformEdgeClustersOut) Descriptor() ([]byte, []int)
Deprecated: Use ListPlatformEdgeClustersOut.ProtoReflect.Descriptor instead.
func (*ListPlatformEdgeClustersOut) GetPlatformEdgeClusters ¶
func (x *ListPlatformEdgeClustersOut) GetPlatformEdgeClusters() []*PlatformEdgeCluster
func (*ListPlatformEdgeClustersOut) ProtoMessage ¶
func (*ListPlatformEdgeClustersOut) ProtoMessage()
func (*ListPlatformEdgeClustersOut) ProtoReflect ¶
func (x *ListPlatformEdgeClustersOut) ProtoReflect() protoreflect.Message
func (*ListPlatformEdgeClustersOut) Reset ¶
func (x *ListPlatformEdgeClustersOut) Reset()
func (*ListPlatformEdgeClustersOut) String ¶
func (x *ListPlatformEdgeClustersOut) String() string
type PlatformEdgeClient ¶
type PlatformEdgeClient interface { ListPlatformEdgeClusters(ctx context.Context, in *ListPlatformEdgeClustersIn, opts ...grpc.CallOption) (*ListPlatformEdgeClustersOut, error) AllocatePlatformEdgeCluster(ctx context.Context, in *AllocatePlatformEdgeClusterIn, opts ...grpc.CallOption) (*AllocatePlatformEdgeClusterOut, error) GetAllocatedPlatformEdgeCluster(ctx context.Context, in *GetAllocatedPlatformEdgeClusterIn, opts ...grpc.CallOption) (*AllocatePlatformEdgeClusterOut, error) }
PlatformEdgeClient is the client API for PlatformEdge 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 NewPlatformEdgeClient ¶
func NewPlatformEdgeClient(cc grpc.ClientConnInterface) PlatformEdgeClient
type PlatformEdgeCluster ¶
type PlatformEdgeCluster struct { Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"` ClusterName string `protobuf:"bytes,2,opt,name=cluster_name,json=clusterName,proto3" json:"cluster_name,omitempty"` // contains filtered or unexported fields }
func (*PlatformEdgeCluster) Descriptor
deprecated
func (*PlatformEdgeCluster) Descriptor() ([]byte, []int)
Deprecated: Use PlatformEdgeCluster.ProtoReflect.Descriptor instead.
func (*PlatformEdgeCluster) GetClusterName ¶
func (x *PlatformEdgeCluster) GetClusterName() string
func (*PlatformEdgeCluster) GetRegion ¶
func (x *PlatformEdgeCluster) GetRegion() string
func (*PlatformEdgeCluster) ProtoMessage ¶
func (*PlatformEdgeCluster) ProtoMessage()
func (*PlatformEdgeCluster) ProtoReflect ¶
func (x *PlatformEdgeCluster) ProtoReflect() protoreflect.Message
func (*PlatformEdgeCluster) Reset ¶
func (x *PlatformEdgeCluster) Reset()
func (*PlatformEdgeCluster) String ¶
func (x *PlatformEdgeCluster) String() string
type PlatformEdgeServer ¶
type PlatformEdgeServer interface { ListPlatformEdgeClusters(context.Context, *ListPlatformEdgeClustersIn) (*ListPlatformEdgeClustersOut, error) AllocatePlatformEdgeCluster(context.Context, *AllocatePlatformEdgeClusterIn) (*AllocatePlatformEdgeClusterOut, error) GetAllocatedPlatformEdgeCluster(context.Context, *GetAllocatedPlatformEdgeClusterIn) (*AllocatePlatformEdgeClusterOut, error) // contains filtered or unexported methods }
PlatformEdgeServer is the server API for PlatformEdge service. All implementations must embed UnimplementedPlatformEdgeServer for forward compatibility
type UnimplementedPlatformEdgeServer ¶
type UnimplementedPlatformEdgeServer struct { }
UnimplementedPlatformEdgeServer must be embedded to have forward compatible implementations.
func (UnimplementedPlatformEdgeServer) AllocatePlatformEdgeCluster ¶
func (UnimplementedPlatformEdgeServer) AllocatePlatformEdgeCluster(context.Context, *AllocatePlatformEdgeClusterIn) (*AllocatePlatformEdgeClusterOut, error)
func (UnimplementedPlatformEdgeServer) GetAllocatedPlatformEdgeCluster ¶
func (UnimplementedPlatformEdgeServer) GetAllocatedPlatformEdgeCluster(context.Context, *GetAllocatedPlatformEdgeClusterIn) (*AllocatePlatformEdgeClusterOut, error)
func (UnimplementedPlatformEdgeServer) ListPlatformEdgeClusters ¶
func (UnimplementedPlatformEdgeServer) ListPlatformEdgeClusters(context.Context, *ListPlatformEdgeClustersIn) (*ListPlatformEdgeClustersOut, error)
type UnsafePlatformEdgeServer ¶
type UnsafePlatformEdgeServer interface {
// contains filtered or unexported methods
}
UnsafePlatformEdgeServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to PlatformEdgeServer will result in compilation errors.