Class: Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCreateBundleResponse
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaCreateBundleResponse
- 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
Response for create bundle.
Instance Attribute Summary collapse
-
#config ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
This proto holds the core runner data in the bundle task.
-
#trigger_id ⇒ String
trigger_id of the bundle task Corresponds to the JSON property
triggerId.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateBundleResponse
constructor
A new instance of GoogleCloudIntegrationsV1alphaCreateBundleResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateBundleResponse
Returns a new instance of GoogleCloudIntegrationsV1alphaCreateBundleResponse.
5908 5909 5910 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5908 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::IntegrationsV1alpha::GoogleCloudIntegrationsV1alphaIntegrationBundleConfig
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.
Corresponds to the JSON property config
5901 5902 5903 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5901 def config @config end |
#trigger_id ⇒ String
trigger_id of the bundle task
Corresponds to the JSON property triggerId
5906 5907 5908 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5906 def trigger_id @trigger_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5913 5914 5915 5916 |
# File 'lib/google/apis/integrations_v1alpha/classes.rb', line 5913 def update!(**args) @config = args[:config] if args.key?(:config) @trigger_id = args[:trigger_id] if args.key?(:trigger_id) end |