Enum value maps for OperatingSystemType.
var ( OperatingSystemType_name = map[int32]string{ 0: "OPERATING_SYSTEM_TYPE_UNSPECIFIED", 1: "LINUX", 2: "WINDOWS", } OperatingSystemType_value = map[string]int32{ "OPERATING_SYSTEM_TYPE_UNSPECIFIED": 0, "LINUX": 1, "WINDOWS": 2, } )
var File_google_cloud_oslogin_common_common_proto protoreflect.FileDescriptor
The operating system options for account entries.
type OperatingSystemType int32
const ( // The operating system type associated with the user account information is // unspecified. OperatingSystemType_OPERATING_SYSTEM_TYPE_UNSPECIFIED OperatingSystemType = 0 // Linux user account information. OperatingSystemType_LINUX OperatingSystemType = 1 // Windows user account information. OperatingSystemType_WINDOWS OperatingSystemType = 2 )
func (OperatingSystemType) Descriptor() protoreflect.EnumDescriptor
func (x OperatingSystemType) Enum() *OperatingSystemType
func (OperatingSystemType) EnumDescriptor() ([]byte, []int)
Deprecated: Use OperatingSystemType.Descriptor instead.
func (x OperatingSystemType) Number() protoreflect.EnumNumber
func (x OperatingSystemType) String() string
func (OperatingSystemType) Type() protoreflect.EnumType
The POSIX account information associated with a Google account.
type PosixAccount struct { // Only one POSIX account can be marked as primary. Primary bool `protobuf:"varint,1,opt,name=primary,proto3" json:"primary,omitempty"` // The username of the POSIX account. Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"` // The user ID. Uid int64 `protobuf:"varint,3,opt,name=uid,proto3" json:"uid,omitempty"` // The default group ID. Gid int64 `protobuf:"varint,4,opt,name=gid,proto3" json:"gid,omitempty"` // The path to the home directory for this account. HomeDirectory string `protobuf:"bytes,5,opt,name=home_directory,json=homeDirectory,proto3" json:"home_directory,omitempty"` // The path to the logic shell for this account. Shell string `protobuf:"bytes,6,opt,name=shell,proto3" json:"shell,omitempty"` // The GECOS (user information) entry for this account. Gecos string `protobuf:"bytes,7,opt,name=gecos,proto3" json:"gecos,omitempty"` // System identifier for which account the username or uid applies to. // By default, the empty value is used. SystemId string `protobuf:"bytes,8,opt,name=system_id,json=systemId,proto3" json:"system_id,omitempty"` // Output only. A POSIX account identifier. AccountId string `protobuf:"bytes,9,opt,name=account_id,json=accountId,proto3" json:"account_id,omitempty"` // The operating system type where this account applies. OperatingSystemType OperatingSystemType `protobuf:"varint,10,opt,name=operating_system_type,json=operatingSystemType,proto3,enum=google.cloud.oslogin.common.OperatingSystemType" json:"operating_system_type,omitempty"` // Output only. The canonical resource name. Name string `protobuf:"bytes,11,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*PosixAccount) Descriptor() ([]byte, []int)
Deprecated: Use PosixAccount.ProtoReflect.Descriptor instead.
func (x *PosixAccount) GetAccountId() string
func (x *PosixAccount) GetGecos() string
func (x *PosixAccount) GetGid() int64
func (x *PosixAccount) GetHomeDirectory() string
func (x *PosixAccount) GetName() string
func (x *PosixAccount) GetOperatingSystemType() OperatingSystemType
func (x *PosixAccount) GetPrimary() bool
func (x *PosixAccount) GetShell() string
func (x *PosixAccount) GetSystemId() string
func (x *PosixAccount) GetUid() int64
func (x *PosixAccount) GetUsername() string
func (*PosixAccount) ProtoMessage()
func (x *PosixAccount) ProtoReflect() protoreflect.Message
func (x *PosixAccount) Reset()
func (x *PosixAccount) String() string
The SSH public key information associated with a Google account.
type SshPublicKey struct { // Public key text in SSH format, defined by // <a href="https://www.ietf.org/rfc/rfc4253.txt" target="_blank">RFC4253</a> // section 6.6. Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` // An expiration time in microseconds since epoch. ExpirationTimeUsec int64 `protobuf:"varint,2,opt,name=expiration_time_usec,json=expirationTimeUsec,proto3" json:"expiration_time_usec,omitempty"` // Output only. The SHA-256 fingerprint of the SSH public key. Fingerprint string `protobuf:"bytes,3,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"` // Output only. The canonical resource name. Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"` // contains filtered or unexported fields }
func (*SshPublicKey) Descriptor() ([]byte, []int)
Deprecated: Use SshPublicKey.ProtoReflect.Descriptor instead.
func (x *SshPublicKey) GetExpirationTimeUsec() int64
func (x *SshPublicKey) GetFingerprint() string
func (x *SshPublicKey) GetKey() string
func (x *SshPublicKey) GetName() string
func (*SshPublicKey) ProtoMessage()
func (x *SshPublicKey) ProtoReflect() protoreflect.Message
func (x *SshPublicKey) Reset()
func (x *SshPublicKey) String() string