google-apis-cloudchannel_v1 0.35.0 → 0.37.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ed7b57552a9a39924062e494e0b6678f734b516b81ffe696e47806a41a29cce9
4
- data.tar.gz: a742e49391660578a6718458312bededc30bffda9b08b32993739030e7bdd6db
3
+ metadata.gz: 3975cd7a64f0366e62ddb04b070b8d9ce8c5b40d8ba4d66df3721138877aa8ce
4
+ data.tar.gz: 3eb794143d80459d83ffbc5c757006b80564b139b87ad227d9b921b3a7b499da
5
5
  SHA512:
6
- metadata.gz: 8310795fc40a52be8b348b75e77d5245f2d0085fbc9816ac31d91169ddf5357ec4be3639d9730eb5487d8c87a6cb1948b873dfe7425972bd8c8360e2256ce756
7
- data.tar.gz: 42474660d59164fbdb66162144d3276a99108c172ce728da81c439a3b74a3ab16b7bc5ae46cb1e611a9b24b08a5f81e2a60c436ab136dc31fb25741586b8fea0
6
+ metadata.gz: 7a0bd0c39e7663cfb03e84e5d848a24675606615b9096bb6e59733092f0a3e41ef6eb05ff86988cc117c15c92c3cde2c7f093d7e2245aa30eb1b67741036491a
7
+ data.tar.gz: 688da17c5b5c5669653c3f4e53d54493c6a78ed59a6db83eafc35e35db9642b0712288dbc119246f86a4f8066d9397cec12dd27f2bda4b3647e7bfc912107578
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudchannel_v1
2
2
 
3
+ ### v0.37.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230426
6
+
7
+ ### v0.36.0 (2023-04-02)
8
+
9
+ * Regenerated from discovery document revision 20230326
10
+
3
11
  ### v0.35.0 (2023-03-19)
4
12
 
5
13
  * Regenerated from discovery document revision 20230314
@@ -1007,6 +1007,12 @@ module Google
1007
1007
  # @return [Google::Apis::CloudchannelV1::GoogleCloudChannelV1AssociationInfo]
1008
1008
  attr_accessor :association_info
1009
1009
 
1010
+ # Optional. The billing account resource name that is used to pay for this
1011
+ # entitlement.
1012
+ # Corresponds to the JSON property `billingAccount`
1013
+ # @return [String]
1014
+ attr_accessor :billing_account
1015
+
1010
1016
  # Commitment settings for commitment-based offers.
1011
1017
  # Corresponds to the JSON property `commitmentSettings`
1012
1018
  # @return [Google::Apis::CloudchannelV1::GoogleCloudChannelV1CommitmentSettings]
@@ -1082,6 +1088,7 @@ module Google
1082
1088
  # Update properties of this object
1083
1089
  def update!(**args)
1084
1090
  @association_info = args[:association_info] if args.key?(:association_info)
1091
+ @billing_account = args[:billing_account] if args.key?(:billing_account)
1085
1092
  @commitment_settings = args[:commitment_settings] if args.key?(:commitment_settings)
1086
1093
  @create_time = args[:create_time] if args.key?(:create_time)
1087
1094
  @name = args[:name] if args.key?(:name)
@@ -3657,6 +3664,12 @@ module Google
3657
3664
  # @return [Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1AssociationInfo]
3658
3665
  attr_accessor :association_info
3659
3666
 
3667
+ # Optional. The billing account resource name that is used to pay for this
3668
+ # entitlement.
3669
+ # Corresponds to the JSON property `billingAccount`
3670
+ # @return [String]
3671
+ attr_accessor :billing_account
3672
+
3660
3673
  # Cloud Identity ID of a channel partner who will be the direct reseller for the
3661
3674
  # customer's order. This field is generally used in 2-tier ordering, where the
3662
3675
  # order is placed by a top-level distributor on behalf of their channel partner
@@ -3758,6 +3771,7 @@ module Google
3758
3771
  def update!(**args)
3759
3772
  @assigned_units = args[:assigned_units] if args.key?(:assigned_units)
3760
3773
  @association_info = args[:association_info] if args.key?(:association_info)
3774
+ @billing_account = args[:billing_account] if args.key?(:billing_account)
3761
3775
  @channel_partner_id = args[:channel_partner_id] if args.key?(:channel_partner_id)
3762
3776
  @commitment_settings = args[:commitment_settings] if args.key?(:commitment_settings)
3763
3777
  @create_time = args[:create_time] if args.key?(:create_time)
@@ -3953,6 +3967,12 @@ module Google
3953
3967
  attr_accessor :resize_unit_count
3954
3968
  alias_method :resize_unit_count?, :resize_unit_count
3955
3969
 
3970
+ # Output only. The offer resource name that the entitlement will renew on at the
3971
+ # end date. Takes the form: accounts/`account_id`/offers/`offer_id`.
3972
+ # Corresponds to the JSON property `scheduledRenewalOffer`
3973
+ # @return [String]
3974
+ attr_accessor :scheduled_renewal_offer
3975
+
3956
3976
  def initialize(**args)
3957
3977
  update!(**args)
3958
3978
  end
@@ -3965,6 +3985,7 @@ module Google
3965
3985
  @payment_option = args[:payment_option] if args.key?(:payment_option)
3966
3986
  @payment_plan = args[:payment_plan] if args.key?(:payment_plan)
3967
3987
  @resize_unit_count = args[:resize_unit_count] if args.key?(:resize_unit_count)
3988
+ @scheduled_renewal_offer = args[:scheduled_renewal_offer] if args.key?(:scheduled_renewal_offer)
3968
3989
  end
3969
3990
  end
3970
3991
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudchannelV1
18
18
  # Version of the google-apis-cloudchannel_v1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.37.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230314"
25
+ REVISION = "20230426"
26
26
  end
27
27
  end
28
28
  end
@@ -1069,6 +1069,7 @@ module Google
1069
1069
  class Representation < Google::Apis::Core::JsonRepresentation
1070
1070
  property :association_info, as: 'associationInfo', class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1AssociationInfo, decorator: Google::Apis::CloudchannelV1::GoogleCloudChannelV1AssociationInfo::Representation
1071
1071
 
1072
+ property :billing_account, as: 'billingAccount'
1072
1073
  property :commitment_settings, as: 'commitmentSettings', class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1CommitmentSettings, decorator: Google::Apis::CloudchannelV1::GoogleCloudChannelV1CommitmentSettings::Representation
1073
1074
 
1074
1075
  property :create_time, as: 'createTime'
@@ -1857,6 +1858,7 @@ module Google
1857
1858
  property :assigned_units, as: 'assignedUnits'
1858
1859
  property :association_info, as: 'associationInfo', class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1AssociationInfo, decorator: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1AssociationInfo::Representation
1859
1860
 
1861
+ property :billing_account, as: 'billingAccount'
1860
1862
  property :channel_partner_id, as: 'channelPartnerId'
1861
1863
  property :commitment_settings, as: 'commitmentSettings', class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1CommitmentSettings, decorator: Google::Apis::CloudchannelV1::GoogleCloudChannelV1alpha1CommitmentSettings::Representation
1862
1864
 
@@ -1930,6 +1932,7 @@ module Google
1930
1932
  property :payment_option, as: 'paymentOption'
1931
1933
  property :payment_plan, as: 'paymentPlan'
1932
1934
  property :resize_unit_count, as: 'resizeUnitCount'
1935
+ property :scheduled_renewal_offer, as: 'scheduledRenewalOffer'
1933
1936
  end
1934
1937
  end
1935
1938
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudchannel_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.37.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-03-19 00:00:00.000000000 Z
11
+ date: 2023-04-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudchannel_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.35.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudchannel_v1/v0.37.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudchannel_v1
63
63
  post_install_message:
64
64
  rdoc_options: []