class Google::Apis::ServiceconsumermanagementV1beta1::V1beta1ServiceAccount
A service account in the Identity and Access Management API.
Attributes
The email address of the service account. Corresponds to the JSON property `email` @return [String]
Deprecated. See b/136209818. Corresponds to the JSON property `iamAccountName` @return [String]
P4 SA resource name. An example name would be: `services/ serviceconsumermanagement.googleapis.com/projects/123/serviceAccounts/default` Corresponds to the JSON property `name` @return [String]
The P4 SA configuration tag. This must be defined in activation_grants. If not specified when creating the account, the tag is set to “default”. Corresponds to the JSON property `tag` @return [String]
The unique and stable id of the service account. Corresponds to the JSON property `uniqueId` @return [String]
Public Class Methods
# File lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb, line 3640 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/serviceconsumermanagement_v1beta1/classes.rb, line 3645 def update!(**args) @email = args[:email] if args.key?(:email) @iam_account_name = args[:iam_account_name] if args.key?(:iam_account_name) @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