Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1SkuPurchaseGroup
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1SkuPurchaseGroup
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Represents a set of SKUs that must be purchased using the same billing account.
Instance Attribute Summary collapse
-
#billing_account_purchase_infos ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1BillingAccountPurchaseInfo>
List of billing accounts that are eligible to purhcase these SKUs.
-
#skus ⇒ Array<String>
Resource names of the SKUs included in this group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1SkuPurchaseGroup
constructor
A new instance of GoogleCloudChannelV1SkuPurchaseGroup.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1SkuPurchaseGroup
Returns a new instance of GoogleCloudChannelV1SkuPurchaseGroup.
3319 3320 3321 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3319 def initialize(**args) update!(**args) end |
Instance Attribute Details
#billing_account_purchase_infos ⇒ Array<Google::Apis::CloudchannelV1::GoogleCloudChannelV1BillingAccountPurchaseInfo>
List of billing accounts that are eligible to purhcase these SKUs.
Corresponds to the JSON property billingAccountPurchaseInfos
3311 3312 3313 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3311 def billing_account_purchase_infos @billing_account_purchase_infos end |
#skus ⇒ Array<String>
Resource names of the SKUs included in this group. Format: products/
product_id
/skus/sku_id
.
Corresponds to the JSON property skus
3317 3318 3319 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3317 def skus @skus end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3324 3325 3326 3327 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 3324 def update!(**args) @billing_account_purchase_infos = args[:billing_account_purchase_infos] if args.key?(:billing_account_purchase_infos) @skus = args[:skus] if args.key?(:skus) end |