Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCreateBundleRequest
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCreateBundleRequest
- 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
PROTECT WITH A VISIBILITY LABEL. THIS METHOD WILL BE MOVED TO A SEPARATE SERVICE. Request to create a new Bundle.
Instance Attribute Summary collapse
-
#bundle_id ⇒ String
Required.
-
#integrations ⇒ Array<String>
A list of integrations that can be executed by the bundle Corresponds to the JSON property
integrations. -
#secondary_customer_org_id ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateBundleRequest
constructor
A new instance of GoogleCloudIntegrationsV1alphaCreateBundleRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateBundleRequest
Returns a new instance of GoogleCloudIntegrationsV1alphaCreateBundleRequest.
6203 6204 6205 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6203 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bundle_id ⇒ String
Required. name of the bundle that will be created
Corresponds to the JSON property bundleId
6188 6189 6190 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6188 def bundle_id @bundle_id end |
#integrations ⇒ Array<String>
A list of integrations that can be executed by the bundle
Corresponds to the JSON property integrations
6193 6194 6195 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6193 def integrations @integrations end |
#secondary_customer_org_id ⇒ String
Optional. The prefix for the SA, it should be in the format "o". This is an
optional field, and if empty service account will be created per project,
where we are creating bundle. This should only be used as the org ID for which
we want to run the integrations in the bundle.
Corresponds to the JSON property secondaryCustomerOrgId
6201 6202 6203 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6201 def secondary_customer_org_id @secondary_customer_org_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6208 6209 6210 6211 6212 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6208 def update!(**args) @bundle_id = args[:bundle_id] if args.key?(:bundle_id) @integrations = args[:integrations] if args.key?(:integrations) @secondary_customer_org_id = args[:secondary_customer_org_id] if args.key?(:secondary_customer_org_id) end |