cloudservice

package
v1.33.0 Latest Latest
Warning

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

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

Documentation

Overview

Code generated by protoc-gen-go-helpers. DO NOT EDIT.

Package cloudservice is a reverse proxy.

It translates gRPC into RESTful JSON APIs.

Index

Constants

View Source
const (
	CloudService_GetUsers_FullMethodName                    = "/temporal.api.cloud.cloudservice.v1.CloudService/GetUsers"
	CloudService_GetUser_FullMethodName                     = "/temporal.api.cloud.cloudservice.v1.CloudService/GetUser"
	CloudService_CreateUser_FullMethodName                  = "/temporal.api.cloud.cloudservice.v1.CloudService/CreateUser"
	CloudService_UpdateUser_FullMethodName                  = "/temporal.api.cloud.cloudservice.v1.CloudService/UpdateUser"
	CloudService_DeleteUser_FullMethodName                  = "/temporal.api.cloud.cloudservice.v1.CloudService/DeleteUser"
	CloudService_SetUserNamespaceAccess_FullMethodName      = "/temporal.api.cloud.cloudservice.v1.CloudService/SetUserNamespaceAccess"
	CloudService_GetAsyncOperation_FullMethodName           = "/temporal.api.cloud.cloudservice.v1.CloudService/GetAsyncOperation"
	CloudService_CreateNamespace_FullMethodName             = "/temporal.api.cloud.cloudservice.v1.CloudService/CreateNamespace"
	CloudService_GetNamespaces_FullMethodName               = "/temporal.api.cloud.cloudservice.v1.CloudService/GetNamespaces"
	CloudService_GetNamespace_FullMethodName                = "/temporal.api.cloud.cloudservice.v1.CloudService/GetNamespace"
	CloudService_UpdateNamespace_FullMethodName             = "/temporal.api.cloud.cloudservice.v1.CloudService/UpdateNamespace"
	CloudService_RenameCustomSearchAttribute_FullMethodName = "/temporal.api.cloud.cloudservice.v1.CloudService/RenameCustomSearchAttribute"
	CloudService_DeleteNamespace_FullMethodName             = "/temporal.api.cloud.cloudservice.v1.CloudService/DeleteNamespace"
	CloudService_GetRegions_FullMethodName                  = "/temporal.api.cloud.cloudservice.v1.CloudService/GetRegions"
	CloudService_GetRegion_FullMethodName                   = "/temporal.api.cloud.cloudservice.v1.CloudService/GetRegion"
)

Variables

View Source
var CloudService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "temporal.api.cloud.cloudservice.v1.CloudService",
	HandlerType: (*CloudServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "GetUsers",
			Handler:    _CloudService_GetUsers_Handler,
		},
		{
			MethodName: "GetUser",
			Handler:    _CloudService_GetUser_Handler,
		},
		{
			MethodName: "CreateUser",
			Handler:    _CloudService_CreateUser_Handler,
		},
		{
			MethodName: "UpdateUser",
			Handler:    _CloudService_UpdateUser_Handler,
		},
		{
			MethodName: "DeleteUser",
			Handler:    _CloudService_DeleteUser_Handler,
		},
		{
			MethodName: "SetUserNamespaceAccess",
			Handler:    _CloudService_SetUserNamespaceAccess_Handler,
		},
		{
			MethodName: "GetAsyncOperation",
			Handler:    _CloudService_GetAsyncOperation_Handler,
		},
		{
			MethodName: "CreateNamespace",
			Handler:    _CloudService_CreateNamespace_Handler,
		},
		{
			MethodName: "GetNamespaces",
			Handler:    _CloudService_GetNamespaces_Handler,
		},
		{
			MethodName: "GetNamespace",
			Handler:    _CloudService_GetNamespace_Handler,
		},
		{
			MethodName: "UpdateNamespace",
			Handler:    _CloudService_UpdateNamespace_Handler,
		},
		{
			MethodName: "RenameCustomSearchAttribute",
			Handler:    _CloudService_RenameCustomSearchAttribute_Handler,
		},
		{
			MethodName: "DeleteNamespace",
			Handler:    _CloudService_DeleteNamespace_Handler,
		},
		{
			MethodName: "GetRegions",
			Handler:    _CloudService_GetRegions_Handler,
		},
		{
			MethodName: "GetRegion",
			Handler:    _CloudService_GetRegion_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "temporal/api/cloud/cloudservice/v1/service.proto",
}

CloudService_ServiceDesc is the grpc.ServiceDesc for CloudService 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_temporal_api_cloud_cloudservice_v1_request_response_proto protoreflect.FileDescriptor
View Source
var File_temporal_api_cloud_cloudservice_v1_service_proto protoreflect.FileDescriptor

Functions

func RegisterCloudServiceHandler

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

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

func RegisterCloudServiceHandlerClient

func RegisterCloudServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client CloudServiceClient) error

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

func RegisterCloudServiceHandlerFromEndpoint

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

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

func RegisterCloudServiceHandlerServer

func RegisterCloudServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server CloudServiceServer) error

RegisterCloudServiceHandlerServer registers the http handlers for service CloudService to "mux". UnaryRPC :call CloudServiceServer 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 RegisterCloudServiceHandlerFromEndpoint instead.

func RegisterCloudServiceServer

func RegisterCloudServiceServer(s grpc.ServiceRegistrar, srv CloudServiceServer)

Types

type CloudServiceClient

type CloudServiceClient interface {
	// Gets all known users
	GetUsers(ctx context.Context, in *GetUsersRequest, opts ...grpc.CallOption) (*GetUsersResponse, error)
	// Get a user
	GetUser(ctx context.Context, in *GetUserRequest, opts ...grpc.CallOption) (*GetUserResponse, error)
	// Create a user
	CreateUser(ctx context.Context, in *CreateUserRequest, opts ...grpc.CallOption) (*CreateUserResponse, error)
	// Update a user
	UpdateUser(ctx context.Context, in *UpdateUserRequest, opts ...grpc.CallOption) (*UpdateUserResponse, error)
	// Delete a user
	DeleteUser(ctx context.Context, in *DeleteUserRequest, opts ...grpc.CallOption) (*DeleteUserResponse, error)
	// Set a user's access to a namespace
	SetUserNamespaceAccess(ctx context.Context, in *SetUserNamespaceAccessRequest, opts ...grpc.CallOption) (*SetUserNamespaceAccessResponse, error)
	// Get the latest information on an async operation
	GetAsyncOperation(ctx context.Context, in *GetAsyncOperationRequest, opts ...grpc.CallOption) (*GetAsyncOperationResponse, error)
	// Create a new namespace
	CreateNamespace(ctx context.Context, in *CreateNamespaceRequest, opts ...grpc.CallOption) (*CreateNamespaceResponse, error)
	// Get all namespaces
	GetNamespaces(ctx context.Context, in *GetNamespacesRequest, opts ...grpc.CallOption) (*GetNamespacesResponse, error)
	// Get a namespace
	GetNamespace(ctx context.Context, in *GetNamespaceRequest, opts ...grpc.CallOption) (*GetNamespaceResponse, error)
	// Update a namespace
	UpdateNamespace(ctx context.Context, in *UpdateNamespaceRequest, opts ...grpc.CallOption) (*UpdateNamespaceResponse, error)
	// Rename an existing customer search attribute
	RenameCustomSearchAttribute(ctx context.Context, in *RenameCustomSearchAttributeRequest, opts ...grpc.CallOption) (*RenameCustomSearchAttributeResponse, error)
	// Delete a namespace
	DeleteNamespace(ctx context.Context, in *DeleteNamespaceRequest, opts ...grpc.CallOption) (*DeleteNamespaceResponse, error)
	// Get all regions
	GetRegions(ctx context.Context, in *GetRegionsRequest, opts ...grpc.CallOption) (*GetRegionsResponse, error)
	// Get a region
	GetRegion(ctx context.Context, in *GetRegionRequest, opts ...grpc.CallOption) (*GetRegionResponse, error)
}

CloudServiceClient is the client API for CloudService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type CloudServiceServer

type CloudServiceServer interface {
	// Gets all known users
	GetUsers(context.Context, *GetUsersRequest) (*GetUsersResponse, error)
	// Get a user
	GetUser(context.Context, *GetUserRequest) (*GetUserResponse, error)
	// Create a user
	CreateUser(context.Context, *CreateUserRequest) (*CreateUserResponse, error)
	// Update a user
	UpdateUser(context.Context, *UpdateUserRequest) (*UpdateUserResponse, error)
	// Delete a user
	DeleteUser(context.Context, *DeleteUserRequest) (*DeleteUserResponse, error)
	// Set a user's access to a namespace
	SetUserNamespaceAccess(context.Context, *SetUserNamespaceAccessRequest) (*SetUserNamespaceAccessResponse, error)
	// Get the latest information on an async operation
	GetAsyncOperation(context.Context, *GetAsyncOperationRequest) (*GetAsyncOperationResponse, error)
	// Create a new namespace
	CreateNamespace(context.Context, *CreateNamespaceRequest) (*CreateNamespaceResponse, error)
	// Get all namespaces
	GetNamespaces(context.Context, *GetNamespacesRequest) (*GetNamespacesResponse, error)
	// Get a namespace
	GetNamespace(context.Context, *GetNamespaceRequest) (*GetNamespaceResponse, error)
	// Update a namespace
	UpdateNamespace(context.Context, *UpdateNamespaceRequest) (*UpdateNamespaceResponse, error)
	// Rename an existing customer search attribute
	RenameCustomSearchAttribute(context.Context, *RenameCustomSearchAttributeRequest) (*RenameCustomSearchAttributeResponse, error)
	// Delete a namespace
	DeleteNamespace(context.Context, *DeleteNamespaceRequest) (*DeleteNamespaceResponse, error)
	// Get all regions
	GetRegions(context.Context, *GetRegionsRequest) (*GetRegionsResponse, error)
	// Get a region
	GetRegion(context.Context, *GetRegionRequest) (*GetRegionResponse, error)
	// contains filtered or unexported methods
}

CloudServiceServer is the server API for CloudService service. All implementations must embed UnimplementedCloudServiceServer for forward compatibility

type CreateNamespaceRequest

type CreateNamespaceRequest struct {

	// The namespace specification.
	Spec *v12.NamespaceSpec `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	// The id to use for this async operation.
	// Optional, if not provided a random id will be generated.
	AsyncOperationId string `protobuf:"bytes,3,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateNamespaceRequest) Descriptor deprecated

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

Deprecated: Use CreateNamespaceRequest.ProtoReflect.Descriptor instead.

func (*CreateNamespaceRequest) Equal

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

Equal returns whether two CreateNamespaceRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*CreateNamespaceRequest) GetAsyncOperationId

func (x *CreateNamespaceRequest) GetAsyncOperationId() string

func (*CreateNamespaceRequest) GetSpec

func (*CreateNamespaceRequest) Marshal

func (val *CreateNamespaceRequest) Marshal() ([]byte, error)

Marshal an object of type CreateNamespaceRequest to the protobuf v3 wire format

func (*CreateNamespaceRequest) ProtoMessage

func (*CreateNamespaceRequest) ProtoMessage()

func (*CreateNamespaceRequest) ProtoReflect

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

func (*CreateNamespaceRequest) Reset

func (x *CreateNamespaceRequest) Reset()

func (*CreateNamespaceRequest) Size

func (val *CreateNamespaceRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*CreateNamespaceRequest) String

func (x *CreateNamespaceRequest) String() string

func (*CreateNamespaceRequest) Unmarshal

func (val *CreateNamespaceRequest) Unmarshal(buf []byte) error

Unmarshal an object of type CreateNamespaceRequest from the protobuf v3 wire format

type CreateNamespaceResponse

type CreateNamespaceResponse struct {

	// The namespace that was created.
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// The async operation.
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,2,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateNamespaceResponse) Descriptor deprecated

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

Deprecated: Use CreateNamespaceResponse.ProtoReflect.Descriptor instead.

func (*CreateNamespaceResponse) Equal

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

Equal returns whether two CreateNamespaceResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*CreateNamespaceResponse) GetAsyncOperation

func (x *CreateNamespaceResponse) GetAsyncOperation() *v11.AsyncOperation

func (*CreateNamespaceResponse) GetNamespace

func (x *CreateNamespaceResponse) GetNamespace() string

func (*CreateNamespaceResponse) Marshal

func (val *CreateNamespaceResponse) Marshal() ([]byte, error)

Marshal an object of type CreateNamespaceResponse to the protobuf v3 wire format

func (*CreateNamespaceResponse) ProtoMessage

func (*CreateNamespaceResponse) ProtoMessage()

func (*CreateNamespaceResponse) ProtoReflect

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

func (*CreateNamespaceResponse) Reset

func (x *CreateNamespaceResponse) Reset()

func (*CreateNamespaceResponse) Size

func (val *CreateNamespaceResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*CreateNamespaceResponse) String

func (x *CreateNamespaceResponse) String() string

func (*CreateNamespaceResponse) Unmarshal

func (val *CreateNamespaceResponse) Unmarshal(buf []byte) error

Unmarshal an object of type CreateNamespaceResponse from the protobuf v3 wire format

type CreateUserRequest

type CreateUserRequest struct {

	// The spec for the user to invite
	Spec *v1.UserSpec `protobuf:"bytes,1,opt,name=spec,proto3" json:"spec,omitempty"`
	// The id to use for this async operation - optional
	AsyncOperationId string `protobuf:"bytes,2,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserRequest) Descriptor deprecated

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

Deprecated: Use CreateUserRequest.ProtoReflect.Descriptor instead.

func (*CreateUserRequest) Equal

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

Equal returns whether two CreateUserRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*CreateUserRequest) GetAsyncOperationId

func (x *CreateUserRequest) GetAsyncOperationId() string

func (*CreateUserRequest) GetSpec

func (x *CreateUserRequest) GetSpec() *v1.UserSpec

func (*CreateUserRequest) Marshal

func (val *CreateUserRequest) Marshal() ([]byte, error)

Marshal an object of type CreateUserRequest to the protobuf v3 wire format

func (*CreateUserRequest) ProtoMessage

func (*CreateUserRequest) ProtoMessage()

func (*CreateUserRequest) ProtoReflect

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

func (*CreateUserRequest) Reset

func (x *CreateUserRequest) Reset()

func (*CreateUserRequest) Size

func (val *CreateUserRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*CreateUserRequest) String

func (x *CreateUserRequest) String() string

func (*CreateUserRequest) Unmarshal

func (val *CreateUserRequest) Unmarshal(buf []byte) error

Unmarshal an object of type CreateUserRequest from the protobuf v3 wire format

type CreateUserResponse

type CreateUserResponse struct {

	// The id of the user that was invited
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// The async operation
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,2,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateUserResponse) Descriptor deprecated

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

Deprecated: Use CreateUserResponse.ProtoReflect.Descriptor instead.

func (*CreateUserResponse) Equal

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

Equal returns whether two CreateUserResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*CreateUserResponse) GetAsyncOperation

func (x *CreateUserResponse) GetAsyncOperation() *v11.AsyncOperation

func (*CreateUserResponse) GetUserId

func (x *CreateUserResponse) GetUserId() string

func (*CreateUserResponse) Marshal

func (val *CreateUserResponse) Marshal() ([]byte, error)

Marshal an object of type CreateUserResponse to the protobuf v3 wire format

func (*CreateUserResponse) ProtoMessage

func (*CreateUserResponse) ProtoMessage()

func (*CreateUserResponse) ProtoReflect

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

func (*CreateUserResponse) Reset

func (x *CreateUserResponse) Reset()

func (*CreateUserResponse) Size

func (val *CreateUserResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*CreateUserResponse) String

func (x *CreateUserResponse) String() string

func (*CreateUserResponse) Unmarshal

func (val *CreateUserResponse) Unmarshal(buf []byte) error

Unmarshal an object of type CreateUserResponse from the protobuf v3 wire format

type DeleteNamespaceRequest

type DeleteNamespaceRequest struct {

	// The namespace to delete.
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// The version of the namespace for which this delete is intended for.
	// The latest version can be found in the namespace status.
	ResourceVersion string `protobuf:"bytes,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// The id to use for this async operation.
	// Optional, if not provided a random id will be generated.
	AsyncOperationId string `protobuf:"bytes,3,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteNamespaceRequest) Descriptor deprecated

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

Deprecated: Use DeleteNamespaceRequest.ProtoReflect.Descriptor instead.

func (*DeleteNamespaceRequest) Equal

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

Equal returns whether two DeleteNamespaceRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*DeleteNamespaceRequest) GetAsyncOperationId

func (x *DeleteNamespaceRequest) GetAsyncOperationId() string

func (*DeleteNamespaceRequest) GetNamespace

func (x *DeleteNamespaceRequest) GetNamespace() string

func (*DeleteNamespaceRequest) GetResourceVersion

func (x *DeleteNamespaceRequest) GetResourceVersion() string

func (*DeleteNamespaceRequest) Marshal

func (val *DeleteNamespaceRequest) Marshal() ([]byte, error)

Marshal an object of type DeleteNamespaceRequest to the protobuf v3 wire format

func (*DeleteNamespaceRequest) ProtoMessage

func (*DeleteNamespaceRequest) ProtoMessage()

func (*DeleteNamespaceRequest) ProtoReflect

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

func (*DeleteNamespaceRequest) Reset

func (x *DeleteNamespaceRequest) Reset()

func (*DeleteNamespaceRequest) Size

func (val *DeleteNamespaceRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*DeleteNamespaceRequest) String

func (x *DeleteNamespaceRequest) String() string

func (*DeleteNamespaceRequest) Unmarshal

func (val *DeleteNamespaceRequest) Unmarshal(buf []byte) error

Unmarshal an object of type DeleteNamespaceRequest from the protobuf v3 wire format

type DeleteNamespaceResponse

type DeleteNamespaceResponse struct {

	// The async operation.
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteNamespaceResponse) Descriptor deprecated

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

Deprecated: Use DeleteNamespaceResponse.ProtoReflect.Descriptor instead.

func (*DeleteNamespaceResponse) Equal

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

Equal returns whether two DeleteNamespaceResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*DeleteNamespaceResponse) GetAsyncOperation

func (x *DeleteNamespaceResponse) GetAsyncOperation() *v11.AsyncOperation

func (*DeleteNamespaceResponse) Marshal

func (val *DeleteNamespaceResponse) Marshal() ([]byte, error)

Marshal an object of type DeleteNamespaceResponse to the protobuf v3 wire format

func (*DeleteNamespaceResponse) ProtoMessage

func (*DeleteNamespaceResponse) ProtoMessage()

func (*DeleteNamespaceResponse) ProtoReflect

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

func (*DeleteNamespaceResponse) Reset

func (x *DeleteNamespaceResponse) Reset()

func (*DeleteNamespaceResponse) Size

func (val *DeleteNamespaceResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*DeleteNamespaceResponse) String

func (x *DeleteNamespaceResponse) String() string

func (*DeleteNamespaceResponse) Unmarshal

func (val *DeleteNamespaceResponse) Unmarshal(buf []byte) error

Unmarshal an object of type DeleteNamespaceResponse from the protobuf v3 wire format

type DeleteUserRequest

type DeleteUserRequest struct {

	// The id of the user to delete
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// The version of the user for which this delete is intended for
	// The latest version can be found in the GetUser operation response
	ResourceVersion string `protobuf:"bytes,2,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// The id to use for this async operation - optional
	AsyncOperationId string `protobuf:"bytes,3,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteUserRequest) Descriptor deprecated

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

Deprecated: Use DeleteUserRequest.ProtoReflect.Descriptor instead.

func (*DeleteUserRequest) Equal

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

Equal returns whether two DeleteUserRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*DeleteUserRequest) GetAsyncOperationId

func (x *DeleteUserRequest) GetAsyncOperationId() string

func (*DeleteUserRequest) GetResourceVersion

func (x *DeleteUserRequest) GetResourceVersion() string

func (*DeleteUserRequest) GetUserId

func (x *DeleteUserRequest) GetUserId() string

func (*DeleteUserRequest) Marshal

func (val *DeleteUserRequest) Marshal() ([]byte, error)

Marshal an object of type DeleteUserRequest to the protobuf v3 wire format

func (*DeleteUserRequest) ProtoMessage

func (*DeleteUserRequest) ProtoMessage()

func (*DeleteUserRequest) ProtoReflect

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

func (*DeleteUserRequest) Reset

func (x *DeleteUserRequest) Reset()

func (*DeleteUserRequest) Size

func (val *DeleteUserRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*DeleteUserRequest) String

func (x *DeleteUserRequest) String() string

func (*DeleteUserRequest) Unmarshal

func (val *DeleteUserRequest) Unmarshal(buf []byte) error

Unmarshal an object of type DeleteUserRequest from the protobuf v3 wire format

type DeleteUserResponse

type DeleteUserResponse struct {

	// The async operation
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteUserResponse) Descriptor deprecated

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

Deprecated: Use DeleteUserResponse.ProtoReflect.Descriptor instead.

func (*DeleteUserResponse) Equal

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

Equal returns whether two DeleteUserResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*DeleteUserResponse) GetAsyncOperation

func (x *DeleteUserResponse) GetAsyncOperation() *v11.AsyncOperation

func (*DeleteUserResponse) Marshal

func (val *DeleteUserResponse) Marshal() ([]byte, error)

Marshal an object of type DeleteUserResponse to the protobuf v3 wire format

func (*DeleteUserResponse) ProtoMessage

func (*DeleteUserResponse) ProtoMessage()

func (*DeleteUserResponse) ProtoReflect

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

func (*DeleteUserResponse) Reset

func (x *DeleteUserResponse) Reset()

func (*DeleteUserResponse) Size

func (val *DeleteUserResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*DeleteUserResponse) String

func (x *DeleteUserResponse) String() string

func (*DeleteUserResponse) Unmarshal

func (val *DeleteUserResponse) Unmarshal(buf []byte) error

Unmarshal an object of type DeleteUserResponse from the protobuf v3 wire format

type GetAsyncOperationRequest

type GetAsyncOperationRequest struct {

	// The id of the async operation to get
	AsyncOperationId string `protobuf:"bytes,1,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAsyncOperationRequest) Descriptor deprecated

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

Deprecated: Use GetAsyncOperationRequest.ProtoReflect.Descriptor instead.

func (*GetAsyncOperationRequest) Equal

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

Equal returns whether two GetAsyncOperationRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetAsyncOperationRequest) GetAsyncOperationId

func (x *GetAsyncOperationRequest) GetAsyncOperationId() string

func (*GetAsyncOperationRequest) Marshal

func (val *GetAsyncOperationRequest) Marshal() ([]byte, error)

Marshal an object of type GetAsyncOperationRequest to the protobuf v3 wire format

func (*GetAsyncOperationRequest) ProtoMessage

func (*GetAsyncOperationRequest) ProtoMessage()

func (*GetAsyncOperationRequest) ProtoReflect

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

func (*GetAsyncOperationRequest) Reset

func (x *GetAsyncOperationRequest) Reset()

func (*GetAsyncOperationRequest) Size

func (val *GetAsyncOperationRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetAsyncOperationRequest) String

func (x *GetAsyncOperationRequest) String() string

func (*GetAsyncOperationRequest) Unmarshal

func (val *GetAsyncOperationRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetAsyncOperationRequest from the protobuf v3 wire format

type GetAsyncOperationResponse

type GetAsyncOperationResponse struct {

	// The async operation
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*GetAsyncOperationResponse) Descriptor deprecated

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

Deprecated: Use GetAsyncOperationResponse.ProtoReflect.Descriptor instead.

func (*GetAsyncOperationResponse) Equal

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

Equal returns whether two GetAsyncOperationResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetAsyncOperationResponse) GetAsyncOperation

func (x *GetAsyncOperationResponse) GetAsyncOperation() *v11.AsyncOperation

func (*GetAsyncOperationResponse) Marshal

func (val *GetAsyncOperationResponse) Marshal() ([]byte, error)

Marshal an object of type GetAsyncOperationResponse to the protobuf v3 wire format

func (*GetAsyncOperationResponse) ProtoMessage

func (*GetAsyncOperationResponse) ProtoMessage()

func (*GetAsyncOperationResponse) ProtoReflect

func (*GetAsyncOperationResponse) Reset

func (x *GetAsyncOperationResponse) Reset()

func (*GetAsyncOperationResponse) Size

func (val *GetAsyncOperationResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetAsyncOperationResponse) String

func (x *GetAsyncOperationResponse) String() string

func (*GetAsyncOperationResponse) Unmarshal

func (val *GetAsyncOperationResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetAsyncOperationResponse from the protobuf v3 wire format

type GetNamespaceRequest

type GetNamespaceRequest struct {

	// The namespace to get.
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNamespaceRequest) Descriptor deprecated

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

Deprecated: Use GetNamespaceRequest.ProtoReflect.Descriptor instead.

func (*GetNamespaceRequest) Equal

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

Equal returns whether two GetNamespaceRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetNamespaceRequest) GetNamespace

func (x *GetNamespaceRequest) GetNamespace() string

func (*GetNamespaceRequest) Marshal

func (val *GetNamespaceRequest) Marshal() ([]byte, error)

Marshal an object of type GetNamespaceRequest to the protobuf v3 wire format

func (*GetNamespaceRequest) ProtoMessage

func (*GetNamespaceRequest) ProtoMessage()

func (*GetNamespaceRequest) ProtoReflect

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

func (*GetNamespaceRequest) Reset

func (x *GetNamespaceRequest) Reset()

func (*GetNamespaceRequest) Size

func (val *GetNamespaceRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetNamespaceRequest) String

func (x *GetNamespaceRequest) String() string

func (*GetNamespaceRequest) Unmarshal

func (val *GetNamespaceRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetNamespaceRequest from the protobuf v3 wire format

type GetNamespaceResponse

type GetNamespaceResponse struct {

	// The namespace.
	Namespace *v12.Namespace `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNamespaceResponse) Descriptor deprecated

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

Deprecated: Use GetNamespaceResponse.ProtoReflect.Descriptor instead.

func (*GetNamespaceResponse) Equal

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

Equal returns whether two GetNamespaceResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetNamespaceResponse) GetNamespace

func (x *GetNamespaceResponse) GetNamespace() *v12.Namespace

func (*GetNamespaceResponse) Marshal

func (val *GetNamespaceResponse) Marshal() ([]byte, error)

Marshal an object of type GetNamespaceResponse to the protobuf v3 wire format

func (*GetNamespaceResponse) ProtoMessage

func (*GetNamespaceResponse) ProtoMessage()

func (*GetNamespaceResponse) ProtoReflect

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

func (*GetNamespaceResponse) Reset

func (x *GetNamespaceResponse) Reset()

func (*GetNamespaceResponse) Size

func (val *GetNamespaceResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetNamespaceResponse) String

func (x *GetNamespaceResponse) String() string

func (*GetNamespaceResponse) Unmarshal

func (val *GetNamespaceResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetNamespaceResponse from the protobuf v3 wire format

type GetNamespacesRequest

type GetNamespacesRequest struct {

	// The requested size of the page to retrieve.
	// Cannot exceed 1000.
	// Optional, defaults to 100.
	PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// The page token if this is continuing from another response.
	// Optional, defaults to empty.
	PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// Filter namespaces by their name.
	// Optional, defaults to empty.
	Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNamespacesRequest) Descriptor deprecated

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

Deprecated: Use GetNamespacesRequest.ProtoReflect.Descriptor instead.

func (*GetNamespacesRequest) Equal

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

Equal returns whether two GetNamespacesRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetNamespacesRequest) GetName

func (x *GetNamespacesRequest) GetName() string

func (*GetNamespacesRequest) GetPageSize

func (x *GetNamespacesRequest) GetPageSize() int32

func (*GetNamespacesRequest) GetPageToken

func (x *GetNamespacesRequest) GetPageToken() string

func (*GetNamespacesRequest) Marshal

func (val *GetNamespacesRequest) Marshal() ([]byte, error)

Marshal an object of type GetNamespacesRequest to the protobuf v3 wire format

func (*GetNamespacesRequest) ProtoMessage

func (*GetNamespacesRequest) ProtoMessage()

func (*GetNamespacesRequest) ProtoReflect

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

func (*GetNamespacesRequest) Reset

func (x *GetNamespacesRequest) Reset()

func (*GetNamespacesRequest) Size

func (val *GetNamespacesRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetNamespacesRequest) String

func (x *GetNamespacesRequest) String() string

func (*GetNamespacesRequest) Unmarshal

func (val *GetNamespacesRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetNamespacesRequest from the protobuf v3 wire format

type GetNamespacesResponse

type GetNamespacesResponse struct {

	// The list of namespaces in ascending name order.
	Namespaces []*v12.Namespace `protobuf:"bytes,1,rep,name=namespaces,proto3" json:"namespaces,omitempty"`
	// The next page's token.
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*GetNamespacesResponse) Descriptor deprecated

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

Deprecated: Use GetNamespacesResponse.ProtoReflect.Descriptor instead.

func (*GetNamespacesResponse) Equal

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

Equal returns whether two GetNamespacesResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetNamespacesResponse) GetNamespaces

func (x *GetNamespacesResponse) GetNamespaces() []*v12.Namespace

func (*GetNamespacesResponse) GetNextPageToken

func (x *GetNamespacesResponse) GetNextPageToken() string

func (*GetNamespacesResponse) Marshal

func (val *GetNamespacesResponse) Marshal() ([]byte, error)

Marshal an object of type GetNamespacesResponse to the protobuf v3 wire format

func (*GetNamespacesResponse) ProtoMessage

func (*GetNamespacesResponse) ProtoMessage()

func (*GetNamespacesResponse) ProtoReflect

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

func (*GetNamespacesResponse) Reset

func (x *GetNamespacesResponse) Reset()

func (*GetNamespacesResponse) Size

func (val *GetNamespacesResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetNamespacesResponse) String

func (x *GetNamespacesResponse) String() string

func (*GetNamespacesResponse) Unmarshal

func (val *GetNamespacesResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetNamespacesResponse from the protobuf v3 wire format

type GetRegionRequest

type GetRegionRequest struct {

	// The id of the region to get.
	Region string `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRegionRequest) Descriptor deprecated

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

Deprecated: Use GetRegionRequest.ProtoReflect.Descriptor instead.

func (*GetRegionRequest) Equal

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

Equal returns whether two GetRegionRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetRegionRequest) GetRegion

func (x *GetRegionRequest) GetRegion() string

func (*GetRegionRequest) Marshal

func (val *GetRegionRequest) Marshal() ([]byte, error)

Marshal an object of type GetRegionRequest to the protobuf v3 wire format

func (*GetRegionRequest) ProtoMessage

func (*GetRegionRequest) ProtoMessage()

func (*GetRegionRequest) ProtoReflect

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

func (*GetRegionRequest) Reset

func (x *GetRegionRequest) Reset()

func (*GetRegionRequest) Size

func (val *GetRegionRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetRegionRequest) String

func (x *GetRegionRequest) String() string

func (*GetRegionRequest) Unmarshal

func (val *GetRegionRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetRegionRequest from the protobuf v3 wire format

type GetRegionResponse

type GetRegionResponse struct {

	// The temporal cloud region.
	Region *v13.Region `protobuf:"bytes,1,opt,name=region,proto3" json:"region,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRegionResponse) Descriptor deprecated

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

Deprecated: Use GetRegionResponse.ProtoReflect.Descriptor instead.

func (*GetRegionResponse) Equal

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

Equal returns whether two GetRegionResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetRegionResponse) GetRegion

func (x *GetRegionResponse) GetRegion() *v13.Region

func (*GetRegionResponse) Marshal

func (val *GetRegionResponse) Marshal() ([]byte, error)

Marshal an object of type GetRegionResponse to the protobuf v3 wire format

func (*GetRegionResponse) ProtoMessage

func (*GetRegionResponse) ProtoMessage()

func (*GetRegionResponse) ProtoReflect

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

func (*GetRegionResponse) Reset

func (x *GetRegionResponse) Reset()

func (*GetRegionResponse) Size

func (val *GetRegionResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetRegionResponse) String

func (x *GetRegionResponse) String() string

func (*GetRegionResponse) Unmarshal

func (val *GetRegionResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetRegionResponse from the protobuf v3 wire format

type GetRegionsRequest

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

func (*GetRegionsRequest) Descriptor deprecated

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

Deprecated: Use GetRegionsRequest.ProtoReflect.Descriptor instead.

func (*GetRegionsRequest) Equal

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

Equal returns whether two GetRegionsRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetRegionsRequest) Marshal

func (val *GetRegionsRequest) Marshal() ([]byte, error)

Marshal an object of type GetRegionsRequest to the protobuf v3 wire format

func (*GetRegionsRequest) ProtoMessage

func (*GetRegionsRequest) ProtoMessage()

func (*GetRegionsRequest) ProtoReflect

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

func (*GetRegionsRequest) Reset

func (x *GetRegionsRequest) Reset()

func (*GetRegionsRequest) Size

func (val *GetRegionsRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetRegionsRequest) String

func (x *GetRegionsRequest) String() string

func (*GetRegionsRequest) Unmarshal

func (val *GetRegionsRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetRegionsRequest from the protobuf v3 wire format

type GetRegionsResponse

type GetRegionsResponse struct {

	// The temporal cloud regions.
	Regions []*v13.Region `protobuf:"bytes,1,rep,name=regions,proto3" json:"regions,omitempty"`
	// contains filtered or unexported fields
}

func (*GetRegionsResponse) Descriptor deprecated

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

Deprecated: Use GetRegionsResponse.ProtoReflect.Descriptor instead.

func (*GetRegionsResponse) Equal

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

Equal returns whether two GetRegionsResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetRegionsResponse) GetRegions

func (x *GetRegionsResponse) GetRegions() []*v13.Region

func (*GetRegionsResponse) Marshal

func (val *GetRegionsResponse) Marshal() ([]byte, error)

Marshal an object of type GetRegionsResponse to the protobuf v3 wire format

func (*GetRegionsResponse) ProtoMessage

func (*GetRegionsResponse) ProtoMessage()

func (*GetRegionsResponse) ProtoReflect

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

func (*GetRegionsResponse) Reset

func (x *GetRegionsResponse) Reset()

func (*GetRegionsResponse) Size

func (val *GetRegionsResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetRegionsResponse) String

func (x *GetRegionsResponse) String() string

func (*GetRegionsResponse) Unmarshal

func (val *GetRegionsResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetRegionsResponse from the protobuf v3 wire format

type GetUserRequest

type GetUserRequest struct {

	// The id of the user to get
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserRequest) Descriptor deprecated

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

Deprecated: Use GetUserRequest.ProtoReflect.Descriptor instead.

func (*GetUserRequest) Equal

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

Equal returns whether two GetUserRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetUserRequest) GetUserId

func (x *GetUserRequest) GetUserId() string

func (*GetUserRequest) Marshal

func (val *GetUserRequest) Marshal() ([]byte, error)

Marshal an object of type GetUserRequest to the protobuf v3 wire format

func (*GetUserRequest) ProtoMessage

func (*GetUserRequest) ProtoMessage()

func (*GetUserRequest) ProtoReflect

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

func (*GetUserRequest) Reset

func (x *GetUserRequest) Reset()

func (*GetUserRequest) Size

func (val *GetUserRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetUserRequest) String

func (x *GetUserRequest) String() string

func (*GetUserRequest) Unmarshal

func (val *GetUserRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetUserRequest from the protobuf v3 wire format

type GetUserResponse

type GetUserResponse struct {

	// The user
	User *v1.User `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUserResponse) Descriptor deprecated

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

Deprecated: Use GetUserResponse.ProtoReflect.Descriptor instead.

func (*GetUserResponse) Equal

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

Equal returns whether two GetUserResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetUserResponse) GetUser

func (x *GetUserResponse) GetUser() *v1.User

func (*GetUserResponse) Marshal

func (val *GetUserResponse) Marshal() ([]byte, error)

Marshal an object of type GetUserResponse to the protobuf v3 wire format

func (*GetUserResponse) ProtoMessage

func (*GetUserResponse) ProtoMessage()

func (*GetUserResponse) ProtoReflect

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

func (*GetUserResponse) Reset

func (x *GetUserResponse) Reset()

func (*GetUserResponse) Size

func (val *GetUserResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetUserResponse) String

func (x *GetUserResponse) String() string

func (*GetUserResponse) Unmarshal

func (val *GetUserResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetUserResponse from the protobuf v3 wire format

type GetUsersRequest

type GetUsersRequest struct {

	// The requested size of the page to retrieve - optional.
	// Cannot exceed 1000. Defaults to 100.
	PageSize int32 `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	// The page token if this is continuing from another response - optional.
	PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"`
	// Filter users by email address - optional.
	Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	// Filter users by the namespace they have access to - optional.
	Namespace string `protobuf:"bytes,4,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUsersRequest) Descriptor deprecated

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

Deprecated: Use GetUsersRequest.ProtoReflect.Descriptor instead.

func (*GetUsersRequest) Equal

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

Equal returns whether two GetUsersRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetUsersRequest) GetEmail

func (x *GetUsersRequest) GetEmail() string

func (*GetUsersRequest) GetNamespace

func (x *GetUsersRequest) GetNamespace() string

func (*GetUsersRequest) GetPageSize

func (x *GetUsersRequest) GetPageSize() int32

func (*GetUsersRequest) GetPageToken

func (x *GetUsersRequest) GetPageToken() string

func (*GetUsersRequest) Marshal

func (val *GetUsersRequest) Marshal() ([]byte, error)

Marshal an object of type GetUsersRequest to the protobuf v3 wire format

func (*GetUsersRequest) ProtoMessage

func (*GetUsersRequest) ProtoMessage()

func (*GetUsersRequest) ProtoReflect

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

func (*GetUsersRequest) Reset

func (x *GetUsersRequest) Reset()

func (*GetUsersRequest) Size

func (val *GetUsersRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetUsersRequest) String

func (x *GetUsersRequest) String() string

func (*GetUsersRequest) Unmarshal

func (val *GetUsersRequest) Unmarshal(buf []byte) error

Unmarshal an object of type GetUsersRequest from the protobuf v3 wire format

type GetUsersResponse

type GetUsersResponse struct {

	// The list of users in ascending ids order
	Users []*v1.User `protobuf:"bytes,1,rep,name=users,proto3" json:"users,omitempty"`
	// The next page's token
	NextPageToken string `protobuf:"bytes,2,opt,name=next_page_token,json=nextPageToken,proto3" json:"next_page_token,omitempty"`
	// contains filtered or unexported fields
}

func (*GetUsersResponse) Descriptor deprecated

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

Deprecated: Use GetUsersResponse.ProtoReflect.Descriptor instead.

func (*GetUsersResponse) Equal

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

Equal returns whether two GetUsersResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*GetUsersResponse) GetNextPageToken

func (x *GetUsersResponse) GetNextPageToken() string

func (*GetUsersResponse) GetUsers

func (x *GetUsersResponse) GetUsers() []*v1.User

func (*GetUsersResponse) Marshal

func (val *GetUsersResponse) Marshal() ([]byte, error)

Marshal an object of type GetUsersResponse to the protobuf v3 wire format

func (*GetUsersResponse) ProtoMessage

func (*GetUsersResponse) ProtoMessage()

func (*GetUsersResponse) ProtoReflect

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

func (*GetUsersResponse) Reset

func (x *GetUsersResponse) Reset()

func (*GetUsersResponse) Size

func (val *GetUsersResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*GetUsersResponse) String

func (x *GetUsersResponse) String() string

func (*GetUsersResponse) Unmarshal

func (val *GetUsersResponse) Unmarshal(buf []byte) error

Unmarshal an object of type GetUsersResponse from the protobuf v3 wire format

type RenameCustomSearchAttributeRequest

type RenameCustomSearchAttributeRequest struct {

	// The namespace to rename the custom search attribute for.
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// The existing name of the custom search attribute to be renamed.
	ExistingCustomSearchAttributeName string `` /* 166-byte string literal not displayed */
	// The new name of the custom search attribute.
	NewCustomSearchAttributeName string `` /* 151-byte string literal not displayed */
	// The version of the namespace for which this update is intended for.
	// The latest version can be found in the namespace status.
	ResourceVersion string `protobuf:"bytes,4,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// The id to use for this async operation.
	// Optional, if not provided a random id will be generated.
	AsyncOperationId string `protobuf:"bytes,5,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*RenameCustomSearchAttributeRequest) Descriptor deprecated

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

Deprecated: Use RenameCustomSearchAttributeRequest.ProtoReflect.Descriptor instead.

func (*RenameCustomSearchAttributeRequest) Equal

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

Equal returns whether two RenameCustomSearchAttributeRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*RenameCustomSearchAttributeRequest) GetAsyncOperationId

func (x *RenameCustomSearchAttributeRequest) GetAsyncOperationId() string

func (*RenameCustomSearchAttributeRequest) GetExistingCustomSearchAttributeName

func (x *RenameCustomSearchAttributeRequest) GetExistingCustomSearchAttributeName() string

func (*RenameCustomSearchAttributeRequest) GetNamespace

func (x *RenameCustomSearchAttributeRequest) GetNamespace() string

func (*RenameCustomSearchAttributeRequest) GetNewCustomSearchAttributeName

func (x *RenameCustomSearchAttributeRequest) GetNewCustomSearchAttributeName() string

func (*RenameCustomSearchAttributeRequest) GetResourceVersion

func (x *RenameCustomSearchAttributeRequest) GetResourceVersion() string

func (*RenameCustomSearchAttributeRequest) Marshal

func (val *RenameCustomSearchAttributeRequest) Marshal() ([]byte, error)

Marshal an object of type RenameCustomSearchAttributeRequest to the protobuf v3 wire format

func (*RenameCustomSearchAttributeRequest) ProtoMessage

func (*RenameCustomSearchAttributeRequest) ProtoMessage()

func (*RenameCustomSearchAttributeRequest) ProtoReflect

func (*RenameCustomSearchAttributeRequest) Reset

func (*RenameCustomSearchAttributeRequest) Size

Size returns the size of the object, in bytes, once serialized

func (*RenameCustomSearchAttributeRequest) String

func (*RenameCustomSearchAttributeRequest) Unmarshal

func (val *RenameCustomSearchAttributeRequest) Unmarshal(buf []byte) error

Unmarshal an object of type RenameCustomSearchAttributeRequest from the protobuf v3 wire format

type RenameCustomSearchAttributeResponse

type RenameCustomSearchAttributeResponse struct {

	// The async operation.
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*RenameCustomSearchAttributeResponse) Descriptor deprecated

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

Deprecated: Use RenameCustomSearchAttributeResponse.ProtoReflect.Descriptor instead.

func (*RenameCustomSearchAttributeResponse) Equal

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

Equal returns whether two RenameCustomSearchAttributeResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*RenameCustomSearchAttributeResponse) GetAsyncOperation

func (x *RenameCustomSearchAttributeResponse) GetAsyncOperation() *v11.AsyncOperation

func (*RenameCustomSearchAttributeResponse) Marshal

func (val *RenameCustomSearchAttributeResponse) Marshal() ([]byte, error)

Marshal an object of type RenameCustomSearchAttributeResponse to the protobuf v3 wire format

func (*RenameCustomSearchAttributeResponse) ProtoMessage

func (*RenameCustomSearchAttributeResponse) ProtoMessage()

func (*RenameCustomSearchAttributeResponse) ProtoReflect

func (*RenameCustomSearchAttributeResponse) Reset

func (*RenameCustomSearchAttributeResponse) Size

Size returns the size of the object, in bytes, once serialized

func (*RenameCustomSearchAttributeResponse) String

func (*RenameCustomSearchAttributeResponse) Unmarshal

func (val *RenameCustomSearchAttributeResponse) Unmarshal(buf []byte) error

Unmarshal an object of type RenameCustomSearchAttributeResponse from the protobuf v3 wire format

type SetUserNamespaceAccessRequest

type SetUserNamespaceAccessRequest struct {

	// The namespace to set permissions for
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// The id of the user to set permissions for
	UserId string `protobuf:"bytes,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// The namespace access to assign the user
	Access *v1.NamespaceAccess `protobuf:"bytes,3,opt,name=access,proto3" json:"access,omitempty"`
	// The version of the user for which this update is intended for
	// The latest version can be found in the GetUser operation response
	ResourceVersion string `protobuf:"bytes,4,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// The id to use for this async operation - optional
	AsyncOperationId string `protobuf:"bytes,5,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*SetUserNamespaceAccessRequest) Descriptor deprecated

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

Deprecated: Use SetUserNamespaceAccessRequest.ProtoReflect.Descriptor instead.

func (*SetUserNamespaceAccessRequest) Equal

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

Equal returns whether two SetUserNamespaceAccessRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*SetUserNamespaceAccessRequest) GetAccess

func (*SetUserNamespaceAccessRequest) GetAsyncOperationId

func (x *SetUserNamespaceAccessRequest) GetAsyncOperationId() string

func (*SetUserNamespaceAccessRequest) GetNamespace

func (x *SetUserNamespaceAccessRequest) GetNamespace() string

func (*SetUserNamespaceAccessRequest) GetResourceVersion

func (x *SetUserNamespaceAccessRequest) GetResourceVersion() string

func (*SetUserNamespaceAccessRequest) GetUserId

func (x *SetUserNamespaceAccessRequest) GetUserId() string

func (*SetUserNamespaceAccessRequest) Marshal

func (val *SetUserNamespaceAccessRequest) Marshal() ([]byte, error)

Marshal an object of type SetUserNamespaceAccessRequest to the protobuf v3 wire format

func (*SetUserNamespaceAccessRequest) ProtoMessage

func (*SetUserNamespaceAccessRequest) ProtoMessage()

func (*SetUserNamespaceAccessRequest) ProtoReflect

func (*SetUserNamespaceAccessRequest) Reset

func (x *SetUserNamespaceAccessRequest) Reset()

func (*SetUserNamespaceAccessRequest) Size

func (val *SetUserNamespaceAccessRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*SetUserNamespaceAccessRequest) String

func (*SetUserNamespaceAccessRequest) Unmarshal

func (val *SetUserNamespaceAccessRequest) Unmarshal(buf []byte) error

Unmarshal an object of type SetUserNamespaceAccessRequest from the protobuf v3 wire format

type SetUserNamespaceAccessResponse

type SetUserNamespaceAccessResponse struct {

	// The async operation
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*SetUserNamespaceAccessResponse) Descriptor deprecated

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

Deprecated: Use SetUserNamespaceAccessResponse.ProtoReflect.Descriptor instead.

func (*SetUserNamespaceAccessResponse) Equal

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

Equal returns whether two SetUserNamespaceAccessResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*SetUserNamespaceAccessResponse) GetAsyncOperation

func (x *SetUserNamespaceAccessResponse) GetAsyncOperation() *v11.AsyncOperation

func (*SetUserNamespaceAccessResponse) Marshal

func (val *SetUserNamespaceAccessResponse) Marshal() ([]byte, error)

Marshal an object of type SetUserNamespaceAccessResponse to the protobuf v3 wire format

func (*SetUserNamespaceAccessResponse) ProtoMessage

func (*SetUserNamespaceAccessResponse) ProtoMessage()

func (*SetUserNamespaceAccessResponse) ProtoReflect

func (*SetUserNamespaceAccessResponse) Reset

func (x *SetUserNamespaceAccessResponse) Reset()

func (*SetUserNamespaceAccessResponse) Size

func (val *SetUserNamespaceAccessResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*SetUserNamespaceAccessResponse) String

func (*SetUserNamespaceAccessResponse) Unmarshal

func (val *SetUserNamespaceAccessResponse) Unmarshal(buf []byte) error

Unmarshal an object of type SetUserNamespaceAccessResponse from the protobuf v3 wire format

type UnimplementedCloudServiceServer

type UnimplementedCloudServiceServer struct {
}

UnimplementedCloudServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedCloudServiceServer) CreateNamespace

func (UnimplementedCloudServiceServer) CreateUser

func (UnimplementedCloudServiceServer) DeleteNamespace

func (UnimplementedCloudServiceServer) DeleteUser

func (UnimplementedCloudServiceServer) GetAsyncOperation

func (UnimplementedCloudServiceServer) GetNamespace

func (UnimplementedCloudServiceServer) GetNamespaces

func (UnimplementedCloudServiceServer) GetRegion

func (UnimplementedCloudServiceServer) GetRegions

func (UnimplementedCloudServiceServer) GetUser

func (UnimplementedCloudServiceServer) GetUsers

func (UnimplementedCloudServiceServer) UpdateNamespace

func (UnimplementedCloudServiceServer) UpdateUser

type UnsafeCloudServiceServer

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

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

type UpdateNamespaceRequest

type UpdateNamespaceRequest struct {

	// The namespace to update.
	Namespace string `protobuf:"bytes,1,opt,name=namespace,proto3" json:"namespace,omitempty"`
	// The new namespace specification.
	Spec *v12.NamespaceSpec `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	// The version of the namespace for which this update is intended for.
	// The latest version can be found in the namespace status.
	ResourceVersion string `protobuf:"bytes,3,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// The id to use for this async operation.
	// Optional, if not provided a random id will be generated.
	AsyncOperationId string `protobuf:"bytes,4,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateNamespaceRequest) Descriptor deprecated

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

Deprecated: Use UpdateNamespaceRequest.ProtoReflect.Descriptor instead.

func (*UpdateNamespaceRequest) Equal

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

Equal returns whether two UpdateNamespaceRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*UpdateNamespaceRequest) GetAsyncOperationId

func (x *UpdateNamespaceRequest) GetAsyncOperationId() string

func (*UpdateNamespaceRequest) GetNamespace

func (x *UpdateNamespaceRequest) GetNamespace() string

func (*UpdateNamespaceRequest) GetResourceVersion

func (x *UpdateNamespaceRequest) GetResourceVersion() string

func (*UpdateNamespaceRequest) GetSpec

func (*UpdateNamespaceRequest) Marshal

func (val *UpdateNamespaceRequest) Marshal() ([]byte, error)

Marshal an object of type UpdateNamespaceRequest to the protobuf v3 wire format

func (*UpdateNamespaceRequest) ProtoMessage

func (*UpdateNamespaceRequest) ProtoMessage()

func (*UpdateNamespaceRequest) ProtoReflect

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

func (*UpdateNamespaceRequest) Reset

func (x *UpdateNamespaceRequest) Reset()

func (*UpdateNamespaceRequest) Size

func (val *UpdateNamespaceRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*UpdateNamespaceRequest) String

func (x *UpdateNamespaceRequest) String() string

func (*UpdateNamespaceRequest) Unmarshal

func (val *UpdateNamespaceRequest) Unmarshal(buf []byte) error

Unmarshal an object of type UpdateNamespaceRequest from the protobuf v3 wire format

type UpdateNamespaceResponse

type UpdateNamespaceResponse struct {

	// The async operation.
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateNamespaceResponse) Descriptor deprecated

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

Deprecated: Use UpdateNamespaceResponse.ProtoReflect.Descriptor instead.

func (*UpdateNamespaceResponse) Equal

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

Equal returns whether two UpdateNamespaceResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*UpdateNamespaceResponse) GetAsyncOperation

func (x *UpdateNamespaceResponse) GetAsyncOperation() *v11.AsyncOperation

func (*UpdateNamespaceResponse) Marshal

func (val *UpdateNamespaceResponse) Marshal() ([]byte, error)

Marshal an object of type UpdateNamespaceResponse to the protobuf v3 wire format

func (*UpdateNamespaceResponse) ProtoMessage

func (*UpdateNamespaceResponse) ProtoMessage()

func (*UpdateNamespaceResponse) ProtoReflect

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

func (*UpdateNamespaceResponse) Reset

func (x *UpdateNamespaceResponse) Reset()

func (*UpdateNamespaceResponse) Size

func (val *UpdateNamespaceResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*UpdateNamespaceResponse) String

func (x *UpdateNamespaceResponse) String() string

func (*UpdateNamespaceResponse) Unmarshal

func (val *UpdateNamespaceResponse) Unmarshal(buf []byte) error

Unmarshal an object of type UpdateNamespaceResponse from the protobuf v3 wire format

type UpdateUserRequest

type UpdateUserRequest struct {

	// The id of the user to update
	UserId string `protobuf:"bytes,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// The new user specification
	Spec *v1.UserSpec `protobuf:"bytes,2,opt,name=spec,proto3" json:"spec,omitempty"`
	// The version of the user for which this update is intended for
	// The latest version can be found in the GetUser operation response
	ResourceVersion string `protobuf:"bytes,3,opt,name=resource_version,json=resourceVersion,proto3" json:"resource_version,omitempty"`
	// The id to use for this async operation - optional
	AsyncOperationId string `protobuf:"bytes,4,opt,name=async_operation_id,json=asyncOperationId,proto3" json:"async_operation_id,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserRequest) Descriptor deprecated

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

Deprecated: Use UpdateUserRequest.ProtoReflect.Descriptor instead.

func (*UpdateUserRequest) Equal

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

Equal returns whether two UpdateUserRequest values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*UpdateUserRequest) GetAsyncOperationId

func (x *UpdateUserRequest) GetAsyncOperationId() string

func (*UpdateUserRequest) GetResourceVersion

func (x *UpdateUserRequest) GetResourceVersion() string

func (*UpdateUserRequest) GetSpec

func (x *UpdateUserRequest) GetSpec() *v1.UserSpec

func (*UpdateUserRequest) GetUserId

func (x *UpdateUserRequest) GetUserId() string

func (*UpdateUserRequest) Marshal

func (val *UpdateUserRequest) Marshal() ([]byte, error)

Marshal an object of type UpdateUserRequest to the protobuf v3 wire format

func (*UpdateUserRequest) ProtoMessage

func (*UpdateUserRequest) ProtoMessage()

func (*UpdateUserRequest) ProtoReflect

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

func (*UpdateUserRequest) Reset

func (x *UpdateUserRequest) Reset()

func (*UpdateUserRequest) Size

func (val *UpdateUserRequest) Size() int

Size returns the size of the object, in bytes, once serialized

func (*UpdateUserRequest) String

func (x *UpdateUserRequest) String() string

func (*UpdateUserRequest) Unmarshal

func (val *UpdateUserRequest) Unmarshal(buf []byte) error

Unmarshal an object of type UpdateUserRequest from the protobuf v3 wire format

type UpdateUserResponse

type UpdateUserResponse struct {

	// The async operation
	AsyncOperation *v11.AsyncOperation `protobuf:"bytes,1,opt,name=async_operation,json=asyncOperation,proto3" json:"async_operation,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateUserResponse) Descriptor deprecated

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

Deprecated: Use UpdateUserResponse.ProtoReflect.Descriptor instead.

func (*UpdateUserResponse) Equal

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

Equal returns whether two UpdateUserResponse values are equivalent by recursively comparing the message's fields. For more information see the documentation for https://pkg.go.dev/google.golang.org/protobuf/proto#Equal

func (*UpdateUserResponse) GetAsyncOperation

func (x *UpdateUserResponse) GetAsyncOperation() *v11.AsyncOperation

func (*UpdateUserResponse) Marshal

func (val *UpdateUserResponse) Marshal() ([]byte, error)

Marshal an object of type UpdateUserResponse to the protobuf v3 wire format

func (*UpdateUserResponse) ProtoMessage

func (*UpdateUserResponse) ProtoMessage()

func (*UpdateUserResponse) ProtoReflect

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

func (*UpdateUserResponse) Reset

func (x *UpdateUserResponse) Reset()

func (*UpdateUserResponse) Size

func (val *UpdateUserResponse) Size() int

Size returns the size of the object, in bytes, once serialized

func (*UpdateUserResponse) String

func (x *UpdateUserResponse) String() string

func (*UpdateUserResponse) Unmarshal

func (val *UpdateUserResponse) Unmarshal(buf []byte) error

Unmarshal an object of type UpdateUserResponse from the protobuf v3 wire format

Jump to

Keyboard shortcuts

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