Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1ExecutionIdentityServiceAccount
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1ExecutionIdentityServiceAccount
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
The service account
Instance Attribute Summary collapse
-
#email ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1ExecutionIdentityServiceAccount
constructor
A new instance of GoogleCloudDataplexV1ExecutionIdentityServiceAccount.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1ExecutionIdentityServiceAccount
Returns a new instance of GoogleCloudDataplexV1ExecutionIdentityServiceAccount.
6812 6813 6814 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6812 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
Required. Service account email. The datascan will execute with this service
account's credentials. The user calling this API must have permissions to act
as this service account. Dataplex service agent must be granted iam.
serviceAccounts.getAccessToken permission on this service account, for example,
through the iam.serviceAccountTokenCreator role .
Corresponds to the JSON property email
6810 6811 6812 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6810 def email @email end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6817 6818 6819 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6817 def update!(**args) @email = args[:email] if args.key?(:email) end |