Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1alpha/classes.rb,
lib/google/apis/integrations_v1alpha/representations.rb,
lib/google/apis/integrations_v1alpha/representations.rb
Overview
This proto holds the core runner data in the bundle task. It is not expected to be directly edited by the user. Instead, a default value will be provided at the task creation time.
Instance Attribute Summary collapse
-
#integrations ⇒ Array<String>
A bundle of integrations that can be executed by the task at runtime.
-
#service_account ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
constructor
A new instance of GoogleCloudIntegrationsV1alphaIntegrationBundleConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
Returns a new instance of GoogleCloudIntegrationsV1alphaIntegrationBundleConfig.
6696 6697 6698 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6696 def initialize(**args) update!(**args) end |
Instance Attribute Details
#integrations ⇒ Array<String>
A bundle of integrations that can be executed by the task at runtime.
Corresponds to the JSON property integrations
6688 6689 6690 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6688 def integrations @integrations end |
#service_account ⇒ String
Output only. The service account created and owned by IP and added to the
customers GCP project.
Corresponds to the JSON property serviceAccount
6694 6695 6696 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6694 def service_account @service_account end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6701 6702 6703 6704 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6701 def update!(**args) @integrations = args[:integrations] if args.key?(:integrations) @service_account = args[:service_account] if args.key?(:service_account) end |