Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCreateBundleResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb

Overview

Response for create bundle.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateBundleResponse

Returns a new instance of GoogleCloudIntegrationsV1alphaCreateBundleResponse.



6231
6232
6233
# File 'lib/google/apis/integrations_v1/classes.rb', line 6231

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

Instance Attribute Details

#configGoogle::Apis::IntegrationsV1::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



6224
6225
6226
# File 'lib/google/apis/integrations_v1/classes.rb', line 6224

def config
  @config
end

#trigger_idString

trigger_id of the bundle task Corresponds to the JSON property triggerId

Returns:

  • (String)


6229
6230
6231
# File 'lib/google/apis/integrations_v1/classes.rb', line 6229

def trigger_id
  @trigger_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6236
6237
6238
6239
# File 'lib/google/apis/integrations_v1/classes.rb', line 6236

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