class Google::Apis::ServiceconsumermanagementV1::V1DefaultIdentity
A default identity in the Identity and Access Management API.
Attributes
The email address of the default identity. Corresponds to the JSON property `email` @return [String]
Default identity resource name. An example name would be: `services/ serviceconsumermanagement.googleapis.com/projects/123/defaultIdentity` Corresponds to the JSON property `name` @return [String]
The Default Identity tag. If specified when creating the account, the tag must be present in activation_grants. If not specified when creating the account, the tag is set to the tag specified in activation_grants. Corresponds to the JSON property `tag` @return [String]
The unique and stable id of the default identity. Corresponds to the JSON property `uniqueId` @return [String]
Public Class Methods
# File lib/google/apis/serviceconsumermanagement_v1/classes.rb, line 3698 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/serviceconsumermanagement_v1/classes.rb, line 3703 def update!(**args) @email = args[:email] if args.key?(:email) @name = args[:name] if args.key?(:name) @tag = args[:tag] if args.key?(:tag) @unique_id = args[:unique_id] if args.key?(:unique_id) end