Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaIntegrationBundleConfig

Returns a new instance of GoogleCloudIntegrationsV1alphaIntegrationBundleConfig.



6790
6791
6792
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6790

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#integrationsArray<String>

A bundle of integrations that can be executed by the task at runtime. Corresponds to the JSON property integrations

Returns:

  • (Array<String>)


6782
6783
6784
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6782

def integrations
  @integrations
end

#service_accountString

Output only. The service account created and owned by IP and added to the customers GCP project. Corresponds to the JSON property serviceAccount

Returns:

  • (String)


6788
6789
6790
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6788

def 
  @service_account
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6795
6796
6797
6798
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 6795

def update!(**args)
  @integrations = args[:integrations] if args.key?(:integrations)
  @service_account = args[:service_account] if args.key?(:service_account)
end