user

package
v0.1.0 Latest Latest
Warning

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

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

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_user_add_users_to_organization_proto protoreflect.FileDescriptor
View Source
var File_user_create_organization_proto protoreflect.FileDescriptor
View Source
var File_user_create_project_proto protoreflect.FileDescriptor
View Source
var File_user_delete_organization_proto protoreflect.FileDescriptor
View Source
var File_user_delete_project_proto protoreflect.FileDescriptor
View Source
var File_user_enroll_proto protoreflect.FileDescriptor
View Source
var File_user_get_caller_identity_proto protoreflect.FileDescriptor
View Source
var File_user_list_all_organizations_proto protoreflect.FileDescriptor
View Source
var File_user_organization_proto protoreflect.FileDescriptor
View Source
var File_user_project_proto protoreflect.FileDescriptor
View Source
var File_user_remove_users_from_organization_proto protoreflect.FileDescriptor
View Source
var File_user_service_proto protoreflect.FileDescriptor
View Source
var File_user_user_proto protoreflect.FileDescriptor
View Source
var File_user_whoami_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AddUsersToOrganizationRequest

type AddUsersToOrganizationRequest struct {

	// organization_id is the globally unique identifier of the organization that the
	// project will belong to.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// user_ids is the list of each user ID to add.
	UserIds []uint64 `protobuf:"varint,2,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*AddUsersToOrganizationRequest) CloneMessageVT

func (m *AddUsersToOrganizationRequest) CloneMessageVT() proto.Message

func (*AddUsersToOrganizationRequest) CloneVT

func (*AddUsersToOrganizationRequest) Descriptor deprecated

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

Deprecated: Use AddUsersToOrganizationRequest.ProtoReflect.Descriptor instead.

func (*AddUsersToOrganizationRequest) EqualMessageVT

func (this *AddUsersToOrganizationRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*AddUsersToOrganizationRequest) EqualVT

func (*AddUsersToOrganizationRequest) GetOrganizationId

func (x *AddUsersToOrganizationRequest) GetOrganizationId() uint64

func (*AddUsersToOrganizationRequest) GetUserIds

func (x *AddUsersToOrganizationRequest) GetUserIds() []uint64

func (*AddUsersToOrganizationRequest) MarshalToSizedBufferVT

func (m *AddUsersToOrganizationRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AddUsersToOrganizationRequest) MarshalToVT

func (m *AddUsersToOrganizationRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AddUsersToOrganizationRequest) MarshalVT

func (m *AddUsersToOrganizationRequest) MarshalVT() (dAtA []byte, err error)

func (*AddUsersToOrganizationRequest) ProtoMessage

func (*AddUsersToOrganizationRequest) ProtoMessage()

func (*AddUsersToOrganizationRequest) ProtoReflect

func (*AddUsersToOrganizationRequest) Reset

func (x *AddUsersToOrganizationRequest) Reset()

func (*AddUsersToOrganizationRequest) SizeVT

func (m *AddUsersToOrganizationRequest) SizeVT() (n int)

func (*AddUsersToOrganizationRequest) String

func (*AddUsersToOrganizationRequest) UnmarshalVT

func (m *AddUsersToOrganizationRequest) UnmarshalVT(dAtA []byte) error

type AddUsersToOrganizationResponse

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

func (*AddUsersToOrganizationResponse) CloneMessageVT

func (m *AddUsersToOrganizationResponse) CloneMessageVT() proto.Message

func (*AddUsersToOrganizationResponse) CloneVT

func (*AddUsersToOrganizationResponse) Descriptor deprecated

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

Deprecated: Use AddUsersToOrganizationResponse.ProtoReflect.Descriptor instead.

func (*AddUsersToOrganizationResponse) EqualMessageVT

func (this *AddUsersToOrganizationResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*AddUsersToOrganizationResponse) EqualVT

func (*AddUsersToOrganizationResponse) MarshalToSizedBufferVT

func (m *AddUsersToOrganizationResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AddUsersToOrganizationResponse) MarshalToVT

func (m *AddUsersToOrganizationResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AddUsersToOrganizationResponse) MarshalVT

func (m *AddUsersToOrganizationResponse) MarshalVT() (dAtA []byte, err error)

func (*AddUsersToOrganizationResponse) ProtoMessage

func (*AddUsersToOrganizationResponse) ProtoMessage()

func (*AddUsersToOrganizationResponse) ProtoReflect

func (*AddUsersToOrganizationResponse) Reset

func (x *AddUsersToOrganizationResponse) Reset()

func (*AddUsersToOrganizationResponse) SizeVT

func (m *AddUsersToOrganizationResponse) SizeVT() (n int)

func (*AddUsersToOrganizationResponse) String

func (*AddUsersToOrganizationResponse) UnmarshalVT

func (m *AddUsersToOrganizationResponse) UnmarshalVT(dAtA []byte) error

type CreateOrganizationRequest

type CreateOrganizationRequest struct {

	// name is a required globally unique human readable name that will be
	// displayed in the UI.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// do_not_add_current_user is a flag for admins that indicates that the
	// current user should not be added to the organization. The default (false)
	// is to include the current user.
	DoNotAddCurrentUser bool `protobuf:"varint,2,opt,name=do_not_add_current_user,json=doNotAddCurrentUser,proto3" json:"do_not_add_current_user,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOrganizationRequest) CloneMessageVT

func (m *CreateOrganizationRequest) CloneMessageVT() proto.Message

func (*CreateOrganizationRequest) CloneVT

func (*CreateOrganizationRequest) Descriptor deprecated

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

Deprecated: Use CreateOrganizationRequest.ProtoReflect.Descriptor instead.

func (*CreateOrganizationRequest) EqualMessageVT

func (this *CreateOrganizationRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateOrganizationRequest) EqualVT

func (*CreateOrganizationRequest) GetDoNotAddCurrentUser

func (x *CreateOrganizationRequest) GetDoNotAddCurrentUser() bool

func (*CreateOrganizationRequest) GetName

func (x *CreateOrganizationRequest) GetName() string

func (*CreateOrganizationRequest) MarshalToSizedBufferVT

func (m *CreateOrganizationRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateOrganizationRequest) MarshalToVT

func (m *CreateOrganizationRequest) MarshalToVT(dAtA []byte) (int, error)

func (*CreateOrganizationRequest) MarshalVT

func (m *CreateOrganizationRequest) MarshalVT() (dAtA []byte, err error)

func (*CreateOrganizationRequest) ProtoMessage

func (*CreateOrganizationRequest) ProtoMessage()

func (*CreateOrganizationRequest) ProtoReflect

func (*CreateOrganizationRequest) Reset

func (x *CreateOrganizationRequest) Reset()

func (*CreateOrganizationRequest) SizeVT

func (m *CreateOrganizationRequest) SizeVT() (n int)

func (*CreateOrganizationRequest) String

func (x *CreateOrganizationRequest) String() string

func (*CreateOrganizationRequest) UnmarshalVT

func (m *CreateOrganizationRequest) UnmarshalVT(dAtA []byte) error

type CreateOrganizationResponse

type CreateOrganizationResponse struct {

	// organization_id is a globally unique identifier for a organization.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateOrganizationResponse) CloneMessageVT

func (m *CreateOrganizationResponse) CloneMessageVT() proto.Message

func (*CreateOrganizationResponse) CloneVT

func (*CreateOrganizationResponse) Descriptor deprecated

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

Deprecated: Use CreateOrganizationResponse.ProtoReflect.Descriptor instead.

func (*CreateOrganizationResponse) EqualMessageVT

func (this *CreateOrganizationResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateOrganizationResponse) EqualVT

func (*CreateOrganizationResponse) GetOrganizationId

func (x *CreateOrganizationResponse) GetOrganizationId() uint64

func (*CreateOrganizationResponse) MarshalToSizedBufferVT

func (m *CreateOrganizationResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateOrganizationResponse) MarshalToVT

func (m *CreateOrganizationResponse) MarshalToVT(dAtA []byte) (int, error)

func (*CreateOrganizationResponse) MarshalVT

func (m *CreateOrganizationResponse) MarshalVT() (dAtA []byte, err error)

func (*CreateOrganizationResponse) ProtoMessage

func (*CreateOrganizationResponse) ProtoMessage()

func (*CreateOrganizationResponse) ProtoReflect

func (*CreateOrganizationResponse) Reset

func (x *CreateOrganizationResponse) Reset()

func (*CreateOrganizationResponse) SizeVT

func (m *CreateOrganizationResponse) SizeVT() (n int)

func (*CreateOrganizationResponse) String

func (x *CreateOrganizationResponse) String() string

func (*CreateOrganizationResponse) UnmarshalVT

func (m *CreateOrganizationResponse) UnmarshalVT(dAtA []byte) error

type CreateProjectRequest

type CreateProjectRequest struct {

	// organization_id is the globally unique identifier of the organization that the
	// project will belong to.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// name is a required human readable name that will be displayed in the UI.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// description is an optional human readable explanation for what the project is for.
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateProjectRequest) CloneMessageVT

func (m *CreateProjectRequest) CloneMessageVT() proto.Message

func (*CreateProjectRequest) CloneVT

func (*CreateProjectRequest) Descriptor deprecated

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

Deprecated: Use CreateProjectRequest.ProtoReflect.Descriptor instead.

func (*CreateProjectRequest) EqualMessageVT

func (this *CreateProjectRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateProjectRequest) EqualVT

func (this *CreateProjectRequest) EqualVT(that *CreateProjectRequest) bool

func (*CreateProjectRequest) GetDescription

func (x *CreateProjectRequest) GetDescription() string

func (*CreateProjectRequest) GetName

func (x *CreateProjectRequest) GetName() string

func (*CreateProjectRequest) GetOrganizationId

func (x *CreateProjectRequest) GetOrganizationId() uint64

func (*CreateProjectRequest) MarshalToSizedBufferVT

func (m *CreateProjectRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateProjectRequest) MarshalToVT

func (m *CreateProjectRequest) MarshalToVT(dAtA []byte) (int, error)

func (*CreateProjectRequest) MarshalVT

func (m *CreateProjectRequest) MarshalVT() (dAtA []byte, err error)

func (*CreateProjectRequest) ProtoMessage

func (*CreateProjectRequest) ProtoMessage()

func (*CreateProjectRequest) ProtoReflect

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

func (*CreateProjectRequest) Reset

func (x *CreateProjectRequest) Reset()

func (*CreateProjectRequest) SizeVT

func (m *CreateProjectRequest) SizeVT() (n int)

func (*CreateProjectRequest) String

func (x *CreateProjectRequest) String() string

func (*CreateProjectRequest) UnmarshalVT

func (m *CreateProjectRequest) UnmarshalVT(dAtA []byte) error

type CreateProjectResponse

type CreateProjectResponse struct {

	// project_id is a globally unique identifier for a project.
	ProjectId uint64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateProjectResponse) CloneMessageVT

func (m *CreateProjectResponse) CloneMessageVT() proto.Message

func (*CreateProjectResponse) CloneVT

func (*CreateProjectResponse) Descriptor deprecated

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

Deprecated: Use CreateProjectResponse.ProtoReflect.Descriptor instead.

func (*CreateProjectResponse) EqualMessageVT

func (this *CreateProjectResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateProjectResponse) EqualVT

func (this *CreateProjectResponse) EqualVT(that *CreateProjectResponse) bool

func (*CreateProjectResponse) GetProjectId

func (x *CreateProjectResponse) GetProjectId() uint64

func (*CreateProjectResponse) MarshalToSizedBufferVT

func (m *CreateProjectResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CreateProjectResponse) MarshalToVT

func (m *CreateProjectResponse) MarshalToVT(dAtA []byte) (int, error)

func (*CreateProjectResponse) MarshalVT

func (m *CreateProjectResponse) MarshalVT() (dAtA []byte, err error)

func (*CreateProjectResponse) ProtoMessage

func (*CreateProjectResponse) ProtoMessage()

func (*CreateProjectResponse) ProtoReflect

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

func (*CreateProjectResponse) Reset

func (x *CreateProjectResponse) Reset()

func (*CreateProjectResponse) SizeVT

func (m *CreateProjectResponse) SizeVT() (n int)

func (*CreateProjectResponse) String

func (x *CreateProjectResponse) String() string

func (*CreateProjectResponse) UnmarshalVT

func (m *CreateProjectResponse) UnmarshalVT(dAtA []byte) error

type DeleteOrganizationRequest

type DeleteOrganizationRequest struct {

	// organization_id is a globally unique identifier for an organization. Every
	// user must belong to at least one organization. Attempting to delete the sole
	// organization for a user will fail.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteOrganizationRequest) CloneMessageVT

func (m *DeleteOrganizationRequest) CloneMessageVT() proto.Message

func (*DeleteOrganizationRequest) CloneVT

func (*DeleteOrganizationRequest) Descriptor deprecated

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

Deprecated: Use DeleteOrganizationRequest.ProtoReflect.Descriptor instead.

func (*DeleteOrganizationRequest) EqualMessageVT

func (this *DeleteOrganizationRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteOrganizationRequest) EqualVT

func (*DeleteOrganizationRequest) GetOrganizationId

func (x *DeleteOrganizationRequest) GetOrganizationId() uint64

func (*DeleteOrganizationRequest) MarshalToSizedBufferVT

func (m *DeleteOrganizationRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteOrganizationRequest) MarshalToVT

func (m *DeleteOrganizationRequest) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteOrganizationRequest) MarshalVT

func (m *DeleteOrganizationRequest) MarshalVT() (dAtA []byte, err error)

func (*DeleteOrganizationRequest) ProtoMessage

func (*DeleteOrganizationRequest) ProtoMessage()

func (*DeleteOrganizationRequest) ProtoReflect

func (*DeleteOrganizationRequest) Reset

func (x *DeleteOrganizationRequest) Reset()

func (*DeleteOrganizationRequest) SizeVT

func (m *DeleteOrganizationRequest) SizeVT() (n int)

func (*DeleteOrganizationRequest) String

func (x *DeleteOrganizationRequest) String() string

func (*DeleteOrganizationRequest) UnmarshalVT

func (m *DeleteOrganizationRequest) UnmarshalVT(dAtA []byte) error

type DeleteOrganizationResponse

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

func (*DeleteOrganizationResponse) CloneMessageVT

func (m *DeleteOrganizationResponse) CloneMessageVT() proto.Message

func (*DeleteOrganizationResponse) CloneVT

func (*DeleteOrganizationResponse) Descriptor deprecated

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

Deprecated: Use DeleteOrganizationResponse.ProtoReflect.Descriptor instead.

func (*DeleteOrganizationResponse) EqualMessageVT

func (this *DeleteOrganizationResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteOrganizationResponse) EqualVT

func (*DeleteOrganizationResponse) MarshalToSizedBufferVT

func (m *DeleteOrganizationResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteOrganizationResponse) MarshalToVT

func (m *DeleteOrganizationResponse) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteOrganizationResponse) MarshalVT

func (m *DeleteOrganizationResponse) MarshalVT() (dAtA []byte, err error)

func (*DeleteOrganizationResponse) ProtoMessage

func (*DeleteOrganizationResponse) ProtoMessage()

func (*DeleteOrganizationResponse) ProtoReflect

func (*DeleteOrganizationResponse) Reset

func (x *DeleteOrganizationResponse) Reset()

func (*DeleteOrganizationResponse) SizeVT

func (m *DeleteOrganizationResponse) SizeVT() (n int)

func (*DeleteOrganizationResponse) String

func (x *DeleteOrganizationResponse) String() string

func (*DeleteOrganizationResponse) UnmarshalVT

func (m *DeleteOrganizationResponse) UnmarshalVT(dAtA []byte) error

type DeleteProjectRequest

type DeleteProjectRequest struct {

	// project_id is a globally unique identifier for a project.
	ProjectId uint64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteProjectRequest) CloneMessageVT

func (m *DeleteProjectRequest) CloneMessageVT() proto.Message

func (*DeleteProjectRequest) CloneVT

func (*DeleteProjectRequest) Descriptor deprecated

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

Deprecated: Use DeleteProjectRequest.ProtoReflect.Descriptor instead.

func (*DeleteProjectRequest) EqualMessageVT

func (this *DeleteProjectRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteProjectRequest) EqualVT

func (this *DeleteProjectRequest) EqualVT(that *DeleteProjectRequest) bool

func (*DeleteProjectRequest) GetProjectId

func (x *DeleteProjectRequest) GetProjectId() uint64

func (*DeleteProjectRequest) MarshalToSizedBufferVT

func (m *DeleteProjectRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteProjectRequest) MarshalToVT

func (m *DeleteProjectRequest) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteProjectRequest) MarshalVT

func (m *DeleteProjectRequest) MarshalVT() (dAtA []byte, err error)

func (*DeleteProjectRequest) ProtoMessage

func (*DeleteProjectRequest) ProtoMessage()

func (*DeleteProjectRequest) ProtoReflect

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

func (*DeleteProjectRequest) Reset

func (x *DeleteProjectRequest) Reset()

func (*DeleteProjectRequest) SizeVT

func (m *DeleteProjectRequest) SizeVT() (n int)

func (*DeleteProjectRequest) String

func (x *DeleteProjectRequest) String() string

func (*DeleteProjectRequest) UnmarshalVT

func (m *DeleteProjectRequest) UnmarshalVT(dAtA []byte) error

type DeleteProjectResponse

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

func (*DeleteProjectResponse) CloneMessageVT

func (m *DeleteProjectResponse) CloneMessageVT() proto.Message

func (*DeleteProjectResponse) CloneVT

func (*DeleteProjectResponse) Descriptor deprecated

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

Deprecated: Use DeleteProjectResponse.ProtoReflect.Descriptor instead.

func (*DeleteProjectResponse) EqualMessageVT

func (this *DeleteProjectResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteProjectResponse) EqualVT

func (this *DeleteProjectResponse) EqualVT(that *DeleteProjectResponse) bool

func (*DeleteProjectResponse) MarshalToSizedBufferVT

func (m *DeleteProjectResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteProjectResponse) MarshalToVT

func (m *DeleteProjectResponse) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteProjectResponse) MarshalVT

func (m *DeleteProjectResponse) MarshalVT() (dAtA []byte, err error)

func (*DeleteProjectResponse) ProtoMessage

func (*DeleteProjectResponse) ProtoMessage()

func (*DeleteProjectResponse) ProtoReflect

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

func (*DeleteProjectResponse) Reset

func (x *DeleteProjectResponse) Reset()

func (*DeleteProjectResponse) SizeVT

func (m *DeleteProjectResponse) SizeVT() (n int)

func (*DeleteProjectResponse) String

func (x *DeleteProjectResponse) String() string

func (*DeleteProjectResponse) UnmarshalVT

func (m *DeleteProjectResponse) UnmarshalVT(dAtA []byte) error

type EnrollMachineUserRequest

type EnrollMachineUserRequest struct {

	// The oAuth subject of the user we are enrolling. Auth0 will create tokens
	// where the subject is "<client_id>@clients" where client_id is the machine
	// user's client ID which can be read in the Auth0 console.
	OAuthSubject string `protobuf:"bytes,1,opt,name=o_auth_subject,json=oAuthSubject,proto3" json:"o_auth_subject,omitempty"`
	// display name for the user for us to show in audit trail etc
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// The organization ID in which we are enrolling the machine user. The machine user will get full
	// access to all the stores in this organization.
	OrganizationId uint64 `protobuf:"varint,3,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// contains filtered or unexported fields
}

Enrolling a machine user is slightly different to enrolling a normal user. This is an admin operation that is ACL authorized so we can pass parameters in the request. This is necessary because we enroll the user on their behalf so its not possible to read the subject out of the auth token. We also must pass the organization ID in which to enroll the user. This is why a machine user cannot enroll themselves

func (*EnrollMachineUserRequest) CloneMessageVT

func (m *EnrollMachineUserRequest) CloneMessageVT() proto.Message

func (*EnrollMachineUserRequest) CloneVT

func (*EnrollMachineUserRequest) Descriptor deprecated

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

Deprecated: Use EnrollMachineUserRequest.ProtoReflect.Descriptor instead.

func (*EnrollMachineUserRequest) EqualMessageVT

func (this *EnrollMachineUserRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*EnrollMachineUserRequest) EqualVT

func (*EnrollMachineUserRequest) GetDisplayName

func (x *EnrollMachineUserRequest) GetDisplayName() string

func (*EnrollMachineUserRequest) GetOAuthSubject

func (x *EnrollMachineUserRequest) GetOAuthSubject() string

func (*EnrollMachineUserRequest) GetOrganizationId

func (x *EnrollMachineUserRequest) GetOrganizationId() uint64

func (*EnrollMachineUserRequest) MarshalToSizedBufferVT

func (m *EnrollMachineUserRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*EnrollMachineUserRequest) MarshalToVT

func (m *EnrollMachineUserRequest) MarshalToVT(dAtA []byte) (int, error)

func (*EnrollMachineUserRequest) MarshalVT

func (m *EnrollMachineUserRequest) MarshalVT() (dAtA []byte, err error)

func (*EnrollMachineUserRequest) ProtoMessage

func (*EnrollMachineUserRequest) ProtoMessage()

func (*EnrollMachineUserRequest) ProtoReflect

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

func (*EnrollMachineUserRequest) Reset

func (x *EnrollMachineUserRequest) Reset()

func (*EnrollMachineUserRequest) SizeVT

func (m *EnrollMachineUserRequest) SizeVT() (n int)

func (*EnrollMachineUserRequest) String

func (x *EnrollMachineUserRequest) String() string

func (*EnrollMachineUserRequest) UnmarshalVT

func (m *EnrollMachineUserRequest) UnmarshalVT(dAtA []byte) error

type EnrollMachineUserResponse

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

func (*EnrollMachineUserResponse) CloneMessageVT

func (m *EnrollMachineUserResponse) CloneMessageVT() proto.Message

func (*EnrollMachineUserResponse) CloneVT

func (*EnrollMachineUserResponse) Descriptor deprecated

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

Deprecated: Use EnrollMachineUserResponse.ProtoReflect.Descriptor instead.

func (*EnrollMachineUserResponse) EqualMessageVT

func (this *EnrollMachineUserResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*EnrollMachineUserResponse) EqualVT

func (*EnrollMachineUserResponse) MarshalToSizedBufferVT

func (m *EnrollMachineUserResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*EnrollMachineUserResponse) MarshalToVT

func (m *EnrollMachineUserResponse) MarshalToVT(dAtA []byte) (int, error)

func (*EnrollMachineUserResponse) MarshalVT

func (m *EnrollMachineUserResponse) MarshalVT() (dAtA []byte, err error)

func (*EnrollMachineUserResponse) ProtoMessage

func (*EnrollMachineUserResponse) ProtoMessage()

func (*EnrollMachineUserResponse) ProtoReflect

func (*EnrollMachineUserResponse) Reset

func (x *EnrollMachineUserResponse) Reset()

func (*EnrollMachineUserResponse) SizeVT

func (m *EnrollMachineUserResponse) SizeVT() (n int)

func (*EnrollMachineUserResponse) String

func (x *EnrollMachineUserResponse) String() string

func (*EnrollMachineUserResponse) UnmarshalVT

func (m *EnrollMachineUserResponse) UnmarshalVT(dAtA []byte) error

type EnrollRequest

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

func (*EnrollRequest) CloneMessageVT

func (m *EnrollRequest) CloneMessageVT() proto.Message

func (*EnrollRequest) CloneVT

func (m *EnrollRequest) CloneVT() *EnrollRequest

func (*EnrollRequest) Descriptor deprecated

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

Deprecated: Use EnrollRequest.ProtoReflect.Descriptor instead.

func (*EnrollRequest) EqualMessageVT

func (this *EnrollRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*EnrollRequest) EqualVT

func (this *EnrollRequest) EqualVT(that *EnrollRequest) bool

func (*EnrollRequest) MarshalToSizedBufferVT

func (m *EnrollRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*EnrollRequest) MarshalToVT

func (m *EnrollRequest) MarshalToVT(dAtA []byte) (int, error)

func (*EnrollRequest) MarshalVT

func (m *EnrollRequest) MarshalVT() (dAtA []byte, err error)

func (*EnrollRequest) ProtoMessage

func (*EnrollRequest) ProtoMessage()

func (*EnrollRequest) ProtoReflect

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

func (*EnrollRequest) Reset

func (x *EnrollRequest) Reset()

func (*EnrollRequest) SizeVT

func (m *EnrollRequest) SizeVT() (n int)

func (*EnrollRequest) String

func (x *EnrollRequest) String() string

func (*EnrollRequest) UnmarshalVT

func (m *EnrollRequest) UnmarshalVT(dAtA []byte) error

type EnrollResponse

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

func (*EnrollResponse) CloneMessageVT

func (m *EnrollResponse) CloneMessageVT() proto.Message

func (*EnrollResponse) CloneVT

func (m *EnrollResponse) CloneVT() *EnrollResponse

func (*EnrollResponse) Descriptor deprecated

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

Deprecated: Use EnrollResponse.ProtoReflect.Descriptor instead.

func (*EnrollResponse) EqualMessageVT

func (this *EnrollResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*EnrollResponse) EqualVT

func (this *EnrollResponse) EqualVT(that *EnrollResponse) bool

func (*EnrollResponse) MarshalToSizedBufferVT

func (m *EnrollResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*EnrollResponse) MarshalToVT

func (m *EnrollResponse) MarshalToVT(dAtA []byte) (int, error)

func (*EnrollResponse) MarshalVT

func (m *EnrollResponse) MarshalVT() (dAtA []byte, err error)

func (*EnrollResponse) ProtoMessage

func (*EnrollResponse) ProtoMessage()

func (*EnrollResponse) ProtoReflect

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

func (*EnrollResponse) Reset

func (x *EnrollResponse) Reset()

func (*EnrollResponse) SizeVT

func (m *EnrollResponse) SizeVT() (n int)

func (*EnrollResponse) String

func (x *EnrollResponse) String() string

func (*EnrollResponse) UnmarshalVT

func (m *EnrollResponse) UnmarshalVT(dAtA []byte) error

type GetCallerIdentityRequest

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

func (*GetCallerIdentityRequest) CloneMessageVT

func (m *GetCallerIdentityRequest) CloneMessageVT() proto.Message

func (*GetCallerIdentityRequest) CloneVT

func (*GetCallerIdentityRequest) Descriptor deprecated

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

Deprecated: Use GetCallerIdentityRequest.ProtoReflect.Descriptor instead.

func (*GetCallerIdentityRequest) EqualMessageVT

func (this *GetCallerIdentityRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*GetCallerIdentityRequest) EqualVT

func (*GetCallerIdentityRequest) MarshalToSizedBufferVT

func (m *GetCallerIdentityRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*GetCallerIdentityRequest) MarshalToVT

func (m *GetCallerIdentityRequest) MarshalToVT(dAtA []byte) (int, error)

func (*GetCallerIdentityRequest) MarshalVT

func (m *GetCallerIdentityRequest) MarshalVT() (dAtA []byte, err error)

func (*GetCallerIdentityRequest) ProtoMessage

func (*GetCallerIdentityRequest) ProtoMessage()

func (*GetCallerIdentityRequest) ProtoReflect

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

func (*GetCallerIdentityRequest) Reset

func (x *GetCallerIdentityRequest) Reset()

func (*GetCallerIdentityRequest) SizeVT

func (m *GetCallerIdentityRequest) SizeVT() (n int)

func (*GetCallerIdentityRequest) String

func (x *GetCallerIdentityRequest) String() string

func (*GetCallerIdentityRequest) UnmarshalVT

func (m *GetCallerIdentityRequest) UnmarshalVT(dAtA []byte) error

type GetCallerIdentityResponse

type GetCallerIdentityResponse struct {

	// user_id is the user's ID in Stately. This is generated by us during enrollment
	// and can may also be referred to as member ID within Stately.
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// contains filtered or unexported fields
}

func (*GetCallerIdentityResponse) CloneMessageVT

func (m *GetCallerIdentityResponse) CloneMessageVT() proto.Message

func (*GetCallerIdentityResponse) CloneVT

func (*GetCallerIdentityResponse) Descriptor deprecated

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

Deprecated: Use GetCallerIdentityResponse.ProtoReflect.Descriptor instead.

func (*GetCallerIdentityResponse) EqualMessageVT

func (this *GetCallerIdentityResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*GetCallerIdentityResponse) EqualVT

func (*GetCallerIdentityResponse) GetUserId

func (x *GetCallerIdentityResponse) GetUserId() uint64

func (*GetCallerIdentityResponse) MarshalToSizedBufferVT

func (m *GetCallerIdentityResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*GetCallerIdentityResponse) MarshalToVT

func (m *GetCallerIdentityResponse) MarshalToVT(dAtA []byte) (int, error)

func (*GetCallerIdentityResponse) MarshalVT

func (m *GetCallerIdentityResponse) MarshalVT() (dAtA []byte, err error)

func (*GetCallerIdentityResponse) ProtoMessage

func (*GetCallerIdentityResponse) ProtoMessage()

func (*GetCallerIdentityResponse) ProtoReflect

func (*GetCallerIdentityResponse) Reset

func (x *GetCallerIdentityResponse) Reset()

func (*GetCallerIdentityResponse) SizeVT

func (m *GetCallerIdentityResponse) SizeVT() (n int)

func (*GetCallerIdentityResponse) String

func (x *GetCallerIdentityResponse) String() string

func (*GetCallerIdentityResponse) UnmarshalVT

func (m *GetCallerIdentityResponse) UnmarshalVT(dAtA []byte) error

type ListAllOrganizationsRequest

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

func (*ListAllOrganizationsRequest) CloneMessageVT

func (m *ListAllOrganizationsRequest) CloneMessageVT() proto.Message

func (*ListAllOrganizationsRequest) CloneVT

func (*ListAllOrganizationsRequest) Descriptor deprecated

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

Deprecated: Use ListAllOrganizationsRequest.ProtoReflect.Descriptor instead.

func (*ListAllOrganizationsRequest) EqualMessageVT

func (this *ListAllOrganizationsRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*ListAllOrganizationsRequest) EqualVT

func (*ListAllOrganizationsRequest) MarshalToSizedBufferVT

func (m *ListAllOrganizationsRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ListAllOrganizationsRequest) MarshalToVT

func (m *ListAllOrganizationsRequest) MarshalToVT(dAtA []byte) (int, error)

func (*ListAllOrganizationsRequest) MarshalVT

func (m *ListAllOrganizationsRequest) MarshalVT() (dAtA []byte, err error)

func (*ListAllOrganizationsRequest) ProtoMessage

func (*ListAllOrganizationsRequest) ProtoMessage()

func (*ListAllOrganizationsRequest) ProtoReflect

func (*ListAllOrganizationsRequest) Reset

func (x *ListAllOrganizationsRequest) Reset()

func (*ListAllOrganizationsRequest) SizeVT

func (m *ListAllOrganizationsRequest) SizeVT() (n int)

func (*ListAllOrganizationsRequest) String

func (x *ListAllOrganizationsRequest) String() string

func (*ListAllOrganizationsRequest) UnmarshalVT

func (m *ListAllOrganizationsRequest) UnmarshalVT(dAtA []byte) error

type ListAllOrganizationsResponse

type ListAllOrganizationsResponse struct {

	// organizations is a list of all organizations this user has access to. The
	// user can subsequently call DescribeOrganization to get more info about an
	// individual organization.
	Organizations []*ListOrganizationsEntry `protobuf:"bytes,1,rep,name=organizations,proto3" json:"organizations,omitempty"`
	// contains filtered or unexported fields
}

func (*ListAllOrganizationsResponse) CloneMessageVT

func (m *ListAllOrganizationsResponse) CloneMessageVT() proto.Message

func (*ListAllOrganizationsResponse) CloneVT

func (*ListAllOrganizationsResponse) Descriptor deprecated

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

Deprecated: Use ListAllOrganizationsResponse.ProtoReflect.Descriptor instead.

func (*ListAllOrganizationsResponse) EqualMessageVT

func (this *ListAllOrganizationsResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*ListAllOrganizationsResponse) EqualVT

func (*ListAllOrganizationsResponse) GetOrganizations

func (x *ListAllOrganizationsResponse) GetOrganizations() []*ListOrganizationsEntry

func (*ListAllOrganizationsResponse) MarshalToSizedBufferVT

func (m *ListAllOrganizationsResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ListAllOrganizationsResponse) MarshalToVT

func (m *ListAllOrganizationsResponse) MarshalToVT(dAtA []byte) (int, error)

func (*ListAllOrganizationsResponse) MarshalVT

func (m *ListAllOrganizationsResponse) MarshalVT() (dAtA []byte, err error)

func (*ListAllOrganizationsResponse) ProtoMessage

func (*ListAllOrganizationsResponse) ProtoMessage()

func (*ListAllOrganizationsResponse) ProtoReflect

func (*ListAllOrganizationsResponse) Reset

func (x *ListAllOrganizationsResponse) Reset()

func (*ListAllOrganizationsResponse) SizeVT

func (m *ListAllOrganizationsResponse) SizeVT() (n int)

func (*ListAllOrganizationsResponse) String

func (*ListAllOrganizationsResponse) UnmarshalVT

func (m *ListAllOrganizationsResponse) UnmarshalVT(dAtA []byte) error

type ListOrganizationsEntry

type ListOrganizationsEntry struct {

	// organization_id is a globally unique identifier.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// name is a required human readable name that will be displayed in the UI.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// the list of users, mostly to help identify the organization.
	Members []*MinimalUserInfo `protobuf:"bytes,3,rep,name=members,proto3" json:"members,omitempty"`
	// projects is a list of projects that belong to this organization.
	Projects []*ProjectNode `protobuf:"bytes,4,rep,name=projects,proto3" json:"projects,omitempty"`
	// contains filtered or unexported fields
}

ListOrganizationsEntry provides a sample of information about an organization.

func (*ListOrganizationsEntry) CloneMessageVT

func (m *ListOrganizationsEntry) CloneMessageVT() proto.Message

func (*ListOrganizationsEntry) CloneVT

func (*ListOrganizationsEntry) Descriptor deprecated

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

Deprecated: Use ListOrganizationsEntry.ProtoReflect.Descriptor instead.

func (*ListOrganizationsEntry) EqualMessageVT

func (this *ListOrganizationsEntry) EqualMessageVT(thatMsg proto.Message) bool

func (*ListOrganizationsEntry) EqualVT

func (this *ListOrganizationsEntry) EqualVT(that *ListOrganizationsEntry) bool

func (*ListOrganizationsEntry) GetMembers

func (x *ListOrganizationsEntry) GetMembers() []*MinimalUserInfo

func (*ListOrganizationsEntry) GetName

func (x *ListOrganizationsEntry) GetName() string

func (*ListOrganizationsEntry) GetOrganizationId

func (x *ListOrganizationsEntry) GetOrganizationId() uint64

func (*ListOrganizationsEntry) GetProjects

func (x *ListOrganizationsEntry) GetProjects() []*ProjectNode

func (*ListOrganizationsEntry) MarshalToSizedBufferVT

func (m *ListOrganizationsEntry) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ListOrganizationsEntry) MarshalToVT

func (m *ListOrganizationsEntry) MarshalToVT(dAtA []byte) (int, error)

func (*ListOrganizationsEntry) MarshalVT

func (m *ListOrganizationsEntry) MarshalVT() (dAtA []byte, err error)

func (*ListOrganizationsEntry) ProtoMessage

func (*ListOrganizationsEntry) ProtoMessage()

func (*ListOrganizationsEntry) ProtoReflect

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

func (*ListOrganizationsEntry) Reset

func (x *ListOrganizationsEntry) Reset()

func (*ListOrganizationsEntry) SizeVT

func (m *ListOrganizationsEntry) SizeVT() (n int)

func (*ListOrganizationsEntry) String

func (x *ListOrganizationsEntry) String() string

func (*ListOrganizationsEntry) UnmarshalVT

func (m *ListOrganizationsEntry) UnmarshalVT(dAtA []byte) error

type MinimalUserInfo

type MinimalUserInfo struct {

	// user_id is a globally unique identifier.
	UserId uint64 `protobuf:"varint,1,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// name is the user's display name. It may be missing, in which case the
	// user's email should be displayed.
	DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// email is the user's email when they registered.
	Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	// contains filtered or unexported fields
}

MinimalUserInfo is a subset of the information that is available about a user, appropriate for displaying in a list or as search results.

func (*MinimalUserInfo) CloneMessageVT

func (m *MinimalUserInfo) CloneMessageVT() proto.Message

func (*MinimalUserInfo) CloneVT

func (m *MinimalUserInfo) CloneVT() *MinimalUserInfo

func (*MinimalUserInfo) Descriptor deprecated

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

Deprecated: Use MinimalUserInfo.ProtoReflect.Descriptor instead.

func (*MinimalUserInfo) EqualMessageVT

func (this *MinimalUserInfo) EqualMessageVT(thatMsg proto.Message) bool

func (*MinimalUserInfo) EqualVT

func (this *MinimalUserInfo) EqualVT(that *MinimalUserInfo) bool

func (*MinimalUserInfo) GetDisplayName

func (x *MinimalUserInfo) GetDisplayName() string

func (*MinimalUserInfo) GetEmail

func (x *MinimalUserInfo) GetEmail() string

func (*MinimalUserInfo) GetUserId

func (x *MinimalUserInfo) GetUserId() uint64

func (*MinimalUserInfo) MarshalToSizedBufferVT

func (m *MinimalUserInfo) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MinimalUserInfo) MarshalToVT

func (m *MinimalUserInfo) MarshalToVT(dAtA []byte) (int, error)

func (*MinimalUserInfo) MarshalVT

func (m *MinimalUserInfo) MarshalVT() (dAtA []byte, err error)

func (*MinimalUserInfo) ProtoMessage

func (*MinimalUserInfo) ProtoMessage()

func (*MinimalUserInfo) ProtoReflect

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

func (*MinimalUserInfo) Reset

func (x *MinimalUserInfo) Reset()

func (*MinimalUserInfo) SizeVT

func (m *MinimalUserInfo) SizeVT() (n int)

func (*MinimalUserInfo) String

func (x *MinimalUserInfo) String() string

func (*MinimalUserInfo) UnmarshalVT

func (m *MinimalUserInfo) UnmarshalVT(dAtA []byte) error

type Organization

type Organization struct {

	// organization_id is a globally unique identifier.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// name is a required human readable name that will be displayed in the UI.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

Organization describes an organization, which is a container for projects.

func (*Organization) CloneMessageVT

func (m *Organization) CloneMessageVT() proto.Message

func (*Organization) CloneVT

func (m *Organization) CloneVT() *Organization

func (*Organization) Descriptor deprecated

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

Deprecated: Use Organization.ProtoReflect.Descriptor instead.

func (*Organization) EqualMessageVT

func (this *Organization) EqualMessageVT(thatMsg proto.Message) bool

func (*Organization) EqualVT

func (this *Organization) EqualVT(that *Organization) bool

func (*Organization) GetName

func (x *Organization) GetName() string

func (*Organization) GetOrganizationId

func (x *Organization) GetOrganizationId() uint64

func (*Organization) MarshalToSizedBufferVT

func (m *Organization) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Organization) MarshalToVT

func (m *Organization) MarshalToVT(dAtA []byte) (int, error)

func (*Organization) MarshalVT

func (m *Organization) MarshalVT() (dAtA []byte, err error)

func (*Organization) ProtoMessage

func (*Organization) ProtoMessage()

func (*Organization) ProtoReflect

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

func (*Organization) Reset

func (x *Organization) Reset()

func (*Organization) SizeVT

func (m *Organization) SizeVT() (n int)

func (*Organization) String

func (x *Organization) String() string

func (*Organization) UnmarshalVT

func (m *Organization) UnmarshalVT(dAtA []byte) error

type OrganizationNode

type OrganizationNode struct {

	// organization contains details about an organization.
	Organization *Organization `protobuf:"bytes,1,opt,name=organization,proto3" json:"organization,omitempty"`
	// projects is a list of projects that belong to this organization.
	Projects []*ProjectNode `protobuf:"bytes,2,rep,name=projects,proto3" json:"projects,omitempty"`
	// contains filtered or unexported fields
}

func (*OrganizationNode) CloneMessageVT

func (m *OrganizationNode) CloneMessageVT() proto.Message

func (*OrganizationNode) CloneVT

func (m *OrganizationNode) CloneVT() *OrganizationNode

func (*OrganizationNode) Descriptor deprecated

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

Deprecated: Use OrganizationNode.ProtoReflect.Descriptor instead.

func (*OrganizationNode) EqualMessageVT

func (this *OrganizationNode) EqualMessageVT(thatMsg proto.Message) bool

func (*OrganizationNode) EqualVT

func (this *OrganizationNode) EqualVT(that *OrganizationNode) bool

func (*OrganizationNode) GetOrganization

func (x *OrganizationNode) GetOrganization() *Organization

func (*OrganizationNode) GetProjects

func (x *OrganizationNode) GetProjects() []*ProjectNode

func (*OrganizationNode) MarshalToSizedBufferVT

func (m *OrganizationNode) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*OrganizationNode) MarshalToVT

func (m *OrganizationNode) MarshalToVT(dAtA []byte) (int, error)

func (*OrganizationNode) MarshalVT

func (m *OrganizationNode) MarshalVT() (dAtA []byte, err error)

func (*OrganizationNode) ProtoMessage

func (*OrganizationNode) ProtoMessage()

func (*OrganizationNode) ProtoReflect

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

func (*OrganizationNode) Reset

func (x *OrganizationNode) Reset()

func (*OrganizationNode) SizeVT

func (m *OrganizationNode) SizeVT() (n int)

func (*OrganizationNode) String

func (x *OrganizationNode) String() string

func (*OrganizationNode) UnmarshalVT

func (m *OrganizationNode) UnmarshalVT(dAtA []byte) error

type Project

type Project struct {

	// project_id is a globally unique identifier for this project.
	ProjectId uint64 `protobuf:"varint,1,opt,name=project_id,json=projectId,proto3" json:"project_id,omitempty"`
	// name is a required human readable name that will be displayed in the UI.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// description is an optional human readable explanation for what the project is for.
	Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"`
	// organization_id is the identifier for the organization this project
	// belongs to.
	OrganizationId uint64 `protobuf:"varint,4,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// contains filtered or unexported fields
}

Project describes a project, which is a container for cloud resources.

func (*Project) CloneMessageVT

func (m *Project) CloneMessageVT() proto.Message

func (*Project) CloneVT

func (m *Project) CloneVT() *Project

func (*Project) Descriptor deprecated

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

Deprecated: Use Project.ProtoReflect.Descriptor instead.

func (*Project) EqualMessageVT

func (this *Project) EqualMessageVT(thatMsg proto.Message) bool

func (*Project) EqualVT

func (this *Project) EqualVT(that *Project) bool

func (*Project) GetDescription

func (x *Project) GetDescription() string

func (*Project) GetName

func (x *Project) GetName() string

func (*Project) GetOrganizationId

func (x *Project) GetOrganizationId() uint64

func (*Project) GetProjectId

func (x *Project) GetProjectId() uint64

func (*Project) MarshalToSizedBufferVT

func (m *Project) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Project) MarshalToVT

func (m *Project) MarshalToVT(dAtA []byte) (int, error)

func (*Project) MarshalVT

func (m *Project) MarshalVT() (dAtA []byte, err error)

func (*Project) ProtoMessage

func (*Project) ProtoMessage()

func (*Project) ProtoReflect

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

func (*Project) Reset

func (x *Project) Reset()

func (*Project) SizeVT

func (m *Project) SizeVT() (n int)

func (*Project) String

func (x *Project) String() string

func (*Project) UnmarshalVT

func (m *Project) UnmarshalVT(dAtA []byte) error

type ProjectNode

type ProjectNode struct {

	// project contains details about a project.
	Project *Project `protobuf:"bytes,1,opt,name=project,proto3" json:"project,omitempty"`
	// stores is a list of stores that belong to this project.
	Stores []*StoreNode `protobuf:"bytes,2,rep,name=stores,proto3" json:"stores,omitempty"`
	// contains filtered or unexported fields
}

func (*ProjectNode) CloneMessageVT

func (m *ProjectNode) CloneMessageVT() proto.Message

func (*ProjectNode) CloneVT

func (m *ProjectNode) CloneVT() *ProjectNode

func (*ProjectNode) Descriptor deprecated

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

Deprecated: Use ProjectNode.ProtoReflect.Descriptor instead.

func (*ProjectNode) EqualMessageVT

func (this *ProjectNode) EqualMessageVT(thatMsg proto.Message) bool

func (*ProjectNode) EqualVT

func (this *ProjectNode) EqualVT(that *ProjectNode) bool

func (*ProjectNode) GetProject

func (x *ProjectNode) GetProject() *Project

func (*ProjectNode) GetStores

func (x *ProjectNode) GetStores() []*StoreNode

func (*ProjectNode) MarshalToSizedBufferVT

func (m *ProjectNode) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ProjectNode) MarshalToVT

func (m *ProjectNode) MarshalToVT(dAtA []byte) (int, error)

func (*ProjectNode) MarshalVT

func (m *ProjectNode) MarshalVT() (dAtA []byte, err error)

func (*ProjectNode) ProtoMessage

func (*ProjectNode) ProtoMessage()

func (*ProjectNode) ProtoReflect

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

func (*ProjectNode) Reset

func (x *ProjectNode) Reset()

func (*ProjectNode) SizeVT

func (m *ProjectNode) SizeVT() (n int)

func (*ProjectNode) String

func (x *ProjectNode) String() string

func (*ProjectNode) UnmarshalVT

func (m *ProjectNode) UnmarshalVT(dAtA []byte) error

type RemoveUsersFromOrganizationRequest

type RemoveUsersFromOrganizationRequest struct {

	// organization_id is the globally unique identifier of the organization that the
	// project will belong to.
	OrganizationId uint64 `protobuf:"varint,1,opt,name=organization_id,json=organizationId,proto3" json:"organization_id,omitempty"`
	// user_ids is the list of each user ID to remove. Users that are not members
	// of the organization will be skipped.
	UserIds []uint64 `protobuf:"varint,2,rep,packed,name=user_ids,json=userIds,proto3" json:"user_ids,omitempty"`
	// contains filtered or unexported fields
}

func (*RemoveUsersFromOrganizationRequest) CloneMessageVT

func (m *RemoveUsersFromOrganizationRequest) CloneMessageVT() proto.Message

func (*RemoveUsersFromOrganizationRequest) CloneVT

func (*RemoveUsersFromOrganizationRequest) Descriptor deprecated

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

Deprecated: Use RemoveUsersFromOrganizationRequest.ProtoReflect.Descriptor instead.

func (*RemoveUsersFromOrganizationRequest) EqualMessageVT

func (this *RemoveUsersFromOrganizationRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*RemoveUsersFromOrganizationRequest) EqualVT

func (*RemoveUsersFromOrganizationRequest) GetOrganizationId

func (x *RemoveUsersFromOrganizationRequest) GetOrganizationId() uint64

func (*RemoveUsersFromOrganizationRequest) GetUserIds

func (x *RemoveUsersFromOrganizationRequest) GetUserIds() []uint64

func (*RemoveUsersFromOrganizationRequest) MarshalToSizedBufferVT

func (m *RemoveUsersFromOrganizationRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RemoveUsersFromOrganizationRequest) MarshalToVT

func (m *RemoveUsersFromOrganizationRequest) MarshalToVT(dAtA []byte) (int, error)

func (*RemoveUsersFromOrganizationRequest) MarshalVT

func (m *RemoveUsersFromOrganizationRequest) MarshalVT() (dAtA []byte, err error)

func (*RemoveUsersFromOrganizationRequest) ProtoMessage

func (*RemoveUsersFromOrganizationRequest) ProtoMessage()

func (*RemoveUsersFromOrganizationRequest) ProtoReflect

func (*RemoveUsersFromOrganizationRequest) Reset

func (*RemoveUsersFromOrganizationRequest) SizeVT

func (m *RemoveUsersFromOrganizationRequest) SizeVT() (n int)

func (*RemoveUsersFromOrganizationRequest) String

func (*RemoveUsersFromOrganizationRequest) UnmarshalVT

func (m *RemoveUsersFromOrganizationRequest) UnmarshalVT(dAtA []byte) error

type RemoveUsersFromOrganizationResponse

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

func (*RemoveUsersFromOrganizationResponse) CloneMessageVT

func (*RemoveUsersFromOrganizationResponse) CloneVT

func (*RemoveUsersFromOrganizationResponse) Descriptor deprecated

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

Deprecated: Use RemoveUsersFromOrganizationResponse.ProtoReflect.Descriptor instead.

func (*RemoveUsersFromOrganizationResponse) EqualMessageVT

func (this *RemoveUsersFromOrganizationResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*RemoveUsersFromOrganizationResponse) EqualVT

func (*RemoveUsersFromOrganizationResponse) MarshalToSizedBufferVT

func (m *RemoveUsersFromOrganizationResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RemoveUsersFromOrganizationResponse) MarshalToVT

func (m *RemoveUsersFromOrganizationResponse) MarshalToVT(dAtA []byte) (int, error)

func (*RemoveUsersFromOrganizationResponse) MarshalVT

func (m *RemoveUsersFromOrganizationResponse) MarshalVT() (dAtA []byte, err error)

func (*RemoveUsersFromOrganizationResponse) ProtoMessage

func (*RemoveUsersFromOrganizationResponse) ProtoMessage()

func (*RemoveUsersFromOrganizationResponse) ProtoReflect

func (*RemoveUsersFromOrganizationResponse) Reset

func (*RemoveUsersFromOrganizationResponse) SizeVT

func (m *RemoveUsersFromOrganizationResponse) SizeVT() (n int)

func (*RemoveUsersFromOrganizationResponse) String

func (*RemoveUsersFromOrganizationResponse) UnmarshalVT

func (m *RemoveUsersFromOrganizationResponse) UnmarshalVT(dAtA []byte) error

type StoreNode

type StoreNode struct {

	// store contains details about a store.
	Store *dbmanagement.StoreInfo `protobuf:"bytes,1,opt,name=store,proto3" json:"store,omitempty"`
	// contains filtered or unexported fields
}

func (*StoreNode) CloneMessageVT

func (m *StoreNode) CloneMessageVT() proto.Message

func (*StoreNode) CloneVT

func (m *StoreNode) CloneVT() *StoreNode

func (*StoreNode) Descriptor deprecated

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

Deprecated: Use StoreNode.ProtoReflect.Descriptor instead.

func (*StoreNode) EqualMessageVT

func (this *StoreNode) EqualMessageVT(thatMsg proto.Message) bool

func (*StoreNode) EqualVT

func (this *StoreNode) EqualVT(that *StoreNode) bool

func (*StoreNode) GetStore

func (x *StoreNode) GetStore() *dbmanagement.StoreInfo

func (*StoreNode) MarshalToSizedBufferVT

func (m *StoreNode) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*StoreNode) MarshalToVT

func (m *StoreNode) MarshalToVT(dAtA []byte) (int, error)

func (*StoreNode) MarshalVT

func (m *StoreNode) MarshalVT() (dAtA []byte, err error)

func (*StoreNode) ProtoMessage

func (*StoreNode) ProtoMessage()

func (*StoreNode) ProtoReflect

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

func (*StoreNode) Reset

func (x *StoreNode) Reset()

func (*StoreNode) SizeVT

func (m *StoreNode) SizeVT() (n int)

func (*StoreNode) String

func (x *StoreNode) String() string

func (*StoreNode) UnmarshalVT

func (m *StoreNode) UnmarshalVT(dAtA []byte) error

type WhoamiRequest

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

func (*WhoamiRequest) CloneMessageVT

func (m *WhoamiRequest) CloneMessageVT() proto.Message

func (*WhoamiRequest) CloneVT

func (m *WhoamiRequest) CloneVT() *WhoamiRequest

func (*WhoamiRequest) Descriptor deprecated

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

Deprecated: Use WhoamiRequest.ProtoReflect.Descriptor instead.

func (*WhoamiRequest) EqualMessageVT

func (this *WhoamiRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*WhoamiRequest) EqualVT

func (this *WhoamiRequest) EqualVT(that *WhoamiRequest) bool

func (*WhoamiRequest) MarshalToSizedBufferVT

func (m *WhoamiRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WhoamiRequest) MarshalToVT

func (m *WhoamiRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WhoamiRequest) MarshalVT

func (m *WhoamiRequest) MarshalVT() (dAtA []byte, err error)

func (*WhoamiRequest) ProtoMessage

func (*WhoamiRequest) ProtoMessage()

func (*WhoamiRequest) ProtoReflect

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

func (*WhoamiRequest) Reset

func (x *WhoamiRequest) Reset()

func (*WhoamiRequest) SizeVT

func (m *WhoamiRequest) SizeVT() (n int)

func (*WhoamiRequest) String

func (x *WhoamiRequest) String() string

func (*WhoamiRequest) UnmarshalVT

func (m *WhoamiRequest) UnmarshalVT(dAtA []byte) error

type WhoamiResponse

type WhoamiResponse struct {

	// oauth_subject is the user's ID in Auth0. We already have this from the auth token
	// but it can't hurt to return it so we can validate that what we have locally
	// is still what we thought.
	OauthSubject string `protobuf:"bytes,1,opt,name=oauth_subject,json=oauthSubject,proto3" json:"oauth_subject,omitempty"`
	// user_id is the user's ID in Stately. This is generated by us during enrollment
	// and can may also be referred to as member ID within Stately.
	UserId uint64 `protobuf:"varint,2,opt,name=user_id,json=userId,proto3" json:"user_id,omitempty"`
	// email is the user's email address. This can be missing if this is a machine
	// user.
	// TODO: In the future we'll want to replace this with a list of emails,
	// verification status, etc.
	Email string `protobuf:"bytes,3,opt,name=email,proto3" json:"email,omitempty"`
	// enrollment_time is the UTC epoch of when the User was created.
	EnrollmentTime uint64 `protobuf:"varint,4,opt,name=enrollment_time,json=enrollmentTime,proto3" json:"enrollment_time,omitempty"`
	// display_name is the user's display name.
	DisplayName string `protobuf:"bytes,5,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"`
	// organizations is a tree of the organizations, their projects and their stores.
	Organizations []*OrganizationNode `protobuf:"bytes,6,rep,name=organizations,proto3" json:"organizations,omitempty"`
	// contains filtered or unexported fields
}

func (*WhoamiResponse) CloneMessageVT

func (m *WhoamiResponse) CloneMessageVT() proto.Message

func (*WhoamiResponse) CloneVT

func (m *WhoamiResponse) CloneVT() *WhoamiResponse

func (*WhoamiResponse) Descriptor deprecated

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

Deprecated: Use WhoamiResponse.ProtoReflect.Descriptor instead.

func (*WhoamiResponse) EqualMessageVT

func (this *WhoamiResponse) EqualMessageVT(thatMsg proto.Message) bool

func (*WhoamiResponse) EqualVT

func (this *WhoamiResponse) EqualVT(that *WhoamiResponse) bool

func (*WhoamiResponse) GetDisplayName

func (x *WhoamiResponse) GetDisplayName() string

func (*WhoamiResponse) GetEmail

func (x *WhoamiResponse) GetEmail() string

func (*WhoamiResponse) GetEnrollmentTime

func (x *WhoamiResponse) GetEnrollmentTime() uint64

func (*WhoamiResponse) GetOauthSubject

func (x *WhoamiResponse) GetOauthSubject() string

func (*WhoamiResponse) GetOrganizations

func (x *WhoamiResponse) GetOrganizations() []*OrganizationNode

func (*WhoamiResponse) GetUserId

func (x *WhoamiResponse) GetUserId() uint64

func (*WhoamiResponse) MarshalToSizedBufferVT

func (m *WhoamiResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WhoamiResponse) MarshalToVT

func (m *WhoamiResponse) MarshalToVT(dAtA []byte) (int, error)

func (*WhoamiResponse) MarshalVT

func (m *WhoamiResponse) MarshalVT() (dAtA []byte, err error)

func (*WhoamiResponse) ProtoMessage

func (*WhoamiResponse) ProtoMessage()

func (*WhoamiResponse) ProtoReflect

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

func (*WhoamiResponse) Reset

func (x *WhoamiResponse) Reset()

func (*WhoamiResponse) SizeVT

func (m *WhoamiResponse) SizeVT() (n int)

func (*WhoamiResponse) String

func (x *WhoamiResponse) String() string

func (*WhoamiResponse) UnmarshalVT

func (m *WhoamiResponse) UnmarshalVT(dAtA []byte) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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