accountservice

package
v0.22.0 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2024 License: MIT Imports: 15 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLengthRequestResponse        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflowRequestResponse          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroupRequestResponse = fmt.Errorf("proto: unexpected end of group")
)

Functions

func RegisterAccountServiceServer

func RegisterAccountServiceServer(s *grpc.Server, srv AccountServiceServer)

Types

type AccountServiceClient

type AccountServiceClient interface {
	// Gets the usage records of a given namespace.
	GetNamespaceUsage(ctx context.Context, in *GetNamespaceUsageRequest, opts ...grpc.CallOption) (*GetNamespaceUsageResponse, error)
	// Gets the usage records of a subset of namespaces belonging to a Temporal account.
	GetNamespacesUsage(ctx context.Context, in *GetNamespacesUsageRequest, opts ...grpc.CallOption) (*GetNamespacesUsageResponse, error)
	// Gets the usage records of a Temporal account.
	GetAccountUsage(ctx context.Context, in *GetAccountUsageRequest, opts ...grpc.CallOption) (*GetAccountUsageResponse, error)
	// Describes account configuration in detail
	GetAccount(ctx context.Context, in *GetAccountRequest, opts ...grpc.CallOption) (*GetAccountResponse, error)
	// Updates Account configuration settings on Temporal cloud.
	UpdateAccount(ctx context.Context, in *UpdateAccountRequest, opts ...grpc.CallOption) (*UpdateAccountResponse, error)
	// Gets all cloud regions enabled for namespace creation.
	GetRegions(ctx context.Context, in *GetRegionsRequest, opts ...grpc.CallOption) (*GetRegionsResponse, error)
}

AccountServiceClient is the client API for AccountService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

type AccountServiceServer

type AccountServiceServer interface {
	// Gets the usage records of a given namespace.
	GetNamespaceUsage(context.Context, *GetNamespaceUsageRequest) (*GetNamespaceUsageResponse, error)
	// Gets the usage records of a subset of namespaces belonging to a Temporal account.
	GetNamespacesUsage(context.Context, *GetNamespacesUsageRequest) (*GetNamespacesUsageResponse, error)
	// Gets the usage records of a Temporal account.
	GetAccountUsage(context.Context, *GetAccountUsageRequest) (*GetAccountUsageResponse, error)
	// Describes account configuration in detail
	GetAccount(context.Context, *GetAccountRequest) (*GetAccountResponse, error)
	// Updates Account configuration settings on Temporal cloud.
	UpdateAccount(context.Context, *UpdateAccountRequest) (*UpdateAccountResponse, error)
	// Gets all cloud regions enabled for namespace creation.
	GetRegions(context.Context, *GetRegionsRequest) (*GetRegionsResponse, error)
}

AccountServiceServer is the server API for AccountService service.

type GetAccountRequest

type GetAccountRequest struct {
}

func (*GetAccountRequest) Descriptor

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

func (*GetAccountRequest) Equal

func (this *GetAccountRequest) Equal(that interface{}) bool

func (*GetAccountRequest) GoString

func (this *GetAccountRequest) GoString() string

func (*GetAccountRequest) Marshal

func (m *GetAccountRequest) Marshal() (dAtA []byte, err error)

func (*GetAccountRequest) MarshalTo

func (m *GetAccountRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetAccountRequest) MarshalToSizedBuffer

func (m *GetAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAccountRequest) ProtoMessage

func (*GetAccountRequest) ProtoMessage()

func (*GetAccountRequest) Reset

func (m *GetAccountRequest) Reset()

func (*GetAccountRequest) Size

func (m *GetAccountRequest) Size() (n int)

func (*GetAccountRequest) String

func (this *GetAccountRequest) String() string

func (*GetAccountRequest) Unmarshal

func (m *GetAccountRequest) Unmarshal(dAtA []byte) error

func (*GetAccountRequest) XXX_DiscardUnknown

func (m *GetAccountRequest) XXX_DiscardUnknown()

func (*GetAccountRequest) XXX_Marshal

func (m *GetAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetAccountRequest) XXX_Merge

func (m *GetAccountRequest) XXX_Merge(src proto.Message)

func (*GetAccountRequest) XXX_Size

func (m *GetAccountRequest) XXX_Size() int

func (*GetAccountRequest) XXX_Unmarshal

func (m *GetAccountRequest) XXX_Unmarshal(b []byte) error

type GetAccountResponse

type GetAccountResponse struct {
	// the account
	Account *v1.Account `protobuf:"bytes,1,opt,name=account,proto3" json:"account,omitempty"`
}

func (*GetAccountResponse) Descriptor

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

func (*GetAccountResponse) Equal

func (this *GetAccountResponse) Equal(that interface{}) bool

func (*GetAccountResponse) GetAccount

func (m *GetAccountResponse) GetAccount() *v1.Account

func (*GetAccountResponse) GoString

func (this *GetAccountResponse) GoString() string

func (*GetAccountResponse) Marshal

func (m *GetAccountResponse) Marshal() (dAtA []byte, err error)

func (*GetAccountResponse) MarshalTo

func (m *GetAccountResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetAccountResponse) MarshalToSizedBuffer

func (m *GetAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAccountResponse) ProtoMessage

func (*GetAccountResponse) ProtoMessage()

func (*GetAccountResponse) Reset

func (m *GetAccountResponse) Reset()

func (*GetAccountResponse) Size

func (m *GetAccountResponse) Size() (n int)

func (*GetAccountResponse) String

func (this *GetAccountResponse) String() string

func (*GetAccountResponse) Unmarshal

func (m *GetAccountResponse) Unmarshal(dAtA []byte) error

func (*GetAccountResponse) XXX_DiscardUnknown

func (m *GetAccountResponse) XXX_DiscardUnknown()

func (*GetAccountResponse) XXX_Marshal

func (m *GetAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetAccountResponse) XXX_Merge

func (m *GetAccountResponse) XXX_Merge(src proto.Message)

func (*GetAccountResponse) XXX_Size

func (m *GetAccountResponse) XXX_Size() int

func (*GetAccountResponse) XXX_Unmarshal

func (m *GetAccountResponse) XXX_Unmarshal(b []byte) error

type GetAccountUsageRequest

type GetAccountUsageRequest struct {
	StartTime        *types.Timestamp `protobuf:"bytes,1,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	EndTime          *types.Timestamp `protobuf:"bytes,2,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	AggregatedPeriod v1.Period        `` /* 137-byte string literal not displayed */
}

func (*GetAccountUsageRequest) Descriptor

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

func (*GetAccountUsageRequest) Equal

func (this *GetAccountUsageRequest) Equal(that interface{}) bool

func (*GetAccountUsageRequest) GetAggregatedPeriod

func (m *GetAccountUsageRequest) GetAggregatedPeriod() v1.Period

func (*GetAccountUsageRequest) GetEndTime

func (m *GetAccountUsageRequest) GetEndTime() *types.Timestamp

func (*GetAccountUsageRequest) GetStartTime

func (m *GetAccountUsageRequest) GetStartTime() *types.Timestamp

func (*GetAccountUsageRequest) GoString

func (this *GetAccountUsageRequest) GoString() string

func (*GetAccountUsageRequest) Marshal

func (m *GetAccountUsageRequest) Marshal() (dAtA []byte, err error)

func (*GetAccountUsageRequest) MarshalTo

func (m *GetAccountUsageRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetAccountUsageRequest) MarshalToSizedBuffer

func (m *GetAccountUsageRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAccountUsageRequest) ProtoMessage

func (*GetAccountUsageRequest) ProtoMessage()

func (*GetAccountUsageRequest) Reset

func (m *GetAccountUsageRequest) Reset()

func (*GetAccountUsageRequest) Size

func (m *GetAccountUsageRequest) Size() (n int)

func (*GetAccountUsageRequest) String

func (this *GetAccountUsageRequest) String() string

func (*GetAccountUsageRequest) Unmarshal

func (m *GetAccountUsageRequest) Unmarshal(dAtA []byte) error

func (*GetAccountUsageRequest) XXX_DiscardUnknown

func (m *GetAccountUsageRequest) XXX_DiscardUnknown()

func (*GetAccountUsageRequest) XXX_Marshal

func (m *GetAccountUsageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetAccountUsageRequest) XXX_Merge

func (m *GetAccountUsageRequest) XXX_Merge(src proto.Message)

func (*GetAccountUsageRequest) XXX_Size

func (m *GetAccountUsageRequest) XXX_Size() int

func (*GetAccountUsageRequest) XXX_Unmarshal

func (m *GetAccountUsageRequest) XXX_Unmarshal(b []byte) error

type GetAccountUsageResponse

type GetAccountUsageResponse struct {
	Entries []*v1.MeteringEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
}

func (*GetAccountUsageResponse) Descriptor

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

func (*GetAccountUsageResponse) Equal

func (this *GetAccountUsageResponse) Equal(that interface{}) bool

func (*GetAccountUsageResponse) GetEntries

func (m *GetAccountUsageResponse) GetEntries() []*v1.MeteringEntry

func (*GetAccountUsageResponse) GoString

func (this *GetAccountUsageResponse) GoString() string

func (*GetAccountUsageResponse) Marshal

func (m *GetAccountUsageResponse) Marshal() (dAtA []byte, err error)

func (*GetAccountUsageResponse) MarshalTo

func (m *GetAccountUsageResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetAccountUsageResponse) MarshalToSizedBuffer

func (m *GetAccountUsageResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetAccountUsageResponse) ProtoMessage

func (*GetAccountUsageResponse) ProtoMessage()

func (*GetAccountUsageResponse) Reset

func (m *GetAccountUsageResponse) Reset()

func (*GetAccountUsageResponse) Size

func (m *GetAccountUsageResponse) Size() (n int)

func (*GetAccountUsageResponse) String

func (this *GetAccountUsageResponse) String() string

func (*GetAccountUsageResponse) Unmarshal

func (m *GetAccountUsageResponse) Unmarshal(dAtA []byte) error

func (*GetAccountUsageResponse) XXX_DiscardUnknown

func (m *GetAccountUsageResponse) XXX_DiscardUnknown()

func (*GetAccountUsageResponse) XXX_Marshal

func (m *GetAccountUsageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetAccountUsageResponse) XXX_Merge

func (m *GetAccountUsageResponse) XXX_Merge(src proto.Message)

func (*GetAccountUsageResponse) XXX_Size

func (m *GetAccountUsageResponse) XXX_Size() int

func (*GetAccountUsageResponse) XXX_Unmarshal

func (m *GetAccountUsageResponse) XXX_Unmarshal(b []byte) error

type GetNamespaceUsageRequest

type GetNamespaceUsageRequest struct {
	Namespace        string           `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	StartTime        *types.Timestamp `protobuf:"bytes,2,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	EndTime          *types.Timestamp `protobuf:"bytes,3,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
	AggregatedPeriod v1.Period        `` /* 137-byte string literal not displayed */
}

func (*GetNamespaceUsageRequest) Descriptor

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

func (*GetNamespaceUsageRequest) Equal

func (this *GetNamespaceUsageRequest) Equal(that interface{}) bool

func (*GetNamespaceUsageRequest) GetAggregatedPeriod

func (m *GetNamespaceUsageRequest) GetAggregatedPeriod() v1.Period

func (*GetNamespaceUsageRequest) GetEndTime

func (m *GetNamespaceUsageRequest) GetEndTime() *types.Timestamp

func (*GetNamespaceUsageRequest) GetNamespace

func (m *GetNamespaceUsageRequest) GetNamespace() string

func (*GetNamespaceUsageRequest) GetStartTime

func (m *GetNamespaceUsageRequest) GetStartTime() *types.Timestamp

func (*GetNamespaceUsageRequest) GoString

func (this *GetNamespaceUsageRequest) GoString() string

func (*GetNamespaceUsageRequest) Marshal

func (m *GetNamespaceUsageRequest) Marshal() (dAtA []byte, err error)

func (*GetNamespaceUsageRequest) MarshalTo

func (m *GetNamespaceUsageRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetNamespaceUsageRequest) MarshalToSizedBuffer

func (m *GetNamespaceUsageRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetNamespaceUsageRequest) ProtoMessage

func (*GetNamespaceUsageRequest) ProtoMessage()

func (*GetNamespaceUsageRequest) Reset

func (m *GetNamespaceUsageRequest) Reset()

func (*GetNamespaceUsageRequest) Size

func (m *GetNamespaceUsageRequest) Size() (n int)

func (*GetNamespaceUsageRequest) String

func (this *GetNamespaceUsageRequest) String() string

func (*GetNamespaceUsageRequest) Unmarshal

func (m *GetNamespaceUsageRequest) Unmarshal(dAtA []byte) error

func (*GetNamespaceUsageRequest) XXX_DiscardUnknown

func (m *GetNamespaceUsageRequest) XXX_DiscardUnknown()

func (*GetNamespaceUsageRequest) XXX_Marshal

func (m *GetNamespaceUsageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetNamespaceUsageRequest) XXX_Merge

func (m *GetNamespaceUsageRequest) XXX_Merge(src proto.Message)

func (*GetNamespaceUsageRequest) XXX_Size

func (m *GetNamespaceUsageRequest) XXX_Size() int

func (*GetNamespaceUsageRequest) XXX_Unmarshal

func (m *GetNamespaceUsageRequest) XXX_Unmarshal(b []byte) error

type GetNamespaceUsageResponse

type GetNamespaceUsageResponse struct {
	Entries []*v1.MeteringEntry `protobuf:"bytes,1,rep,name=entries,proto3" json:"entries,omitempty"`
}

func (*GetNamespaceUsageResponse) Descriptor

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

func (*GetNamespaceUsageResponse) Equal

func (this *GetNamespaceUsageResponse) Equal(that interface{}) bool

func (*GetNamespaceUsageResponse) GetEntries

func (m *GetNamespaceUsageResponse) GetEntries() []*v1.MeteringEntry

func (*GetNamespaceUsageResponse) GoString

func (this *GetNamespaceUsageResponse) GoString() string

func (*GetNamespaceUsageResponse) Marshal

func (m *GetNamespaceUsageResponse) Marshal() (dAtA []byte, err error)

func (*GetNamespaceUsageResponse) MarshalTo

func (m *GetNamespaceUsageResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetNamespaceUsageResponse) MarshalToSizedBuffer

func (m *GetNamespaceUsageResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetNamespaceUsageResponse) ProtoMessage

func (*GetNamespaceUsageResponse) ProtoMessage()

func (*GetNamespaceUsageResponse) Reset

func (m *GetNamespaceUsageResponse) Reset()

func (*GetNamespaceUsageResponse) Size

func (m *GetNamespaceUsageResponse) Size() (n int)

func (*GetNamespaceUsageResponse) String

func (this *GetNamespaceUsageResponse) String() string

func (*GetNamespaceUsageResponse) Unmarshal

func (m *GetNamespaceUsageResponse) Unmarshal(dAtA []byte) error

func (*GetNamespaceUsageResponse) XXX_DiscardUnknown

func (m *GetNamespaceUsageResponse) XXX_DiscardUnknown()

func (*GetNamespaceUsageResponse) XXX_Marshal

func (m *GetNamespaceUsageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetNamespaceUsageResponse) XXX_Merge

func (m *GetNamespaceUsageResponse) XXX_Merge(src proto.Message)

func (*GetNamespaceUsageResponse) XXX_Size

func (m *GetNamespaceUsageResponse) XXX_Size() int

func (*GetNamespaceUsageResponse) XXX_Unmarshal

func (m *GetNamespaceUsageResponse) XXX_Unmarshal(b []byte) error

type GetNamespacesUsageRequest

type GetNamespacesUsageRequest struct {
	// the requested size of the page to retrieve
	PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// the page token
	PageToken string           `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	StartTime *types.Timestamp `protobuf:"bytes,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
	EndTime   *types.Timestamp `protobuf:"bytes,4,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
}

func (*GetNamespacesUsageRequest) Descriptor

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

func (*GetNamespacesUsageRequest) Equal

func (this *GetNamespacesUsageRequest) Equal(that interface{}) bool

func (*GetNamespacesUsageRequest) GetEndTime

func (m *GetNamespacesUsageRequest) GetEndTime() *types.Timestamp

func (*GetNamespacesUsageRequest) GetPageSize

func (m *GetNamespacesUsageRequest) GetPageSize() int32

func (*GetNamespacesUsageRequest) GetPageToken

func (m *GetNamespacesUsageRequest) GetPageToken() string

func (*GetNamespacesUsageRequest) GetStartTime

func (m *GetNamespacesUsageRequest) GetStartTime() *types.Timestamp

func (*GetNamespacesUsageRequest) GoString

func (this *GetNamespacesUsageRequest) GoString() string

func (*GetNamespacesUsageRequest) Marshal

func (m *GetNamespacesUsageRequest) Marshal() (dAtA []byte, err error)

func (*GetNamespacesUsageRequest) MarshalTo

func (m *GetNamespacesUsageRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetNamespacesUsageRequest) MarshalToSizedBuffer

func (m *GetNamespacesUsageRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetNamespacesUsageRequest) ProtoMessage

func (*GetNamespacesUsageRequest) ProtoMessage()

func (*GetNamespacesUsageRequest) Reset

func (m *GetNamespacesUsageRequest) Reset()

func (*GetNamespacesUsageRequest) Size

func (m *GetNamespacesUsageRequest) Size() (n int)

func (*GetNamespacesUsageRequest) String

func (this *GetNamespacesUsageRequest) String() string

func (*GetNamespacesUsageRequest) Unmarshal

func (m *GetNamespacesUsageRequest) Unmarshal(dAtA []byte) error

func (*GetNamespacesUsageRequest) XXX_DiscardUnknown

func (m *GetNamespacesUsageRequest) XXX_DiscardUnknown()

func (*GetNamespacesUsageRequest) XXX_Marshal

func (m *GetNamespacesUsageRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetNamespacesUsageRequest) XXX_Merge

func (m *GetNamespacesUsageRequest) XXX_Merge(src proto.Message)

func (*GetNamespacesUsageRequest) XXX_Size

func (m *GetNamespacesUsageRequest) XXX_Size() int

func (*GetNamespacesUsageRequest) XXX_Unmarshal

func (m *GetNamespacesUsageRequest) XXX_Unmarshal(b []byte) error

type GetNamespacesUsageResponse

type GetNamespacesUsageResponse struct {
	UsageRecords []*v1.NamespaceUsageRecord `protobuf:"bytes,1,rep,name=usage_records,json=usageRecords,proto3" json:"usage_records,omitempty"`
	// the next page's token
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
}

func (*GetNamespacesUsageResponse) Descriptor

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

func (*GetNamespacesUsageResponse) Equal

func (this *GetNamespacesUsageResponse) Equal(that interface{}) bool

func (*GetNamespacesUsageResponse) GetNextPageToken

func (m *GetNamespacesUsageResponse) GetNextPageToken() string

func (*GetNamespacesUsageResponse) GetUsageRecords

func (m *GetNamespacesUsageResponse) GetUsageRecords() []*v1.NamespaceUsageRecord

func (*GetNamespacesUsageResponse) GoString

func (this *GetNamespacesUsageResponse) GoString() string

func (*GetNamespacesUsageResponse) Marshal

func (m *GetNamespacesUsageResponse) Marshal() (dAtA []byte, err error)

func (*GetNamespacesUsageResponse) MarshalTo

func (m *GetNamespacesUsageResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetNamespacesUsageResponse) MarshalToSizedBuffer

func (m *GetNamespacesUsageResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetNamespacesUsageResponse) ProtoMessage

func (*GetNamespacesUsageResponse) ProtoMessage()

func (*GetNamespacesUsageResponse) Reset

func (m *GetNamespacesUsageResponse) Reset()

func (*GetNamespacesUsageResponse) Size

func (m *GetNamespacesUsageResponse) Size() (n int)

func (*GetNamespacesUsageResponse) String

func (this *GetNamespacesUsageResponse) String() string

func (*GetNamespacesUsageResponse) Unmarshal

func (m *GetNamespacesUsageResponse) Unmarshal(dAtA []byte) error

func (*GetNamespacesUsageResponse) XXX_DiscardUnknown

func (m *GetNamespacesUsageResponse) XXX_DiscardUnknown()

func (*GetNamespacesUsageResponse) XXX_Marshal

func (m *GetNamespacesUsageResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetNamespacesUsageResponse) XXX_Merge

func (m *GetNamespacesUsageResponse) XXX_Merge(src proto.Message)

func (*GetNamespacesUsageResponse) XXX_Size

func (m *GetNamespacesUsageResponse) XXX_Size() int

func (*GetNamespacesUsageResponse) XXX_Unmarshal

func (m *GetNamespacesUsageResponse) XXX_Unmarshal(b []byte) error

type GetRegionsRequest added in v0.11.0

type GetRegionsRequest struct {
}

func (*GetRegionsRequest) Descriptor added in v0.11.0

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

func (*GetRegionsRequest) Equal added in v0.11.0

func (this *GetRegionsRequest) Equal(that interface{}) bool

func (*GetRegionsRequest) GoString added in v0.11.0

func (this *GetRegionsRequest) GoString() string

func (*GetRegionsRequest) Marshal added in v0.11.0

func (m *GetRegionsRequest) Marshal() (dAtA []byte, err error)

func (*GetRegionsRequest) MarshalTo added in v0.11.0

func (m *GetRegionsRequest) MarshalTo(dAtA []byte) (int, error)

func (*GetRegionsRequest) MarshalToSizedBuffer added in v0.11.0

func (m *GetRegionsRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetRegionsRequest) ProtoMessage added in v0.11.0

func (*GetRegionsRequest) ProtoMessage()

func (*GetRegionsRequest) Reset added in v0.11.0

func (m *GetRegionsRequest) Reset()

func (*GetRegionsRequest) Size added in v0.11.0

func (m *GetRegionsRequest) Size() (n int)

func (*GetRegionsRequest) String added in v0.11.0

func (this *GetRegionsRequest) String() string

func (*GetRegionsRequest) Unmarshal added in v0.11.0

func (m *GetRegionsRequest) Unmarshal(dAtA []byte) error

func (*GetRegionsRequest) XXX_DiscardUnknown added in v0.11.0

func (m *GetRegionsRequest) XXX_DiscardUnknown()

func (*GetRegionsRequest) XXX_Marshal added in v0.11.0

func (m *GetRegionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRegionsRequest) XXX_Merge added in v0.11.0

func (m *GetRegionsRequest) XXX_Merge(src proto.Message)

func (*GetRegionsRequest) XXX_Size added in v0.11.0

func (m *GetRegionsRequest) XXX_Size() int

func (*GetRegionsRequest) XXX_Unmarshal added in v0.11.0

func (m *GetRegionsRequest) XXX_Unmarshal(b []byte) error

type GetRegionsResponse added in v0.11.0

type GetRegionsResponse struct {
	Regions []*v12.Region `protobuf:"bytes,1,rep,name=regions,proto3" json:"regions,omitempty"`
}

func (*GetRegionsResponse) Descriptor added in v0.11.0

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

func (*GetRegionsResponse) Equal added in v0.11.0

func (this *GetRegionsResponse) Equal(that interface{}) bool

func (*GetRegionsResponse) GetRegions added in v0.11.0

func (m *GetRegionsResponse) GetRegions() []*v12.Region

func (*GetRegionsResponse) GoString added in v0.11.0

func (this *GetRegionsResponse) GoString() string

func (*GetRegionsResponse) Marshal added in v0.11.0

func (m *GetRegionsResponse) Marshal() (dAtA []byte, err error)

func (*GetRegionsResponse) MarshalTo added in v0.11.0

func (m *GetRegionsResponse) MarshalTo(dAtA []byte) (int, error)

func (*GetRegionsResponse) MarshalToSizedBuffer added in v0.11.0

func (m *GetRegionsResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*GetRegionsResponse) ProtoMessage added in v0.11.0

func (*GetRegionsResponse) ProtoMessage()

func (*GetRegionsResponse) Reset added in v0.11.0

func (m *GetRegionsResponse) Reset()

func (*GetRegionsResponse) Size added in v0.11.0

func (m *GetRegionsResponse) Size() (n int)

func (*GetRegionsResponse) String added in v0.11.0

func (this *GetRegionsResponse) String() string

func (*GetRegionsResponse) Unmarshal added in v0.11.0

func (m *GetRegionsResponse) Unmarshal(dAtA []byte) error

func (*GetRegionsResponse) XXX_DiscardUnknown added in v0.11.0

func (m *GetRegionsResponse) XXX_DiscardUnknown()

func (*GetRegionsResponse) XXX_Marshal added in v0.11.0

func (m *GetRegionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*GetRegionsResponse) XXX_Merge added in v0.11.0

func (m *GetRegionsResponse) XXX_Merge(src proto.Message)

func (*GetRegionsResponse) XXX_Size added in v0.11.0

func (m *GetRegionsResponse) XXX_Size() int

func (*GetRegionsResponse) XXX_Unmarshal added in v0.11.0

func (m *GetRegionsResponse) XXX_Unmarshal(b []byte) error

type UnimplementedAccountServiceServer

type UnimplementedAccountServiceServer struct {
}

UnimplementedAccountServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAccountServiceServer) GetAccount

func (*UnimplementedAccountServiceServer) GetAccountUsage

func (*UnimplementedAccountServiceServer) GetNamespaceUsage

func (*UnimplementedAccountServiceServer) GetNamespacesUsage

func (*UnimplementedAccountServiceServer) GetRegions added in v0.11.0

func (*UnimplementedAccountServiceServer) UpdateAccount

type UpdateAccountRequest

type UpdateAccountRequest struct {
	// the account specification
	Spec *v1.AccountSpec `protobuf:"bytes,1,opt,name=spec,proto3" json:"spec,omitempty"`
	// the version of the account for which this update is intended for
	// the latest version can be found by calling GetAccount
	ResourceVersion string `protobuf:"bytes,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// the request id to use for this operation - optional
	RequestId string `protobuf:"bytes,3,opt,name=request_id,json=requestId,proto3" json:"request_id,omitempty"`
}

func (*UpdateAccountRequest) Descriptor

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

func (*UpdateAccountRequest) Equal

func (this *UpdateAccountRequest) Equal(that interface{}) bool

func (*UpdateAccountRequest) GetRequestId

func (m *UpdateAccountRequest) GetRequestId() string

func (*UpdateAccountRequest) GetResourceVersion

func (m *UpdateAccountRequest) GetResourceVersion() string

func (*UpdateAccountRequest) GetSpec

func (m *UpdateAccountRequest) GetSpec() *v1.AccountSpec

func (*UpdateAccountRequest) GoString

func (this *UpdateAccountRequest) GoString() string

func (*UpdateAccountRequest) Marshal

func (m *UpdateAccountRequest) Marshal() (dAtA []byte, err error)

func (*UpdateAccountRequest) MarshalTo

func (m *UpdateAccountRequest) MarshalTo(dAtA []byte) (int, error)

func (*UpdateAccountRequest) MarshalToSizedBuffer

func (m *UpdateAccountRequest) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateAccountRequest) ProtoMessage

func (*UpdateAccountRequest) ProtoMessage()

func (*UpdateAccountRequest) Reset

func (m *UpdateAccountRequest) Reset()

func (*UpdateAccountRequest) Size

func (m *UpdateAccountRequest) Size() (n int)

func (*UpdateAccountRequest) String

func (this *UpdateAccountRequest) String() string

func (*UpdateAccountRequest) Unmarshal

func (m *UpdateAccountRequest) Unmarshal(dAtA []byte) error

func (*UpdateAccountRequest) XXX_DiscardUnknown

func (m *UpdateAccountRequest) XXX_DiscardUnknown()

func (*UpdateAccountRequest) XXX_Marshal

func (m *UpdateAccountRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateAccountRequest) XXX_Merge

func (m *UpdateAccountRequest) XXX_Merge(src proto.Message)

func (*UpdateAccountRequest) XXX_Size

func (m *UpdateAccountRequest) XXX_Size() int

func (*UpdateAccountRequest) XXX_Unmarshal

func (m *UpdateAccountRequest) XXX_Unmarshal(b []byte) error

type UpdateAccountResponse

type UpdateAccountResponse struct {
	// the request status of the update operation
	RequestStatus *v11.RequestStatus `protobuf:"bytes,1,opt,name=request_status,json=requestStatus,proto3" json:"request_status,omitempty"`
}

func (*UpdateAccountResponse) Descriptor

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

func (*UpdateAccountResponse) Equal

func (this *UpdateAccountResponse) Equal(that interface{}) bool

func (*UpdateAccountResponse) GetRequestStatus

func (m *UpdateAccountResponse) GetRequestStatus() *v11.RequestStatus

func (*UpdateAccountResponse) GoString

func (this *UpdateAccountResponse) GoString() string

func (*UpdateAccountResponse) Marshal

func (m *UpdateAccountResponse) Marshal() (dAtA []byte, err error)

func (*UpdateAccountResponse) MarshalTo

func (m *UpdateAccountResponse) MarshalTo(dAtA []byte) (int, error)

func (*UpdateAccountResponse) MarshalToSizedBuffer

func (m *UpdateAccountResponse) MarshalToSizedBuffer(dAtA []byte) (int, error)

func (*UpdateAccountResponse) ProtoMessage

func (*UpdateAccountResponse) ProtoMessage()

func (*UpdateAccountResponse) Reset

func (m *UpdateAccountResponse) Reset()

func (*UpdateAccountResponse) Size

func (m *UpdateAccountResponse) Size() (n int)

func (*UpdateAccountResponse) String

func (this *UpdateAccountResponse) String() string

func (*UpdateAccountResponse) Unmarshal

func (m *UpdateAccountResponse) Unmarshal(dAtA []byte) error

func (*UpdateAccountResponse) XXX_DiscardUnknown

func (m *UpdateAccountResponse) XXX_DiscardUnknown()

func (*UpdateAccountResponse) XXX_Marshal

func (m *UpdateAccountResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*UpdateAccountResponse) XXX_Merge

func (m *UpdateAccountResponse) XXX_Merge(src proto.Message)

func (*UpdateAccountResponse) XXX_Size

func (m *UpdateAccountResponse) XXX_Size() int

func (*UpdateAccountResponse) XXX_Unmarshal

func (m *UpdateAccountResponse) XXX_Unmarshal(b []byte) error

Jump to

Keyboard shortcuts

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