Class: Google::Apis::ServiceconsumermanagementV1::V1ServiceAccount
- Inherits:
-
Object
- Object
- Google::Apis::ServiceconsumermanagementV1::V1ServiceAccount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/serviceconsumermanagement_v1/classes.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb,
generated/google/apis/serviceconsumermanagement_v1/representations.rb
Overview
A service account in the Identity and Access Management API.
Instance Attribute Summary collapse
-
#email ⇒ String
The email address of the service account.
-
#iam_account_name ⇒ String
Deprecated.
-
#name ⇒ String
P4 SA resource name.
-
#tag ⇒ String
The P4 SA configuration tag.
-
#unique_id ⇒ String
The unique and stable id of the service account.
Instance Method Summary collapse
-
#initialize(**args) ⇒ V1ServiceAccount
constructor
A new instance of V1ServiceAccount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ V1ServiceAccount
Returns a new instance of V1ServiceAccount
4098 4099 4100 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4098 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The email address of the service account.
Corresponds to the JSON property email
4072 4073 4074 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4072 def email @email end |
#iam_account_name ⇒ String
Deprecated. See b/136209818.
Corresponds to the JSON property iamAccountName
4077 4078 4079 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4077 def iam_account_name @iam_account_name end |
#name ⇒ String
P4 SA resource name.
An example name would be:
services/serviceconsumermanagement.googleapis.com/projects/123/
serviceAccounts/default
Corresponds to the JSON property name
4085 4086 4087 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4085 def name @name end |
#tag ⇒ 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
4091 4092 4093 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4091 def tag @tag end |
#unique_id ⇒ String
The unique and stable id of the service account.
Corresponds to the JSON property uniqueId
4096 4097 4098 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4096 def unique_id @unique_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4103 4104 4105 4106 4107 4108 4109 |
# File 'generated/google/apis/serviceconsumermanagement_v1/classes.rb', line 4103 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 |