account

package
v0.0.0-...-0d6d9b2 Latest Latest
Warning

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

Go to latest
Published: Apr 26, 2024 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	Account_Role_name = map[int32]string{
		0:  "VIEWER",
		1:  "EDITOR",
		2:  "OWNER",
		99: "UNASSIGNED",
	}
	Account_Role_value = map[string]int32{
		"VIEWER":     0,
		"EDITOR":     1,
		"OWNER":      2,
		"UNASSIGNED": 99,
	}
)

Enum value maps for Account_Role.

View Source
var (
	AccountV2_Role_Environment_name = map[int32]string{
		0: "Environment_UNASSIGNED",
		1: "Environment_VIEWER",
		2: "Environment_EDITOR",
	}
	AccountV2_Role_Environment_value = map[string]int32{
		"Environment_UNASSIGNED": 0,
		"Environment_VIEWER":     1,
		"Environment_EDITOR":     2,
	}
)

Enum value maps for AccountV2_Role_Environment.

View Source
var (
	AccountV2_Role_Organization_name = map[int32]string{
		0: "Organization_UNASSIGNED",
		1: "Organization_MEMBER",
		2: "Organization_ADMIN",
		3: "Organization_OWNER",
	}
	AccountV2_Role_Organization_value = map[string]int32{
		"Organization_UNASSIGNED": 0,
		"Organization_MEMBER":     1,
		"Organization_ADMIN":      2,
		"Organization_OWNER":      3,
	}
)

Enum value maps for AccountV2_Role_Organization.

View Source
var (
	APIKey_Role_name = map[int32]string{
		0: "UNKNOWN",
		1: "SDK_CLIENT",
		2: "SDK_SERVER",
	}
	APIKey_Role_value = map[string]int32{
		"UNKNOWN":    0,
		"SDK_CLIENT": 1,
		"SDK_SERVER": 2,
	}
)

Enum value maps for APIKey_Role.

View Source
var (
	ChangeAccountV2EnvironmentRolesCommand_WriteType_name = map[int32]string{
		0: "WriteType_UNSPECIFIED",
		1: "WriteType_OVERRIDE",
		2: "WriteType_PATCH",
	}
	ChangeAccountV2EnvironmentRolesCommand_WriteType_value = map[string]int32{
		"WriteType_UNSPECIFIED": 0,
		"WriteType_OVERRIDE":    1,
		"WriteType_PATCH":       2,
	}
)

Enum value maps for ChangeAccountV2EnvironmentRolesCommand_WriteType.

View Source
var (
	ListAccountsV2Request_OrderBy_name = map[int32]string{
		0: "DEFAULT",
		1: "EMAIL",
		2: "CREATED_AT",
		3: "UPDATED_AT",
	}
	ListAccountsV2Request_OrderBy_value = map[string]int32{
		"DEFAULT":    0,
		"EMAIL":      1,
		"CREATED_AT": 2,
		"UPDATED_AT": 3,
	}
)

Enum value maps for ListAccountsV2Request_OrderBy.

View Source
var (
	ListAccountsV2Request_OrderDirection_name = map[int32]string{
		0: "ASC",
		1: "DESC",
	}
	ListAccountsV2Request_OrderDirection_value = map[string]int32{
		"ASC":  0,
		"DESC": 1,
	}
)

Enum value maps for ListAccountsV2Request_OrderDirection.

View Source
var (
	ListAPIKeysRequest_OrderBy_name = map[int32]string{
		0: "DEFAULT",
		1: "NAME",
		2: "CREATED_AT",
		3: "UPDATED_AT",
	}
	ListAPIKeysRequest_OrderBy_value = map[string]int32{
		"DEFAULT":    0,
		"NAME":       1,
		"CREATED_AT": 2,
		"UPDATED_AT": 3,
	}
)

Enum value maps for ListAPIKeysRequest_OrderBy.

View Source
var (
	ListAPIKeysRequest_OrderDirection_name = map[int32]string{
		0: "ASC",
		1: "DESC",
	}
	ListAPIKeysRequest_OrderDirection_value = map[string]int32{
		"ASC":  0,
		"DESC": 1,
	}
)

Enum value maps for ListAPIKeysRequest_OrderDirection.

View Source
var File_proto_account_account_proto protoreflect.FileDescriptor
View Source
var File_proto_account_api_key_proto protoreflect.FileDescriptor
View Source
var File_proto_account_command_proto protoreflect.FileDescriptor
View Source
var File_proto_account_service_proto protoreflect.FileDescriptor

Functions

func RegisterAccountServiceServer

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

Types

type APIKey

type APIKey struct {
	Id        string      `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	Name      string      `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
	Role      APIKey_Role `protobuf:"varint,3,opt,name=role,proto3,enum=bucketeer.account.APIKey_Role" json:"role"`
	Disabled  bool        `protobuf:"varint,4,opt,name=disabled,proto3" json:"disabled"`
	CreatedAt int64       `protobuf:"varint,5,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
	UpdatedAt int64       `protobuf:"varint,6,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	// contains filtered or unexported fields
}

func (*APIKey) Descriptor deprecated

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

Deprecated: Use APIKey.ProtoReflect.Descriptor instead.

func (*APIKey) GetCreatedAt

func (x *APIKey) GetCreatedAt() int64

func (*APIKey) GetDisabled

func (x *APIKey) GetDisabled() bool

func (*APIKey) GetId

func (x *APIKey) GetId() string

func (*APIKey) GetName

func (x *APIKey) GetName() string

func (*APIKey) GetRole

func (x *APIKey) GetRole() APIKey_Role

func (*APIKey) GetUpdatedAt

func (x *APIKey) GetUpdatedAt() int64

func (*APIKey) ProtoMessage

func (*APIKey) ProtoMessage()

func (*APIKey) ProtoReflect

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

func (*APIKey) Reset

func (x *APIKey) Reset()

func (*APIKey) String

func (x *APIKey) String() string

type APIKey_Role

type APIKey_Role int32
const (
	APIKey_UNKNOWN    APIKey_Role = 0
	APIKey_SDK_CLIENT APIKey_Role = 1
	APIKey_SDK_SERVER APIKey_Role = 2
)

func (APIKey_Role) Descriptor

func (APIKey_Role) Enum

func (x APIKey_Role) Enum() *APIKey_Role

func (APIKey_Role) EnumDescriptor deprecated

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

Deprecated: Use APIKey_Role.Descriptor instead.

func (APIKey_Role) Number

func (x APIKey_Role) Number() protoreflect.EnumNumber

func (APIKey_Role) String

func (x APIKey_Role) String() string

func (APIKey_Role) Type

type Account deprecated

type Account struct {
	Id        string       `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	Email     string       `protobuf:"bytes,2,opt,name=email,proto3" json:"email"`
	Name      string       `protobuf:"bytes,3,opt,name=name,proto3" json:"name"`
	Role      Account_Role `protobuf:"varint,4,opt,name=role,proto3,enum=bucketeer.account.Account_Role" json:"role"`
	Disabled  bool         `protobuf:"varint,5,opt,name=disabled,proto3" json:"disabled"`
	CreatedAt int64        `protobuf:"varint,6,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
	UpdatedAt int64        `protobuf:"varint,7,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	Deleted   bool         `protobuf:"varint,8,opt,name=deleted,proto3" json:"deleted"`
	// contains filtered or unexported fields
}

Deprecated: Do not use.

func (*Account) Descriptor deprecated

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

Deprecated: Use Account.ProtoReflect.Descriptor instead.

func (*Account) GetCreatedAt

func (x *Account) GetCreatedAt() int64

func (*Account) GetDeleted

func (x *Account) GetDeleted() bool

func (*Account) GetDisabled

func (x *Account) GetDisabled() bool

func (*Account) GetEmail

func (x *Account) GetEmail() string

func (*Account) GetId

func (x *Account) GetId() string

func (*Account) GetName

func (x *Account) GetName() string

func (*Account) GetRole

func (x *Account) GetRole() Account_Role

func (*Account) GetUpdatedAt

func (x *Account) GetUpdatedAt() int64

func (*Account) ProtoMessage

func (*Account) ProtoMessage()

func (*Account) ProtoReflect

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

func (*Account) Reset

func (x *Account) Reset()

func (*Account) String

func (x *Account) String() string

type AccountServiceClient

type AccountServiceClient interface {
	GetMe(ctx context.Context, in *GetMeRequest, opts ...grpc.CallOption) (*GetMeResponse, error)
	GetMyOrganizations(ctx context.Context, in *GetMyOrganizationsRequest, opts ...grpc.CallOption) (*GetMyOrganizationsResponse, error)
	GetMyOrganizationsByEmail(ctx context.Context, in *GetMyOrganizationsByEmailRequest, opts ...grpc.CallOption) (*GetMyOrganizationsResponse, error)
	CreateAccountV2(ctx context.Context, in *CreateAccountV2Request, opts ...grpc.CallOption) (*CreateAccountV2Response, error)
	EnableAccountV2(ctx context.Context, in *EnableAccountV2Request, opts ...grpc.CallOption) (*EnableAccountV2Response, error)
	DisableAccountV2(ctx context.Context, in *DisableAccountV2Request, opts ...grpc.CallOption) (*DisableAccountV2Response, error)
	UpdateAccountV2(ctx context.Context, in *UpdateAccountV2Request, opts ...grpc.CallOption) (*UpdateAccountV2Response, error)
	DeleteAccountV2(ctx context.Context, in *DeleteAccountV2Request, opts ...grpc.CallOption) (*DeleteAccountV2Response, error)
	GetAccountV2(ctx context.Context, in *GetAccountV2Request, opts ...grpc.CallOption) (*GetAccountV2Response, error)
	GetAccountV2ByEnvironmentID(ctx context.Context, in *GetAccountV2ByEnvironmentIDRequest, opts ...grpc.CallOption) (*GetAccountV2ByEnvironmentIDResponse, error)
	ListAccountsV2(ctx context.Context, in *ListAccountsV2Request, opts ...grpc.CallOption) (*ListAccountsV2Response, error)
	CreateAPIKey(ctx context.Context, in *CreateAPIKeyRequest, opts ...grpc.CallOption) (*CreateAPIKeyResponse, error)
	ChangeAPIKeyName(ctx context.Context, in *ChangeAPIKeyNameRequest, opts ...grpc.CallOption) (*ChangeAPIKeyNameResponse, error)
	EnableAPIKey(ctx context.Context, in *EnableAPIKeyRequest, opts ...grpc.CallOption) (*EnableAPIKeyResponse, error)
	DisableAPIKey(ctx context.Context, in *DisableAPIKeyRequest, opts ...grpc.CallOption) (*DisableAPIKeyResponse, error)
	GetAPIKey(ctx context.Context, in *GetAPIKeyRequest, opts ...grpc.CallOption) (*GetAPIKeyResponse, error)
	ListAPIKeys(ctx context.Context, in *ListAPIKeysRequest, opts ...grpc.CallOption) (*ListAPIKeysResponse, error)
	GetAPIKeyBySearchingAllEnvironments(ctx context.Context, in *GetAPIKeyBySearchingAllEnvironmentsRequest, opts ...grpc.CallOption) (*GetAPIKeyBySearchingAllEnvironmentsResponse, 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 {
	GetMe(context.Context, *GetMeRequest) (*GetMeResponse, error)
	GetMyOrganizations(context.Context, *GetMyOrganizationsRequest) (*GetMyOrganizationsResponse, error)
	GetMyOrganizationsByEmail(context.Context, *GetMyOrganizationsByEmailRequest) (*GetMyOrganizationsResponse, error)
	CreateAccountV2(context.Context, *CreateAccountV2Request) (*CreateAccountV2Response, error)
	EnableAccountV2(context.Context, *EnableAccountV2Request) (*EnableAccountV2Response, error)
	DisableAccountV2(context.Context, *DisableAccountV2Request) (*DisableAccountV2Response, error)
	UpdateAccountV2(context.Context, *UpdateAccountV2Request) (*UpdateAccountV2Response, error)
	DeleteAccountV2(context.Context, *DeleteAccountV2Request) (*DeleteAccountV2Response, error)
	GetAccountV2(context.Context, *GetAccountV2Request) (*GetAccountV2Response, error)
	GetAccountV2ByEnvironmentID(context.Context, *GetAccountV2ByEnvironmentIDRequest) (*GetAccountV2ByEnvironmentIDResponse, error)
	ListAccountsV2(context.Context, *ListAccountsV2Request) (*ListAccountsV2Response, error)
	CreateAPIKey(context.Context, *CreateAPIKeyRequest) (*CreateAPIKeyResponse, error)
	ChangeAPIKeyName(context.Context, *ChangeAPIKeyNameRequest) (*ChangeAPIKeyNameResponse, error)
	EnableAPIKey(context.Context, *EnableAPIKeyRequest) (*EnableAPIKeyResponse, error)
	DisableAPIKey(context.Context, *DisableAPIKeyRequest) (*DisableAPIKeyResponse, error)
	GetAPIKey(context.Context, *GetAPIKeyRequest) (*GetAPIKeyResponse, error)
	ListAPIKeys(context.Context, *ListAPIKeysRequest) (*ListAPIKeysResponse, error)
	GetAPIKeyBySearchingAllEnvironments(context.Context, *GetAPIKeyBySearchingAllEnvironmentsRequest) (*GetAPIKeyBySearchingAllEnvironmentsResponse, error)
}

AccountServiceServer is the server API for AccountService service.

type AccountV2

type AccountV2 struct {
	Email            string                       `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	Name             string                       `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
	AvatarImageUrl   string                       `protobuf:"bytes,3,opt,name=avatar_image_url,json=avatarImageUrl,proto3" json:"avatar_image_url"`
	OrganizationId   string                       `protobuf:"bytes,4,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	OrganizationRole AccountV2_Role_Organization  `` /* 151-byte string literal not displayed */
	EnvironmentRoles []*AccountV2_EnvironmentRole `protobuf:"bytes,6,rep,name=environment_roles,json=environmentRoles,proto3" json:"environment_roles"`
	Disabled         bool                         `protobuf:"varint,7,opt,name=disabled,proto3" json:"disabled"`
	CreatedAt        int64                        `protobuf:"varint,8,opt,name=created_at,json=createdAt,proto3" json:"created_at"`
	UpdatedAt        int64                        `protobuf:"varint,9,opt,name=updated_at,json=updatedAt,proto3" json:"updated_at"`
	// contains filtered or unexported fields
}

func (*AccountV2) Descriptor deprecated

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

Deprecated: Use AccountV2.ProtoReflect.Descriptor instead.

func (*AccountV2) GetAvatarImageUrl

func (x *AccountV2) GetAvatarImageUrl() string

func (*AccountV2) GetCreatedAt

func (x *AccountV2) GetCreatedAt() int64

func (*AccountV2) GetDisabled

func (x *AccountV2) GetDisabled() bool

func (*AccountV2) GetEmail

func (x *AccountV2) GetEmail() string

func (*AccountV2) GetEnvironmentRoles

func (x *AccountV2) GetEnvironmentRoles() []*AccountV2_EnvironmentRole

func (*AccountV2) GetName

func (x *AccountV2) GetName() string

func (*AccountV2) GetOrganizationId

func (x *AccountV2) GetOrganizationId() string

func (*AccountV2) GetOrganizationRole

func (x *AccountV2) GetOrganizationRole() AccountV2_Role_Organization

func (*AccountV2) GetUpdatedAt

func (x *AccountV2) GetUpdatedAt() int64

func (*AccountV2) ProtoMessage

func (*AccountV2) ProtoMessage()

func (*AccountV2) ProtoReflect

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

func (*AccountV2) Reset

func (x *AccountV2) Reset()

func (*AccountV2) String

func (x *AccountV2) String() string

type AccountV2_EnvironmentRole

type AccountV2_EnvironmentRole struct {
	EnvironmentId string                     `protobuf:"bytes,1,opt,name=environment_id,json=environmentId,proto3" json:"environment_id"`
	Role          AccountV2_Role_Environment `protobuf:"varint,2,opt,name=role,proto3,enum=bucketeer.account.AccountV2_Role_Environment" json:"role"`
	// contains filtered or unexported fields
}

func (*AccountV2_EnvironmentRole) Descriptor deprecated

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

Deprecated: Use AccountV2_EnvironmentRole.ProtoReflect.Descriptor instead.

func (*AccountV2_EnvironmentRole) GetEnvironmentId

func (x *AccountV2_EnvironmentRole) GetEnvironmentId() string

func (*AccountV2_EnvironmentRole) GetRole

func (*AccountV2_EnvironmentRole) ProtoMessage

func (*AccountV2_EnvironmentRole) ProtoMessage()

func (*AccountV2_EnvironmentRole) ProtoReflect

func (*AccountV2_EnvironmentRole) Reset

func (x *AccountV2_EnvironmentRole) Reset()

func (*AccountV2_EnvironmentRole) String

func (x *AccountV2_EnvironmentRole) String() string

type AccountV2_Role

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

func (*AccountV2_Role) Descriptor deprecated

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

Deprecated: Use AccountV2_Role.ProtoReflect.Descriptor instead.

func (*AccountV2_Role) ProtoMessage

func (*AccountV2_Role) ProtoMessage()

func (*AccountV2_Role) ProtoReflect

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

func (*AccountV2_Role) Reset

func (x *AccountV2_Role) Reset()

func (*AccountV2_Role) String

func (x *AccountV2_Role) String() string

type AccountV2_Role_Environment

type AccountV2_Role_Environment int32
const (
	AccountV2_Role_Environment_UNASSIGNED AccountV2_Role_Environment = 0
	AccountV2_Role_Environment_VIEWER     AccountV2_Role_Environment = 1
	AccountV2_Role_Environment_EDITOR     AccountV2_Role_Environment = 2
)

func (AccountV2_Role_Environment) Descriptor

func (AccountV2_Role_Environment) Enum

func (AccountV2_Role_Environment) EnumDescriptor deprecated

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

Deprecated: Use AccountV2_Role_Environment.Descriptor instead.

func (AccountV2_Role_Environment) Number

func (AccountV2_Role_Environment) String

func (AccountV2_Role_Environment) Type

type AccountV2_Role_Organization

type AccountV2_Role_Organization int32
const (
	AccountV2_Role_Organization_UNASSIGNED AccountV2_Role_Organization = 0
	AccountV2_Role_Organization_MEMBER     AccountV2_Role_Organization = 1
	AccountV2_Role_Organization_ADMIN      AccountV2_Role_Organization = 2
	AccountV2_Role_Organization_OWNER      AccountV2_Role_Organization = 3
)

func (AccountV2_Role_Organization) Descriptor

func (AccountV2_Role_Organization) Enum

func (AccountV2_Role_Organization) EnumDescriptor deprecated

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

Deprecated: Use AccountV2_Role_Organization.Descriptor instead.

func (AccountV2_Role_Organization) Number

func (AccountV2_Role_Organization) String

func (AccountV2_Role_Organization) Type

type Account_Role

type Account_Role int32
const (
	Account_VIEWER     Account_Role = 0
	Account_EDITOR     Account_Role = 1
	Account_OWNER      Account_Role = 2
	Account_UNASSIGNED Account_Role = 99
)

func (Account_Role) Descriptor

func (Account_Role) Enum

func (x Account_Role) Enum() *Account_Role

func (Account_Role) EnumDescriptor deprecated

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

Deprecated: Use Account_Role.Descriptor instead.

func (Account_Role) Number

func (Account_Role) String

func (x Account_Role) String() string

func (Account_Role) Type

type ChangeAPIKeyNameCommand

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

func (*ChangeAPIKeyNameCommand) Descriptor deprecated

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

Deprecated: Use ChangeAPIKeyNameCommand.ProtoReflect.Descriptor instead.

func (*ChangeAPIKeyNameCommand) GetName

func (x *ChangeAPIKeyNameCommand) GetName() string

func (*ChangeAPIKeyNameCommand) ProtoMessage

func (*ChangeAPIKeyNameCommand) ProtoMessage()

func (*ChangeAPIKeyNameCommand) ProtoReflect

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

func (*ChangeAPIKeyNameCommand) Reset

func (x *ChangeAPIKeyNameCommand) Reset()

func (*ChangeAPIKeyNameCommand) String

func (x *ChangeAPIKeyNameCommand) String() string

type ChangeAPIKeyNameRequest

type ChangeAPIKeyNameRequest struct {
	Id                   string                   `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	Command              *ChangeAPIKeyNameCommand `protobuf:"bytes,2,opt,name=command,proto3" json:"command"`
	EnvironmentNamespace string                   `protobuf:"bytes,3,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	// contains filtered or unexported fields
}

func (*ChangeAPIKeyNameRequest) Descriptor deprecated

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

Deprecated: Use ChangeAPIKeyNameRequest.ProtoReflect.Descriptor instead.

func (*ChangeAPIKeyNameRequest) GetCommand

func (*ChangeAPIKeyNameRequest) GetEnvironmentNamespace

func (x *ChangeAPIKeyNameRequest) GetEnvironmentNamespace() string

func (*ChangeAPIKeyNameRequest) GetId

func (x *ChangeAPIKeyNameRequest) GetId() string

func (*ChangeAPIKeyNameRequest) ProtoMessage

func (*ChangeAPIKeyNameRequest) ProtoMessage()

func (*ChangeAPIKeyNameRequest) ProtoReflect

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

func (*ChangeAPIKeyNameRequest) Reset

func (x *ChangeAPIKeyNameRequest) Reset()

func (*ChangeAPIKeyNameRequest) String

func (x *ChangeAPIKeyNameRequest) String() string

type ChangeAPIKeyNameResponse

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

func (*ChangeAPIKeyNameResponse) Descriptor deprecated

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

Deprecated: Use ChangeAPIKeyNameResponse.ProtoReflect.Descriptor instead.

func (*ChangeAPIKeyNameResponse) ProtoMessage

func (*ChangeAPIKeyNameResponse) ProtoMessage()

func (*ChangeAPIKeyNameResponse) ProtoReflect

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

func (*ChangeAPIKeyNameResponse) Reset

func (x *ChangeAPIKeyNameResponse) Reset()

func (*ChangeAPIKeyNameResponse) String

func (x *ChangeAPIKeyNameResponse) String() string

type ChangeAccountV2AvatarImageUrlCommand

type ChangeAccountV2AvatarImageUrlCommand struct {
	AvatarImageUrl string `protobuf:"bytes,1,opt,name=avatar_image_url,json=avatarImageUrl,proto3" json:"avatar_image_url"`
	// contains filtered or unexported fields
}

func (*ChangeAccountV2AvatarImageUrlCommand) Descriptor deprecated

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

Deprecated: Use ChangeAccountV2AvatarImageUrlCommand.ProtoReflect.Descriptor instead.

func (*ChangeAccountV2AvatarImageUrlCommand) GetAvatarImageUrl

func (x *ChangeAccountV2AvatarImageUrlCommand) GetAvatarImageUrl() string

func (*ChangeAccountV2AvatarImageUrlCommand) ProtoMessage

func (*ChangeAccountV2AvatarImageUrlCommand) ProtoMessage()

func (*ChangeAccountV2AvatarImageUrlCommand) ProtoReflect

func (*ChangeAccountV2AvatarImageUrlCommand) Reset

func (*ChangeAccountV2AvatarImageUrlCommand) String

type ChangeAccountV2EnvironmentRolesCommand

type ChangeAccountV2EnvironmentRolesCommand struct {
	Roles     []*AccountV2_EnvironmentRole                     `protobuf:"bytes,1,rep,name=roles,proto3" json:"roles"`
	WriteType ChangeAccountV2EnvironmentRolesCommand_WriteType `` /* 151-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*ChangeAccountV2EnvironmentRolesCommand) Descriptor deprecated

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

Deprecated: Use ChangeAccountV2EnvironmentRolesCommand.ProtoReflect.Descriptor instead.

func (*ChangeAccountV2EnvironmentRolesCommand) GetRoles

func (*ChangeAccountV2EnvironmentRolesCommand) GetWriteType

func (*ChangeAccountV2EnvironmentRolesCommand) ProtoMessage

func (*ChangeAccountV2EnvironmentRolesCommand) ProtoReflect

func (*ChangeAccountV2EnvironmentRolesCommand) Reset

func (*ChangeAccountV2EnvironmentRolesCommand) String

type ChangeAccountV2EnvironmentRolesCommand_WriteType

type ChangeAccountV2EnvironmentRolesCommand_WriteType int32
const (
	ChangeAccountV2EnvironmentRolesCommand_WriteType_UNSPECIFIED ChangeAccountV2EnvironmentRolesCommand_WriteType = 0
	ChangeAccountV2EnvironmentRolesCommand_WriteType_OVERRIDE    ChangeAccountV2EnvironmentRolesCommand_WriteType = 1
	ChangeAccountV2EnvironmentRolesCommand_WriteType_PATCH       ChangeAccountV2EnvironmentRolesCommand_WriteType = 2
)

func (ChangeAccountV2EnvironmentRolesCommand_WriteType) Descriptor

func (ChangeAccountV2EnvironmentRolesCommand_WriteType) Enum

func (ChangeAccountV2EnvironmentRolesCommand_WriteType) EnumDescriptor deprecated

Deprecated: Use ChangeAccountV2EnvironmentRolesCommand_WriteType.Descriptor instead.

func (ChangeAccountV2EnvironmentRolesCommand_WriteType) Number

func (ChangeAccountV2EnvironmentRolesCommand_WriteType) String

func (ChangeAccountV2EnvironmentRolesCommand_WriteType) Type

type ChangeAccountV2NameCommand

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

func (*ChangeAccountV2NameCommand) Descriptor deprecated

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

Deprecated: Use ChangeAccountV2NameCommand.ProtoReflect.Descriptor instead.

func (*ChangeAccountV2NameCommand) GetName

func (x *ChangeAccountV2NameCommand) GetName() string

func (*ChangeAccountV2NameCommand) ProtoMessage

func (*ChangeAccountV2NameCommand) ProtoMessage()

func (*ChangeAccountV2NameCommand) ProtoReflect

func (*ChangeAccountV2NameCommand) Reset

func (x *ChangeAccountV2NameCommand) Reset()

func (*ChangeAccountV2NameCommand) String

func (x *ChangeAccountV2NameCommand) String() string

type ChangeAccountV2OrganizationRoleCommand

type ChangeAccountV2OrganizationRoleCommand struct {
	Role AccountV2_Role_Organization `protobuf:"varint,1,opt,name=role,proto3,enum=bucketeer.account.AccountV2_Role_Organization" json:"role"`
	// contains filtered or unexported fields
}

func (*ChangeAccountV2OrganizationRoleCommand) Descriptor deprecated

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

Deprecated: Use ChangeAccountV2OrganizationRoleCommand.ProtoReflect.Descriptor instead.

func (*ChangeAccountV2OrganizationRoleCommand) GetRole

func (*ChangeAccountV2OrganizationRoleCommand) ProtoMessage

func (*ChangeAccountV2OrganizationRoleCommand) ProtoReflect

func (*ChangeAccountV2OrganizationRoleCommand) Reset

func (*ChangeAccountV2OrganizationRoleCommand) String

type ConsoleAccount

type ConsoleAccount struct {
	Email            string                            `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	Name             string                            `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
	AvatarUrl        string                            `protobuf:"bytes,3,opt,name=avatar_url,json=avatarUrl,proto3" json:"avatar_url"`
	IsSystemAdmin    bool                              `protobuf:"varint,4,opt,name=is_system_admin,json=isSystemAdmin,proto3" json:"is_system_admin"`
	Organization     *environment.Organization         `protobuf:"bytes,5,opt,name=organization,proto3" json:"organization"`
	OrganizationRole AccountV2_Role_Organization       `` /* 151-byte string literal not displayed */
	EnvironmentRoles []*ConsoleAccount_EnvironmentRole `protobuf:"bytes,7,rep,name=environment_roles,json=environmentRoles,proto3" json:"environment_roles"`
	// contains filtered or unexported fields
}

func (*ConsoleAccount) Descriptor deprecated

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

Deprecated: Use ConsoleAccount.ProtoReflect.Descriptor instead.

func (*ConsoleAccount) GetAvatarUrl

func (x *ConsoleAccount) GetAvatarUrl() string

func (*ConsoleAccount) GetEmail

func (x *ConsoleAccount) GetEmail() string

func (*ConsoleAccount) GetEnvironmentRoles

func (x *ConsoleAccount) GetEnvironmentRoles() []*ConsoleAccount_EnvironmentRole

func (*ConsoleAccount) GetIsSystemAdmin

func (x *ConsoleAccount) GetIsSystemAdmin() bool

func (*ConsoleAccount) GetName

func (x *ConsoleAccount) GetName() string

func (*ConsoleAccount) GetOrganization

func (x *ConsoleAccount) GetOrganization() *environment.Organization

func (*ConsoleAccount) GetOrganizationRole

func (x *ConsoleAccount) GetOrganizationRole() AccountV2_Role_Organization

func (*ConsoleAccount) ProtoMessage

func (*ConsoleAccount) ProtoMessage()

func (*ConsoleAccount) ProtoReflect

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

func (*ConsoleAccount) Reset

func (x *ConsoleAccount) Reset()

func (*ConsoleAccount) String

func (x *ConsoleAccount) String() string

type ConsoleAccount_EnvironmentRole

type ConsoleAccount_EnvironmentRole struct {
	Environment *environment.EnvironmentV2 `protobuf:"bytes,1,opt,name=environment,proto3" json:"environment"`
	Project     *environment.Project       `protobuf:"bytes,2,opt,name=project,proto3" json:"project"`
	Role        AccountV2_Role_Environment `protobuf:"varint,3,opt,name=role,proto3,enum=bucketeer.account.AccountV2_Role_Environment" json:"role"`
	// contains filtered or unexported fields
}

func (*ConsoleAccount_EnvironmentRole) Descriptor deprecated

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

Deprecated: Use ConsoleAccount_EnvironmentRole.ProtoReflect.Descriptor instead.

func (*ConsoleAccount_EnvironmentRole) GetEnvironment

func (*ConsoleAccount_EnvironmentRole) GetProject

func (*ConsoleAccount_EnvironmentRole) GetRole

func (*ConsoleAccount_EnvironmentRole) ProtoMessage

func (*ConsoleAccount_EnvironmentRole) ProtoMessage()

func (*ConsoleAccount_EnvironmentRole) ProtoReflect

func (*ConsoleAccount_EnvironmentRole) Reset

func (x *ConsoleAccount_EnvironmentRole) Reset()

func (*ConsoleAccount_EnvironmentRole) String

type CreateAPIKeyCommand

type CreateAPIKeyCommand struct {
	Name string      `protobuf:"bytes,1,opt,name=name,proto3" json:"name"`
	Role APIKey_Role `protobuf:"varint,2,opt,name=role,proto3,enum=bucketeer.account.APIKey_Role" json:"role"`
	// contains filtered or unexported fields
}

func (*CreateAPIKeyCommand) Descriptor deprecated

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

Deprecated: Use CreateAPIKeyCommand.ProtoReflect.Descriptor instead.

func (*CreateAPIKeyCommand) GetName

func (x *CreateAPIKeyCommand) GetName() string

func (*CreateAPIKeyCommand) GetRole

func (x *CreateAPIKeyCommand) GetRole() APIKey_Role

func (*CreateAPIKeyCommand) ProtoMessage

func (*CreateAPIKeyCommand) ProtoMessage()

func (*CreateAPIKeyCommand) ProtoReflect

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

func (*CreateAPIKeyCommand) Reset

func (x *CreateAPIKeyCommand) Reset()

func (*CreateAPIKeyCommand) String

func (x *CreateAPIKeyCommand) String() string

type CreateAPIKeyRequest

type CreateAPIKeyRequest struct {
	Command              *CreateAPIKeyCommand `protobuf:"bytes,1,opt,name=command,proto3" json:"command"`
	EnvironmentNamespace string               `protobuf:"bytes,2,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	// contains filtered or unexported fields
}

func (*CreateAPIKeyRequest) Descriptor deprecated

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

Deprecated: Use CreateAPIKeyRequest.ProtoReflect.Descriptor instead.

func (*CreateAPIKeyRequest) GetCommand

func (x *CreateAPIKeyRequest) GetCommand() *CreateAPIKeyCommand

func (*CreateAPIKeyRequest) GetEnvironmentNamespace

func (x *CreateAPIKeyRequest) GetEnvironmentNamespace() string

func (*CreateAPIKeyRequest) ProtoMessage

func (*CreateAPIKeyRequest) ProtoMessage()

func (*CreateAPIKeyRequest) ProtoReflect

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

func (*CreateAPIKeyRequest) Reset

func (x *CreateAPIKeyRequest) Reset()

func (*CreateAPIKeyRequest) String

func (x *CreateAPIKeyRequest) String() string

type CreateAPIKeyResponse

type CreateAPIKeyResponse struct {
	ApiKey *APIKey `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key"`
	// contains filtered or unexported fields
}

func (*CreateAPIKeyResponse) Descriptor deprecated

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

Deprecated: Use CreateAPIKeyResponse.ProtoReflect.Descriptor instead.

func (*CreateAPIKeyResponse) GetApiKey

func (x *CreateAPIKeyResponse) GetApiKey() *APIKey

func (*CreateAPIKeyResponse) ProtoMessage

func (*CreateAPIKeyResponse) ProtoMessage()

func (*CreateAPIKeyResponse) ProtoReflect

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

func (*CreateAPIKeyResponse) Reset

func (x *CreateAPIKeyResponse) Reset()

func (*CreateAPIKeyResponse) String

func (x *CreateAPIKeyResponse) String() string

type CreateAccountV2Command

type CreateAccountV2Command struct {
	Email            string                       `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	Name             string                       `protobuf:"bytes,2,opt,name=name,proto3" json:"name"`
	AvatarImageUrl   string                       `protobuf:"bytes,3,opt,name=avatar_image_url,json=avatarImageUrl,proto3" json:"avatar_image_url"`
	OrganizationRole AccountV2_Role_Organization  `` /* 151-byte string literal not displayed */
	EnvironmentRoles []*AccountV2_EnvironmentRole `protobuf:"bytes,5,rep,name=environment_roles,json=environmentRoles,proto3" json:"environment_roles"`
	// contains filtered or unexported fields
}

func (*CreateAccountV2Command) Descriptor deprecated

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

Deprecated: Use CreateAccountV2Command.ProtoReflect.Descriptor instead.

func (*CreateAccountV2Command) GetAvatarImageUrl

func (x *CreateAccountV2Command) GetAvatarImageUrl() string

func (*CreateAccountV2Command) GetEmail

func (x *CreateAccountV2Command) GetEmail() string

func (*CreateAccountV2Command) GetEnvironmentRoles

func (x *CreateAccountV2Command) GetEnvironmentRoles() []*AccountV2_EnvironmentRole

func (*CreateAccountV2Command) GetName

func (x *CreateAccountV2Command) GetName() string

func (*CreateAccountV2Command) GetOrganizationRole

func (x *CreateAccountV2Command) GetOrganizationRole() AccountV2_Role_Organization

func (*CreateAccountV2Command) ProtoMessage

func (*CreateAccountV2Command) ProtoMessage()

func (*CreateAccountV2Command) ProtoReflect

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

func (*CreateAccountV2Command) Reset

func (x *CreateAccountV2Command) Reset()

func (*CreateAccountV2Command) String

func (x *CreateAccountV2Command) String() string

type CreateAccountV2Request

type CreateAccountV2Request struct {
	OrganizationId string                  `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	Command        *CreateAccountV2Command `protobuf:"bytes,2,opt,name=command,proto3" json:"command"`
	// contains filtered or unexported fields
}

func (*CreateAccountV2Request) Descriptor deprecated

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

Deprecated: Use CreateAccountV2Request.ProtoReflect.Descriptor instead.

func (*CreateAccountV2Request) GetCommand

func (*CreateAccountV2Request) GetOrganizationId

func (x *CreateAccountV2Request) GetOrganizationId() string

func (*CreateAccountV2Request) ProtoMessage

func (*CreateAccountV2Request) ProtoMessage()

func (*CreateAccountV2Request) ProtoReflect

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

func (*CreateAccountV2Request) Reset

func (x *CreateAccountV2Request) Reset()

func (*CreateAccountV2Request) String

func (x *CreateAccountV2Request) String() string

type CreateAccountV2Response

type CreateAccountV2Response struct {
	Account *AccountV2 `protobuf:"bytes,1,opt,name=account,proto3" json:"account"`
	// contains filtered or unexported fields
}

func (*CreateAccountV2Response) Descriptor deprecated

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

Deprecated: Use CreateAccountV2Response.ProtoReflect.Descriptor instead.

func (*CreateAccountV2Response) GetAccount

func (x *CreateAccountV2Response) GetAccount() *AccountV2

func (*CreateAccountV2Response) ProtoMessage

func (*CreateAccountV2Response) ProtoMessage()

func (*CreateAccountV2Response) ProtoReflect

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

func (*CreateAccountV2Response) Reset

func (x *CreateAccountV2Response) Reset()

func (*CreateAccountV2Response) String

func (x *CreateAccountV2Response) String() string

type DeleteAccountV2Command

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

func (*DeleteAccountV2Command) Descriptor deprecated

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

Deprecated: Use DeleteAccountV2Command.ProtoReflect.Descriptor instead.

func (*DeleteAccountV2Command) ProtoMessage

func (*DeleteAccountV2Command) ProtoMessage()

func (*DeleteAccountV2Command) ProtoReflect

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

func (*DeleteAccountV2Command) Reset

func (x *DeleteAccountV2Command) Reset()

func (*DeleteAccountV2Command) String

func (x *DeleteAccountV2Command) String() string

type DeleteAccountV2Request

type DeleteAccountV2Request struct {
	Email          string                  `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	OrganizationId string                  `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	Command        *DeleteAccountV2Command `protobuf:"bytes,3,opt,name=command,proto3" json:"command"`
	// contains filtered or unexported fields
}

func (*DeleteAccountV2Request) Descriptor deprecated

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

Deprecated: Use DeleteAccountV2Request.ProtoReflect.Descriptor instead.

func (*DeleteAccountV2Request) GetCommand

func (*DeleteAccountV2Request) GetEmail

func (x *DeleteAccountV2Request) GetEmail() string

func (*DeleteAccountV2Request) GetOrganizationId

func (x *DeleteAccountV2Request) GetOrganizationId() string

func (*DeleteAccountV2Request) ProtoMessage

func (*DeleteAccountV2Request) ProtoMessage()

func (*DeleteAccountV2Request) ProtoReflect

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

func (*DeleteAccountV2Request) Reset

func (x *DeleteAccountV2Request) Reset()

func (*DeleteAccountV2Request) String

func (x *DeleteAccountV2Request) String() string

type DeleteAccountV2Response

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

func (*DeleteAccountV2Response) Descriptor deprecated

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

Deprecated: Use DeleteAccountV2Response.ProtoReflect.Descriptor instead.

func (*DeleteAccountV2Response) ProtoMessage

func (*DeleteAccountV2Response) ProtoMessage()

func (*DeleteAccountV2Response) ProtoReflect

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

func (*DeleteAccountV2Response) Reset

func (x *DeleteAccountV2Response) Reset()

func (*DeleteAccountV2Response) String

func (x *DeleteAccountV2Response) String() string

type DisableAPIKeyCommand

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

func (*DisableAPIKeyCommand) Descriptor deprecated

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

Deprecated: Use DisableAPIKeyCommand.ProtoReflect.Descriptor instead.

func (*DisableAPIKeyCommand) ProtoMessage

func (*DisableAPIKeyCommand) ProtoMessage()

func (*DisableAPIKeyCommand) ProtoReflect

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

func (*DisableAPIKeyCommand) Reset

func (x *DisableAPIKeyCommand) Reset()

func (*DisableAPIKeyCommand) String

func (x *DisableAPIKeyCommand) String() string

type DisableAPIKeyRequest

type DisableAPIKeyRequest struct {
	Id                   string                `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	Command              *DisableAPIKeyCommand `protobuf:"bytes,2,opt,name=command,proto3" json:"command"`
	EnvironmentNamespace string                `protobuf:"bytes,3,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	// contains filtered or unexported fields
}

func (*DisableAPIKeyRequest) Descriptor deprecated

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

Deprecated: Use DisableAPIKeyRequest.ProtoReflect.Descriptor instead.

func (*DisableAPIKeyRequest) GetCommand

func (x *DisableAPIKeyRequest) GetCommand() *DisableAPIKeyCommand

func (*DisableAPIKeyRequest) GetEnvironmentNamespace

func (x *DisableAPIKeyRequest) GetEnvironmentNamespace() string

func (*DisableAPIKeyRequest) GetId

func (x *DisableAPIKeyRequest) GetId() string

func (*DisableAPIKeyRequest) ProtoMessage

func (*DisableAPIKeyRequest) ProtoMessage()

func (*DisableAPIKeyRequest) ProtoReflect

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

func (*DisableAPIKeyRequest) Reset

func (x *DisableAPIKeyRequest) Reset()

func (*DisableAPIKeyRequest) String

func (x *DisableAPIKeyRequest) String() string

type DisableAPIKeyResponse

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

func (*DisableAPIKeyResponse) Descriptor deprecated

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

Deprecated: Use DisableAPIKeyResponse.ProtoReflect.Descriptor instead.

func (*DisableAPIKeyResponse) ProtoMessage

func (*DisableAPIKeyResponse) ProtoMessage()

func (*DisableAPIKeyResponse) ProtoReflect

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

func (*DisableAPIKeyResponse) Reset

func (x *DisableAPIKeyResponse) Reset()

func (*DisableAPIKeyResponse) String

func (x *DisableAPIKeyResponse) String() string

type DisableAccountV2Command

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

func (*DisableAccountV2Command) Descriptor deprecated

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

Deprecated: Use DisableAccountV2Command.ProtoReflect.Descriptor instead.

func (*DisableAccountV2Command) ProtoMessage

func (*DisableAccountV2Command) ProtoMessage()

func (*DisableAccountV2Command) ProtoReflect

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

func (*DisableAccountV2Command) Reset

func (x *DisableAccountV2Command) Reset()

func (*DisableAccountV2Command) String

func (x *DisableAccountV2Command) String() string

type DisableAccountV2Request

type DisableAccountV2Request struct {
	Email          string                   `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	OrganizationId string                   `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	Command        *DisableAccountV2Command `protobuf:"bytes,3,opt,name=command,proto3" json:"command"`
	// contains filtered or unexported fields
}

func (*DisableAccountV2Request) Descriptor deprecated

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

Deprecated: Use DisableAccountV2Request.ProtoReflect.Descriptor instead.

func (*DisableAccountV2Request) GetCommand

func (*DisableAccountV2Request) GetEmail

func (x *DisableAccountV2Request) GetEmail() string

func (*DisableAccountV2Request) GetOrganizationId

func (x *DisableAccountV2Request) GetOrganizationId() string

func (*DisableAccountV2Request) ProtoMessage

func (*DisableAccountV2Request) ProtoMessage()

func (*DisableAccountV2Request) ProtoReflect

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

func (*DisableAccountV2Request) Reset

func (x *DisableAccountV2Request) Reset()

func (*DisableAccountV2Request) String

func (x *DisableAccountV2Request) String() string

type DisableAccountV2Response

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

func (*DisableAccountV2Response) Descriptor deprecated

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

Deprecated: Use DisableAccountV2Response.ProtoReflect.Descriptor instead.

func (*DisableAccountV2Response) ProtoMessage

func (*DisableAccountV2Response) ProtoMessage()

func (*DisableAccountV2Response) ProtoReflect

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

func (*DisableAccountV2Response) Reset

func (x *DisableAccountV2Response) Reset()

func (*DisableAccountV2Response) String

func (x *DisableAccountV2Response) String() string

type EnableAPIKeyCommand

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

func (*EnableAPIKeyCommand) Descriptor deprecated

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

Deprecated: Use EnableAPIKeyCommand.ProtoReflect.Descriptor instead.

func (*EnableAPIKeyCommand) ProtoMessage

func (*EnableAPIKeyCommand) ProtoMessage()

func (*EnableAPIKeyCommand) ProtoReflect

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

func (*EnableAPIKeyCommand) Reset

func (x *EnableAPIKeyCommand) Reset()

func (*EnableAPIKeyCommand) String

func (x *EnableAPIKeyCommand) String() string

type EnableAPIKeyRequest

type EnableAPIKeyRequest struct {
	Id                   string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	Command              *EnableAPIKeyCommand `protobuf:"bytes,2,opt,name=command,proto3" json:"command"`
	EnvironmentNamespace string               `protobuf:"bytes,3,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	// contains filtered or unexported fields
}

func (*EnableAPIKeyRequest) Descriptor deprecated

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

Deprecated: Use EnableAPIKeyRequest.ProtoReflect.Descriptor instead.

func (*EnableAPIKeyRequest) GetCommand

func (x *EnableAPIKeyRequest) GetCommand() *EnableAPIKeyCommand

func (*EnableAPIKeyRequest) GetEnvironmentNamespace

func (x *EnableAPIKeyRequest) GetEnvironmentNamespace() string

func (*EnableAPIKeyRequest) GetId

func (x *EnableAPIKeyRequest) GetId() string

func (*EnableAPIKeyRequest) ProtoMessage

func (*EnableAPIKeyRequest) ProtoMessage()

func (*EnableAPIKeyRequest) ProtoReflect

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

func (*EnableAPIKeyRequest) Reset

func (x *EnableAPIKeyRequest) Reset()

func (*EnableAPIKeyRequest) String

func (x *EnableAPIKeyRequest) String() string

type EnableAPIKeyResponse

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

func (*EnableAPIKeyResponse) Descriptor deprecated

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

Deprecated: Use EnableAPIKeyResponse.ProtoReflect.Descriptor instead.

func (*EnableAPIKeyResponse) ProtoMessage

func (*EnableAPIKeyResponse) ProtoMessage()

func (*EnableAPIKeyResponse) ProtoReflect

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

func (*EnableAPIKeyResponse) Reset

func (x *EnableAPIKeyResponse) Reset()

func (*EnableAPIKeyResponse) String

func (x *EnableAPIKeyResponse) String() string

type EnableAccountV2Command

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

func (*EnableAccountV2Command) Descriptor deprecated

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

Deprecated: Use EnableAccountV2Command.ProtoReflect.Descriptor instead.

func (*EnableAccountV2Command) ProtoMessage

func (*EnableAccountV2Command) ProtoMessage()

func (*EnableAccountV2Command) ProtoReflect

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

func (*EnableAccountV2Command) Reset

func (x *EnableAccountV2Command) Reset()

func (*EnableAccountV2Command) String

func (x *EnableAccountV2Command) String() string

type EnableAccountV2Request

type EnableAccountV2Request struct {
	Email          string                  `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	OrganizationId string                  `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	Command        *EnableAccountV2Command `protobuf:"bytes,3,opt,name=command,proto3" json:"command"`
	// contains filtered or unexported fields
}

func (*EnableAccountV2Request) Descriptor deprecated

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

Deprecated: Use EnableAccountV2Request.ProtoReflect.Descriptor instead.

func (*EnableAccountV2Request) GetCommand

func (*EnableAccountV2Request) GetEmail

func (x *EnableAccountV2Request) GetEmail() string

func (*EnableAccountV2Request) GetOrganizationId

func (x *EnableAccountV2Request) GetOrganizationId() string

func (*EnableAccountV2Request) ProtoMessage

func (*EnableAccountV2Request) ProtoMessage()

func (*EnableAccountV2Request) ProtoReflect

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

func (*EnableAccountV2Request) Reset

func (x *EnableAccountV2Request) Reset()

func (*EnableAccountV2Request) String

func (x *EnableAccountV2Request) String() string

type EnableAccountV2Response

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

func (*EnableAccountV2Response) Descriptor deprecated

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

Deprecated: Use EnableAccountV2Response.ProtoReflect.Descriptor instead.

func (*EnableAccountV2Response) ProtoMessage

func (*EnableAccountV2Response) ProtoMessage()

func (*EnableAccountV2Response) ProtoReflect

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

func (*EnableAccountV2Response) Reset

func (x *EnableAccountV2Response) Reset()

func (*EnableAccountV2Response) String

func (x *EnableAccountV2Response) String() string

type EnvironmentAPIKey

type EnvironmentAPIKey struct {

	// Deprecated: Do not use.
	EnvironmentNamespace string                     `protobuf:"bytes,1,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	ApiKey               *APIKey                    `protobuf:"bytes,2,opt,name=api_key,json=apiKey,proto3" json:"api_key"`
	EnvironmentDisabled  bool                       `protobuf:"varint,3,opt,name=environment_disabled,json=environmentDisabled,proto3" json:"environment_disabled"`
	ProjectId            string                     `protobuf:"bytes,4,opt,name=project_id,json=projectId,proto3" json:"project_id"`
	Environment          *environment.EnvironmentV2 `protobuf:"bytes,5,opt,name=environment,proto3" json:"environment"`
	// contains filtered or unexported fields
}

func (*EnvironmentAPIKey) Descriptor deprecated

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

Deprecated: Use EnvironmentAPIKey.ProtoReflect.Descriptor instead.

func (*EnvironmentAPIKey) GetApiKey

func (x *EnvironmentAPIKey) GetApiKey() *APIKey

func (*EnvironmentAPIKey) GetEnvironment

func (x *EnvironmentAPIKey) GetEnvironment() *environment.EnvironmentV2

func (*EnvironmentAPIKey) GetEnvironmentDisabled

func (x *EnvironmentAPIKey) GetEnvironmentDisabled() bool

func (*EnvironmentAPIKey) GetEnvironmentNamespace deprecated

func (x *EnvironmentAPIKey) GetEnvironmentNamespace() string

Deprecated: Do not use.

func (*EnvironmentAPIKey) GetProjectId

func (x *EnvironmentAPIKey) GetProjectId() string

func (*EnvironmentAPIKey) ProtoMessage

func (*EnvironmentAPIKey) ProtoMessage()

func (*EnvironmentAPIKey) ProtoReflect

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

func (*EnvironmentAPIKey) Reset

func (x *EnvironmentAPIKey) Reset()

func (*EnvironmentAPIKey) String

func (x *EnvironmentAPIKey) String() string

type GetAPIKeyBySearchingAllEnvironmentsRequest

type GetAPIKeyBySearchingAllEnvironmentsRequest struct {
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	// contains filtered or unexported fields
}

func (*GetAPIKeyBySearchingAllEnvironmentsRequest) Descriptor deprecated

Deprecated: Use GetAPIKeyBySearchingAllEnvironmentsRequest.ProtoReflect.Descriptor instead.

func (*GetAPIKeyBySearchingAllEnvironmentsRequest) GetId

func (*GetAPIKeyBySearchingAllEnvironmentsRequest) ProtoMessage

func (*GetAPIKeyBySearchingAllEnvironmentsRequest) ProtoReflect

func (*GetAPIKeyBySearchingAllEnvironmentsRequest) Reset

func (*GetAPIKeyBySearchingAllEnvironmentsRequest) String

type GetAPIKeyBySearchingAllEnvironmentsResponse

type GetAPIKeyBySearchingAllEnvironmentsResponse struct {
	EnvironmentApiKey *EnvironmentAPIKey `protobuf:"bytes,1,opt,name=environment_api_key,json=environmentApiKey,proto3" json:"environment_api_key"`
	// contains filtered or unexported fields
}

func (*GetAPIKeyBySearchingAllEnvironmentsResponse) Descriptor deprecated

Deprecated: Use GetAPIKeyBySearchingAllEnvironmentsResponse.ProtoReflect.Descriptor instead.

func (*GetAPIKeyBySearchingAllEnvironmentsResponse) GetEnvironmentApiKey

func (*GetAPIKeyBySearchingAllEnvironmentsResponse) ProtoMessage

func (*GetAPIKeyBySearchingAllEnvironmentsResponse) ProtoReflect

func (*GetAPIKeyBySearchingAllEnvironmentsResponse) Reset

func (*GetAPIKeyBySearchingAllEnvironmentsResponse) String

type GetAPIKeyRequest

type GetAPIKeyRequest struct {
	Id                   string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"`
	EnvironmentNamespace string `protobuf:"bytes,2,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	// contains filtered or unexported fields
}

func (*GetAPIKeyRequest) Descriptor deprecated

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

Deprecated: Use GetAPIKeyRequest.ProtoReflect.Descriptor instead.

func (*GetAPIKeyRequest) GetEnvironmentNamespace

func (x *GetAPIKeyRequest) GetEnvironmentNamespace() string

func (*GetAPIKeyRequest) GetId

func (x *GetAPIKeyRequest) GetId() string

func (*GetAPIKeyRequest) ProtoMessage

func (*GetAPIKeyRequest) ProtoMessage()

func (*GetAPIKeyRequest) ProtoReflect

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

func (*GetAPIKeyRequest) Reset

func (x *GetAPIKeyRequest) Reset()

func (*GetAPIKeyRequest) String

func (x *GetAPIKeyRequest) String() string

type GetAPIKeyResponse

type GetAPIKeyResponse struct {
	ApiKey *APIKey `protobuf:"bytes,1,opt,name=api_key,json=apiKey,proto3" json:"api_key"`
	// contains filtered or unexported fields
}

func (*GetAPIKeyResponse) Descriptor deprecated

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

Deprecated: Use GetAPIKeyResponse.ProtoReflect.Descriptor instead.

func (*GetAPIKeyResponse) GetApiKey

func (x *GetAPIKeyResponse) GetApiKey() *APIKey

func (*GetAPIKeyResponse) ProtoMessage

func (*GetAPIKeyResponse) ProtoMessage()

func (*GetAPIKeyResponse) ProtoReflect

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

func (*GetAPIKeyResponse) Reset

func (x *GetAPIKeyResponse) Reset()

func (*GetAPIKeyResponse) String

func (x *GetAPIKeyResponse) String() string

type GetAccountV2ByEnvironmentIDRequest

type GetAccountV2ByEnvironmentIDRequest struct {
	Email         string `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	EnvironmentId string `protobuf:"bytes,2,opt,name=environment_id,json=environmentId,proto3" json:"environment_id"`
	// contains filtered or unexported fields
}

func (*GetAccountV2ByEnvironmentIDRequest) Descriptor deprecated

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

Deprecated: Use GetAccountV2ByEnvironmentIDRequest.ProtoReflect.Descriptor instead.

func (*GetAccountV2ByEnvironmentIDRequest) GetEmail

func (*GetAccountV2ByEnvironmentIDRequest) GetEnvironmentId

func (x *GetAccountV2ByEnvironmentIDRequest) GetEnvironmentId() string

func (*GetAccountV2ByEnvironmentIDRequest) ProtoMessage

func (*GetAccountV2ByEnvironmentIDRequest) ProtoMessage()

func (*GetAccountV2ByEnvironmentIDRequest) ProtoReflect

func (*GetAccountV2ByEnvironmentIDRequest) Reset

func (*GetAccountV2ByEnvironmentIDRequest) String

type GetAccountV2ByEnvironmentIDResponse

type GetAccountV2ByEnvironmentIDResponse struct {
	Account *AccountV2 `protobuf:"bytes,1,opt,name=account,proto3" json:"account"`
	// contains filtered or unexported fields
}

func (*GetAccountV2ByEnvironmentIDResponse) Descriptor deprecated

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

Deprecated: Use GetAccountV2ByEnvironmentIDResponse.ProtoReflect.Descriptor instead.

func (*GetAccountV2ByEnvironmentIDResponse) GetAccount

func (*GetAccountV2ByEnvironmentIDResponse) ProtoMessage

func (*GetAccountV2ByEnvironmentIDResponse) ProtoMessage()

func (*GetAccountV2ByEnvironmentIDResponse) ProtoReflect

func (*GetAccountV2ByEnvironmentIDResponse) Reset

func (*GetAccountV2ByEnvironmentIDResponse) String

type GetAccountV2Request

type GetAccountV2Request struct {
	Email          string `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	OrganizationId string `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	// contains filtered or unexported fields
}

func (*GetAccountV2Request) Descriptor deprecated

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

Deprecated: Use GetAccountV2Request.ProtoReflect.Descriptor instead.

func (*GetAccountV2Request) GetEmail

func (x *GetAccountV2Request) GetEmail() string

func (*GetAccountV2Request) GetOrganizationId

func (x *GetAccountV2Request) GetOrganizationId() string

func (*GetAccountV2Request) ProtoMessage

func (*GetAccountV2Request) ProtoMessage()

func (*GetAccountV2Request) ProtoReflect

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

func (*GetAccountV2Request) Reset

func (x *GetAccountV2Request) Reset()

func (*GetAccountV2Request) String

func (x *GetAccountV2Request) String() string

type GetAccountV2Response

type GetAccountV2Response struct {
	Account *AccountV2 `protobuf:"bytes,1,opt,name=account,proto3" json:"account"`
	// contains filtered or unexported fields
}

func (*GetAccountV2Response) Descriptor deprecated

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

Deprecated: Use GetAccountV2Response.ProtoReflect.Descriptor instead.

func (*GetAccountV2Response) GetAccount

func (x *GetAccountV2Response) GetAccount() *AccountV2

func (*GetAccountV2Response) ProtoMessage

func (*GetAccountV2Response) ProtoMessage()

func (*GetAccountV2Response) ProtoReflect

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

func (*GetAccountV2Response) Reset

func (x *GetAccountV2Response) Reset()

func (*GetAccountV2Response) String

func (x *GetAccountV2Response) String() string

type GetMeRequest

type GetMeRequest struct {
	OrganizationId string `protobuf:"bytes,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	// contains filtered or unexported fields
}

account is retrieved by IDToken. it's called from WebUI.

func (*GetMeRequest) Descriptor deprecated

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

Deprecated: Use GetMeRequest.ProtoReflect.Descriptor instead.

func (*GetMeRequest) GetOrganizationId

func (x *GetMeRequest) GetOrganizationId() string

func (*GetMeRequest) ProtoMessage

func (*GetMeRequest) ProtoMessage()

func (*GetMeRequest) ProtoReflect

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

func (*GetMeRequest) Reset

func (x *GetMeRequest) Reset()

func (*GetMeRequest) String

func (x *GetMeRequest) String() string

type GetMeResponse

type GetMeResponse struct {
	Account *ConsoleAccount `protobuf:"bytes,1,opt,name=account,proto3" json:"account"`
	// contains filtered or unexported fields
}

func (*GetMeResponse) Descriptor deprecated

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

Deprecated: Use GetMeResponse.ProtoReflect.Descriptor instead.

func (*GetMeResponse) GetAccount

func (x *GetMeResponse) GetAccount() *ConsoleAccount

func (*GetMeResponse) ProtoMessage

func (*GetMeResponse) ProtoMessage()

func (*GetMeResponse) ProtoReflect

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

func (*GetMeResponse) Reset

func (x *GetMeResponse) Reset()

func (*GetMeResponse) String

func (x *GetMeResponse) String() string

type GetMyOrganizationsByEmailRequest

type GetMyOrganizationsByEmailRequest struct {
	Email string `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	// contains filtered or unexported fields
}

Retrieve the organization to which the account belongs by email. it's called from another microservice.

func (*GetMyOrganizationsByEmailRequest) Descriptor deprecated

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

Deprecated: Use GetMyOrganizationsByEmailRequest.ProtoReflect.Descriptor instead.

func (*GetMyOrganizationsByEmailRequest) GetEmail

func (*GetMyOrganizationsByEmailRequest) ProtoMessage

func (*GetMyOrganizationsByEmailRequest) ProtoMessage()

func (*GetMyOrganizationsByEmailRequest) ProtoReflect

func (*GetMyOrganizationsByEmailRequest) Reset

func (*GetMyOrganizationsByEmailRequest) String

type GetMyOrganizationsRequest

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

func (*GetMyOrganizationsRequest) Descriptor deprecated

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

Deprecated: Use GetMyOrganizationsRequest.ProtoReflect.Descriptor instead.

func (*GetMyOrganizationsRequest) ProtoMessage

func (*GetMyOrganizationsRequest) ProtoMessage()

func (*GetMyOrganizationsRequest) ProtoReflect

func (*GetMyOrganizationsRequest) Reset

func (x *GetMyOrganizationsRequest) Reset()

func (*GetMyOrganizationsRequest) String

func (x *GetMyOrganizationsRequest) String() string

type GetMyOrganizationsResponse

type GetMyOrganizationsResponse struct {
	Organizations []*environment.Organization `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations"`
	// contains filtered or unexported fields
}

func (*GetMyOrganizationsResponse) Descriptor deprecated

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

Deprecated: Use GetMyOrganizationsResponse.ProtoReflect.Descriptor instead.

func (*GetMyOrganizationsResponse) GetOrganizations

func (x *GetMyOrganizationsResponse) GetOrganizations() []*environment.Organization

func (*GetMyOrganizationsResponse) ProtoMessage

func (*GetMyOrganizationsResponse) ProtoMessage()

func (*GetMyOrganizationsResponse) ProtoReflect

func (*GetMyOrganizationsResponse) Reset

func (x *GetMyOrganizationsResponse) Reset()

func (*GetMyOrganizationsResponse) String

func (x *GetMyOrganizationsResponse) String() string

type ListAPIKeysRequest

type ListAPIKeysRequest struct {
	PageSize             int64                             `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
	Cursor               string                            `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	EnvironmentNamespace string                            `protobuf:"bytes,3,opt,name=environment_namespace,json=environmentNamespace,proto3" json:"environment_namespace"`
	OrderBy              ListAPIKeysRequest_OrderBy        `protobuf:"varint,4,opt,name=order_by,json=orderBy,proto3,enum=bucketeer.account.ListAPIKeysRequest_OrderBy" json:"order_by"`
	OrderDirection       ListAPIKeysRequest_OrderDirection `` /* 151-byte string literal not displayed */
	SearchKeyword        string                            `protobuf:"bytes,6,opt,name=search_keyword,json=searchKeyword,proto3" json:"search_keyword"`
	Disabled             *wrapperspb.BoolValue             `protobuf:"bytes,7,opt,name=disabled,proto3" json:"disabled"`
	// contains filtered or unexported fields
}

func (*ListAPIKeysRequest) Descriptor deprecated

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

Deprecated: Use ListAPIKeysRequest.ProtoReflect.Descriptor instead.

func (*ListAPIKeysRequest) GetCursor

func (x *ListAPIKeysRequest) GetCursor() string

func (*ListAPIKeysRequest) GetDisabled

func (x *ListAPIKeysRequest) GetDisabled() *wrapperspb.BoolValue

func (*ListAPIKeysRequest) GetEnvironmentNamespace

func (x *ListAPIKeysRequest) GetEnvironmentNamespace() string

func (*ListAPIKeysRequest) GetOrderBy

func (*ListAPIKeysRequest) GetOrderDirection

func (*ListAPIKeysRequest) GetPageSize

func (x *ListAPIKeysRequest) GetPageSize() int64

func (*ListAPIKeysRequest) GetSearchKeyword

func (x *ListAPIKeysRequest) GetSearchKeyword() string

func (*ListAPIKeysRequest) ProtoMessage

func (*ListAPIKeysRequest) ProtoMessage()

func (*ListAPIKeysRequest) ProtoReflect

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

func (*ListAPIKeysRequest) Reset

func (x *ListAPIKeysRequest) Reset()

func (*ListAPIKeysRequest) String

func (x *ListAPIKeysRequest) String() string

type ListAPIKeysRequest_OrderBy

type ListAPIKeysRequest_OrderBy int32
const (
	ListAPIKeysRequest_DEFAULT    ListAPIKeysRequest_OrderBy = 0
	ListAPIKeysRequest_NAME       ListAPIKeysRequest_OrderBy = 1
	ListAPIKeysRequest_CREATED_AT ListAPIKeysRequest_OrderBy = 2
	ListAPIKeysRequest_UPDATED_AT ListAPIKeysRequest_OrderBy = 3
)

func (ListAPIKeysRequest_OrderBy) Descriptor

func (ListAPIKeysRequest_OrderBy) Enum

func (ListAPIKeysRequest_OrderBy) EnumDescriptor deprecated

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

Deprecated: Use ListAPIKeysRequest_OrderBy.Descriptor instead.

func (ListAPIKeysRequest_OrderBy) Number

func (ListAPIKeysRequest_OrderBy) String

func (ListAPIKeysRequest_OrderBy) Type

type ListAPIKeysRequest_OrderDirection

type ListAPIKeysRequest_OrderDirection int32
const (
	ListAPIKeysRequest_ASC  ListAPIKeysRequest_OrderDirection = 0
	ListAPIKeysRequest_DESC ListAPIKeysRequest_OrderDirection = 1
)

func (ListAPIKeysRequest_OrderDirection) Descriptor

func (ListAPIKeysRequest_OrderDirection) Enum

func (ListAPIKeysRequest_OrderDirection) EnumDescriptor deprecated

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

Deprecated: Use ListAPIKeysRequest_OrderDirection.Descriptor instead.

func (ListAPIKeysRequest_OrderDirection) Number

func (ListAPIKeysRequest_OrderDirection) String

func (ListAPIKeysRequest_OrderDirection) Type

type ListAPIKeysResponse

type ListAPIKeysResponse struct {
	ApiKeys    []*APIKey `protobuf:"bytes,1,rep,name=api_keys,json=apiKeys,proto3" json:"api_keys"`
	Cursor     string    `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	TotalCount int64     `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count"`
	// contains filtered or unexported fields
}

func (*ListAPIKeysResponse) Descriptor deprecated

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

Deprecated: Use ListAPIKeysResponse.ProtoReflect.Descriptor instead.

func (*ListAPIKeysResponse) GetApiKeys

func (x *ListAPIKeysResponse) GetApiKeys() []*APIKey

func (*ListAPIKeysResponse) GetCursor

func (x *ListAPIKeysResponse) GetCursor() string

func (*ListAPIKeysResponse) GetTotalCount

func (x *ListAPIKeysResponse) GetTotalCount() int64

func (*ListAPIKeysResponse) ProtoMessage

func (*ListAPIKeysResponse) ProtoMessage()

func (*ListAPIKeysResponse) ProtoReflect

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

func (*ListAPIKeysResponse) Reset

func (x *ListAPIKeysResponse) Reset()

func (*ListAPIKeysResponse) String

func (x *ListAPIKeysResponse) String() string

type ListAccountsV2Request

type ListAccountsV2Request struct {
	PageSize         int64                                `protobuf:"varint,1,opt,name=page_size,json=pageSize,proto3" json:"page_size"`
	Cursor           string                               `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	OrganizationId   string                               `protobuf:"bytes,3,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	OrderBy          ListAccountsV2Request_OrderBy        `` /* 126-byte string literal not displayed */
	OrderDirection   ListAccountsV2Request_OrderDirection `` /* 154-byte string literal not displayed */
	SearchKeyword    string                               `protobuf:"bytes,6,opt,name=search_keyword,json=searchKeyword,proto3" json:"search_keyword"`
	Disabled         *wrapperspb.BoolValue                `protobuf:"bytes,7,opt,name=disabled,proto3" json:"disabled"`
	OrganizationRole *wrapperspb.Int32Value               `protobuf:"bytes,8,opt,name=organization_role,json=organizationRole,proto3" json:"organization_role"`
	EnvironmentId    *wrapperspb.StringValue              `protobuf:"bytes,9,opt,name=environment_id,json=environmentId,proto3" json:"environment_id"`
	EnvironmentRole  *wrapperspb.Int32Value               `protobuf:"bytes,10,opt,name=environment_role,json=environmentRole,proto3" json:"environment_role"`
	// contains filtered or unexported fields
}

func (*ListAccountsV2Request) Descriptor deprecated

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

Deprecated: Use ListAccountsV2Request.ProtoReflect.Descriptor instead.

func (*ListAccountsV2Request) GetCursor

func (x *ListAccountsV2Request) GetCursor() string

func (*ListAccountsV2Request) GetDisabled

func (x *ListAccountsV2Request) GetDisabled() *wrapperspb.BoolValue

func (*ListAccountsV2Request) GetEnvironmentId

func (x *ListAccountsV2Request) GetEnvironmentId() *wrapperspb.StringValue

func (*ListAccountsV2Request) GetEnvironmentRole

func (x *ListAccountsV2Request) GetEnvironmentRole() *wrapperspb.Int32Value

func (*ListAccountsV2Request) GetOrderBy

func (*ListAccountsV2Request) GetOrderDirection

func (*ListAccountsV2Request) GetOrganizationId

func (x *ListAccountsV2Request) GetOrganizationId() string

func (*ListAccountsV2Request) GetOrganizationRole

func (x *ListAccountsV2Request) GetOrganizationRole() *wrapperspb.Int32Value

func (*ListAccountsV2Request) GetPageSize

func (x *ListAccountsV2Request) GetPageSize() int64

func (*ListAccountsV2Request) GetSearchKeyword

func (x *ListAccountsV2Request) GetSearchKeyword() string

func (*ListAccountsV2Request) ProtoMessage

func (*ListAccountsV2Request) ProtoMessage()

func (*ListAccountsV2Request) ProtoReflect

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

func (*ListAccountsV2Request) Reset

func (x *ListAccountsV2Request) Reset()

func (*ListAccountsV2Request) String

func (x *ListAccountsV2Request) String() string

type ListAccountsV2Request_OrderBy

type ListAccountsV2Request_OrderBy int32
const (
	ListAccountsV2Request_DEFAULT    ListAccountsV2Request_OrderBy = 0
	ListAccountsV2Request_EMAIL      ListAccountsV2Request_OrderBy = 1
	ListAccountsV2Request_CREATED_AT ListAccountsV2Request_OrderBy = 2
	ListAccountsV2Request_UPDATED_AT ListAccountsV2Request_OrderBy = 3
)

func (ListAccountsV2Request_OrderBy) Descriptor

func (ListAccountsV2Request_OrderBy) Enum

func (ListAccountsV2Request_OrderBy) EnumDescriptor deprecated

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

Deprecated: Use ListAccountsV2Request_OrderBy.Descriptor instead.

func (ListAccountsV2Request_OrderBy) Number

func (ListAccountsV2Request_OrderBy) String

func (ListAccountsV2Request_OrderBy) Type

type ListAccountsV2Request_OrderDirection

type ListAccountsV2Request_OrderDirection int32
const (
	ListAccountsV2Request_ASC  ListAccountsV2Request_OrderDirection = 0
	ListAccountsV2Request_DESC ListAccountsV2Request_OrderDirection = 1
)

func (ListAccountsV2Request_OrderDirection) Descriptor

func (ListAccountsV2Request_OrderDirection) Enum

func (ListAccountsV2Request_OrderDirection) EnumDescriptor deprecated

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

Deprecated: Use ListAccountsV2Request_OrderDirection.Descriptor instead.

func (ListAccountsV2Request_OrderDirection) Number

func (ListAccountsV2Request_OrderDirection) String

func (ListAccountsV2Request_OrderDirection) Type

type ListAccountsV2Response

type ListAccountsV2Response struct {
	Accounts   []*AccountV2 `protobuf:"bytes,1,rep,name=accounts,proto3" json:"accounts"`
	Cursor     string       `protobuf:"bytes,2,opt,name=cursor,proto3" json:"cursor"`
	TotalCount int64        `protobuf:"varint,3,opt,name=total_count,json=totalCount,proto3" json:"total_count"`
	// contains filtered or unexported fields
}

func (*ListAccountsV2Response) Descriptor deprecated

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

Deprecated: Use ListAccountsV2Response.ProtoReflect.Descriptor instead.

func (*ListAccountsV2Response) GetAccounts

func (x *ListAccountsV2Response) GetAccounts() []*AccountV2

func (*ListAccountsV2Response) GetCursor

func (x *ListAccountsV2Response) GetCursor() string

func (*ListAccountsV2Response) GetTotalCount

func (x *ListAccountsV2Response) GetTotalCount() int64

func (*ListAccountsV2Response) ProtoMessage

func (*ListAccountsV2Response) ProtoMessage()

func (*ListAccountsV2Response) ProtoReflect

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

func (*ListAccountsV2Response) Reset

func (x *ListAccountsV2Response) Reset()

func (*ListAccountsV2Response) String

func (x *ListAccountsV2Response) String() string

type UnimplementedAccountServiceServer

type UnimplementedAccountServiceServer struct {
}

UnimplementedAccountServiceServer can be embedded to have forward compatible implementations.

func (*UnimplementedAccountServiceServer) ChangeAPIKeyName

func (*UnimplementedAccountServiceServer) CreateAPIKey

func (*UnimplementedAccountServiceServer) CreateAccountV2

func (*UnimplementedAccountServiceServer) DeleteAccountV2

func (*UnimplementedAccountServiceServer) DisableAPIKey

func (*UnimplementedAccountServiceServer) DisableAccountV2

func (*UnimplementedAccountServiceServer) EnableAPIKey

func (*UnimplementedAccountServiceServer) EnableAccountV2

func (*UnimplementedAccountServiceServer) GetAPIKey

func (*UnimplementedAccountServiceServer) GetAccountV2

func (*UnimplementedAccountServiceServer) GetMe

func (*UnimplementedAccountServiceServer) GetMyOrganizations

func (*UnimplementedAccountServiceServer) GetMyOrganizationsByEmail

func (*UnimplementedAccountServiceServer) ListAPIKeys

func (*UnimplementedAccountServiceServer) ListAccountsV2

func (*UnimplementedAccountServiceServer) UpdateAccountV2

type UpdateAccountV2Request

type UpdateAccountV2Request struct {
	Email                         string                                  `protobuf:"bytes,1,opt,name=email,proto3" json:"email"`
	OrganizationId                string                                  `protobuf:"bytes,2,opt,name=organization_id,json=organizationId,proto3" json:"organization_id"`
	ChangeNameCommand             *ChangeAccountV2NameCommand             `protobuf:"bytes,3,opt,name=change_name_command,json=changeNameCommand,proto3" json:"change_name_command"`
	ChangeAvatarUrlCommand        *ChangeAccountV2AvatarImageUrlCommand   `protobuf:"bytes,4,opt,name=change_avatar_url_command,json=changeAvatarUrlCommand,proto3" json:"change_avatar_url_command"`
	ChangeOrganizationRoleCommand *ChangeAccountV2OrganizationRoleCommand `` /* 142-byte string literal not displayed */
	ChangeEnvironmentRolesCommand *ChangeAccountV2EnvironmentRolesCommand `` /* 142-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*UpdateAccountV2Request) Descriptor deprecated

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

Deprecated: Use UpdateAccountV2Request.ProtoReflect.Descriptor instead.

func (*UpdateAccountV2Request) GetChangeAvatarUrlCommand

func (x *UpdateAccountV2Request) GetChangeAvatarUrlCommand() *ChangeAccountV2AvatarImageUrlCommand

func (*UpdateAccountV2Request) GetChangeEnvironmentRolesCommand

func (x *UpdateAccountV2Request) GetChangeEnvironmentRolesCommand() *ChangeAccountV2EnvironmentRolesCommand

func (*UpdateAccountV2Request) GetChangeNameCommand

func (x *UpdateAccountV2Request) GetChangeNameCommand() *ChangeAccountV2NameCommand

func (*UpdateAccountV2Request) GetChangeOrganizationRoleCommand

func (x *UpdateAccountV2Request) GetChangeOrganizationRoleCommand() *ChangeAccountV2OrganizationRoleCommand

func (*UpdateAccountV2Request) GetEmail

func (x *UpdateAccountV2Request) GetEmail() string

func (*UpdateAccountV2Request) GetOrganizationId

func (x *UpdateAccountV2Request) GetOrganizationId() string

func (*UpdateAccountV2Request) ProtoMessage

func (*UpdateAccountV2Request) ProtoMessage()

func (*UpdateAccountV2Request) ProtoReflect

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

func (*UpdateAccountV2Request) Reset

func (x *UpdateAccountV2Request) Reset()

func (*UpdateAccountV2Request) String

func (x *UpdateAccountV2Request) String() string

type UpdateAccountV2Response

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

func (*UpdateAccountV2Response) Descriptor deprecated

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

Deprecated: Use UpdateAccountV2Response.ProtoReflect.Descriptor instead.

func (*UpdateAccountV2Response) ProtoMessage

func (*UpdateAccountV2Response) ProtoMessage()

func (*UpdateAccountV2Response) ProtoReflect

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

func (*UpdateAccountV2Response) Reset

func (x *UpdateAccountV2Response) Reset()

func (*UpdateAccountV2Response) String

func (x *UpdateAccountV2Response) String() string

Jump to

Keyboard shortcuts

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