roles

package
v0.1.8 Latest Latest
Warning

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

Go to latest
Published: Mar 9, 2021 License: MPL-2.0 Imports: 8 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_controller_api_resources_roles_v1_role_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Grant

type Grant struct {

	// Output only. The original user-supplied string.
	Raw string `protobuf:"bytes,1,opt,name=raw,proto3" json:"raw,omitempty"`
	// Output only. The canonically-formatted string.
	Canonical string `protobuf:"bytes,2,opt,name=canonical,proto3" json:"canonical,omitempty"`
	// Output only. The JSON representation of the grant.
	Json *GrantJson `protobuf:"bytes,3,opt,name=json,proto3" json:"json,omitempty"`
	// contains filtered or unexported fields
}

func (*Grant) Descriptor deprecated

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

Deprecated: Use Grant.ProtoReflect.Descriptor instead.

func (*Grant) GetCanonical

func (x *Grant) GetCanonical() string

func (*Grant) GetJson

func (x *Grant) GetJson() *GrantJson

func (*Grant) GetRaw

func (x *Grant) GetRaw() string

func (*Grant) ProtoMessage

func (*Grant) ProtoMessage()

func (*Grant) ProtoReflect

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

func (*Grant) Reset

func (x *Grant) Reset()

func (*Grant) String

func (x *Grant) String() string

type GrantJson

type GrantJson struct {

	// Output only. The ID, if set.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Output only. The type, if set.
	Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	// Output only. The actions.
	Actions []string `protobuf:"bytes,3,rep,name=actions,proto3" json:"actions,omitempty"`
	// contains filtered or unexported fields
}

func (*GrantJson) Descriptor deprecated

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

Deprecated: Use GrantJson.ProtoReflect.Descriptor instead.

func (*GrantJson) GetActions

func (x *GrantJson) GetActions() []string

func (*GrantJson) GetId

func (x *GrantJson) GetId() string

func (*GrantJson) GetType

func (x *GrantJson) GetType() string

func (*GrantJson) ProtoMessage

func (*GrantJson) ProtoMessage()

func (*GrantJson) ProtoReflect

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

func (*GrantJson) Reset

func (x *GrantJson) Reset()

func (*GrantJson) String

func (x *GrantJson) String() string

type Principal

type Principal struct {

	// Output only. The ID of the principal.
	Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	// Output only. The type of the principal.
	Type string `protobuf:"bytes,2,opt,name=type,proto3" json:"type,omitempty"`
	// Output only. The Scope of the principal.
	ScopeId string `protobuf:"bytes,3,opt,name=scope_id,proto3" json:"scope_id,omitempty"`
	// contains filtered or unexported fields
}

func (*Principal) Descriptor deprecated

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

Deprecated: Use Principal.ProtoReflect.Descriptor instead.

func (*Principal) GetId

func (x *Principal) GetId() string

func (*Principal) GetScopeId

func (x *Principal) GetScopeId() string

func (*Principal) GetType

func (x *Principal) GetType() string

func (*Principal) ProtoMessage

func (*Principal) ProtoMessage()

func (*Principal) ProtoReflect

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

func (*Principal) Reset

func (x *Principal) Reset()

func (*Principal) String

func (x *Principal) String() string

type Role

type Role struct {

	// Output only. The ID of the Role.
	Id string `protobuf:"bytes,10,opt,name=id,proto3" json:"id,omitempty"`
	// The ID of the Scope containing this Role.
	ScopeId string `protobuf:"bytes,20,opt,name=scope_id,proto3" json:"scope_id,omitempty"`
	// Output only. Scope information for this resource.
	Scope *scopes.ScopeInfo `protobuf:"bytes,30,opt,name=scope,proto3" json:"scope,omitempty"`
	// Optional name for identification purposes.
	Name *wrappers.StringValue `protobuf:"bytes,40,opt,name=name,proto3" json:"name,omitempty"`
	// Optional user-set description for identification purposes.
	Description *wrappers.StringValue `protobuf:"bytes,50,opt,name=description,proto3" json:"description,omitempty"`
	// Output only. The time this resource was created.
	CreatedTime *timestamp.Timestamp `protobuf:"bytes,60,opt,name=created_time,proto3" json:"created_time,omitempty"`
	// Output only. The time this resource was last updated.
	UpdatedTime *timestamp.Timestamp `protobuf:"bytes,70,opt,name=updated_time,proto3" json:"updated_time,omitempty"`
	// Version is used in mutation requests, after the initial creation, to ensure this resource has not changed.
	// The mutation will fail if the version does not match the latest known good version.
	Version uint32 `protobuf:"varint,80,opt,name=version,proto3" json:"version,omitempty"`
	// The Scope the grants will apply to. If the Role is at the global scope, this can be an org or project. If the Role is at an org scope, this can be a project within the org. It is invalid for this to be anything other than the Role's scope when the Role's scope is a project.
	GrantScopeId *wrappers.StringValue `protobuf:"bytes,90,opt,name=grant_scope_id,proto3" json:"grant_scope_id,omitempty"`
	// Output only. The IDs (only) of principals that are assigned to this role.
	PrincipalIds []string `protobuf:"bytes,100,rep,name=principal_ids,proto3" json:"principal_ids,omitempty"`
	// Output only. The principals that are assigned to this role.
	Principals []*Principal `protobuf:"bytes,110,rep,name=principals,proto3" json:"principals,omitempty"`
	// Output only. The grants that this role provides for its principals.
	GrantStrings []string `protobuf:"bytes,120,rep,name=grant_strings,proto3" json:"grant_strings,omitempty"`
	// Output only. The parsed grant information.
	Grants []*Grant `protobuf:"bytes,130,rep,name=grants,proto3" json:"grants,omitempty"`
	// Output only. The available actions on this resource for this user.
	AuthorizedActions []string `protobuf:"bytes,300,rep,name=authorized_actions,proto3" json:"authorized_actions,omitempty"`
	// contains filtered or unexported fields
}

Role contains all fields related to a Role resource

func (*Role) Descriptor deprecated

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

Deprecated: Use Role.ProtoReflect.Descriptor instead.

func (*Role) GetAuthorizedActions added in v0.1.5

func (x *Role) GetAuthorizedActions() []string

func (*Role) GetCreatedTime

func (x *Role) GetCreatedTime() *timestamp.Timestamp

func (*Role) GetDescription

func (x *Role) GetDescription() *wrappers.StringValue

func (*Role) GetGrantScopeId

func (x *Role) GetGrantScopeId() *wrappers.StringValue

func (*Role) GetGrantStrings

func (x *Role) GetGrantStrings() []string

func (*Role) GetGrants

func (x *Role) GetGrants() []*Grant

func (*Role) GetId

func (x *Role) GetId() string

func (*Role) GetName

func (x *Role) GetName() *wrappers.StringValue

func (*Role) GetPrincipalIds

func (x *Role) GetPrincipalIds() []string

func (*Role) GetPrincipals

func (x *Role) GetPrincipals() []*Principal

func (*Role) GetScope

func (x *Role) GetScope() *scopes.ScopeInfo

func (*Role) GetScopeId

func (x *Role) GetScopeId() string

func (*Role) GetUpdatedTime

func (x *Role) GetUpdatedTime() *timestamp.Timestamp

func (*Role) GetVersion

func (x *Role) GetVersion() uint32

func (*Role) ProtoMessage

func (*Role) ProtoMessage()

func (*Role) ProtoReflect

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

func (*Role) Reset

func (x *Role) Reset()

func (*Role) String

func (x *Role) String() string

Jump to

Keyboard shortcuts

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