google-cloud-channel-v1 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 42339a74e254c72c876b25e4e6e2b9cb9eeb86ee4f97d5b1f1374b928bec0b41
4
- data.tar.gz: 7e487d63ba1819fd1c58cf9066f56f7b37fc7d7f3a5440624ae89b1c6798e802
3
+ metadata.gz: e3260a1de5aa7d4c0fbe7e22d532c7d9ebde5284a9bc097a8a0c944ccbc86e27
4
+ data.tar.gz: 7f68f7c8800ee237f407bbc7d5f307071d9d3793ae3a4a281a105bac744123ad
5
5
  SHA512:
6
- metadata.gz: 61353adea633f0bf622a376684894f727870e1b4f0782a018d02e737d5322ae76046924696a8b09b000c7e2473070abe6c76b236873c6230860f7788a50de4c7
7
- data.tar.gz: 8d462ef4673a0e0dc24ab78e985ea4c5bdd42920973dbd80594eb99a330281500f4377604a7f7c8e85baf84a1f2d9fdc036a75a30c3a949b6993b14dbdf7a951
6
+ metadata.gz: 86c20b359847f1a3de48ba140e727ab8f57e5b34cf5b42cf303826ed677cac79118315d2ae48e11cec3feb5eaf68f17ab443b37248eb3ac4c54d04818cc498e2
7
+ data.tar.gz: f91916ecc820390663e5e2ec20b4574cda2020d492e1544c871a7b0c8b890437b91284dc47a965a20d142d5da26eb1933f22ce163912393fc60dd338c33174fc
data/README.md CHANGED
@@ -71,11 +71,11 @@ end
71
71
 
72
72
  ## Supported Ruby Versions
73
73
 
74
- This library is supported on Ruby 2.4+.
74
+ This library is supported on Ruby 2.5+.
75
75
 
76
76
  Google provides official support for Ruby versions that are actively supported
77
77
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
78
- in security maintenance, and not end of life. Currently, this means Ruby 2.4
78
+ in security maintenance, and not end of life. Currently, this means Ruby 2.5
79
79
  and later. Older versions of Ruby _may_ still work, but are unsupported and not
80
80
  recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
81
81
  about the Ruby support schedule.
@@ -80,7 +80,7 @@ module Google
80
80
  parent_config = while namespace.any?
81
81
  parent_name = namespace.join "::"
82
82
  parent_const = const_get parent_name
83
- break parent_const.configure if parent_const&.respond_to? :configure
83
+ break parent_const.configure if parent_const.respond_to? :configure
84
84
  namespace.pop
85
85
  end
86
86
  default_config = Client::Configuration.new parent_config
@@ -88,9 +88,9 @@ module Google
88
88
  default_config.timeout = 60.0
89
89
  default_config.retry_policy = {
90
90
  initial_delay: 1.0,
91
- max_delay: 10.0,
92
- multiplier: 1.3,
93
- retry_codes: [14]
91
+ max_delay: 10.0,
92
+ multiplier: 1.3,
93
+ retry_codes: [14]
94
94
  }
95
95
 
96
96
  default_config.rpcs.provision_cloud_identity.timeout = 60.0
@@ -181,7 +181,7 @@ module Google
181
181
  enable_self_signed_jwt = @config.scope == Client.configure.scope &&
182
182
  @config.endpoint == Client.configure.endpoint &&
183
183
  !@config.endpoint.split(".").first.include?("-")
184
- credentials ||= Credentials.default scope: @config.scope,
184
+ credentials ||= Credentials.default scope: @config.scope,
185
185
  enable_self_signed_jwt: enable_self_signed_jwt
186
186
  if credentials.is_a?(String) || credentials.is_a?(Hash)
187
187
  credentials = Credentials.new credentials, scope: @config.scope
@@ -394,8 +394,9 @@ module Google
394
394
  # Return Value:
395
395
  # List of {::Google::Cloud::Channel::V1::CloudIdentityCustomerAccount CloudIdentityCustomerAccount} resources for the domain.
396
396
  # List may be empty.
397
+ #
397
398
  # Note: in the v1alpha1 version of the API, a NOT_FOUND error is returned if
398
- # no {::Google::Cloud::Channel::V1::CloudIdentityCustomerAccount CloudIdentityCustomerAccount} resource match the domain.
399
+ # no {::Google::Cloud::Channel::V1::CloudIdentityCustomerAccount CloudIdentityCustomerAccount} resources match the domain.
399
400
  #
400
401
  # @overload check_cloud_identity_accounts_exist(request, options = nil)
401
402
  # Pass arguments to `check_cloud_identity_accounts_exist` via a request object, either of type
@@ -3462,7 +3463,7 @@ module Google
3462
3463
  config_attr :scope, nil, ::String, ::Array, nil
3463
3464
  config_attr :lib_name, nil, ::String, nil
3464
3465
  config_attr :lib_version, nil, ::String, nil
3465
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
3466
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
3466
3467
  config_attr :interceptors, nil, ::Array, nil
3467
3468
  config_attr :timeout, nil, ::Numeric, nil
3468
3469
  config_attr :metadata, nil, ::Hash, nil
@@ -3483,7 +3484,7 @@ module Google
3483
3484
  def rpcs
3484
3485
  @rpcs ||= begin
3485
3486
  parent_rpcs = nil
3486
- parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
3487
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
3487
3488
  Rpcs.new parent_rpcs
3488
3489
  end
3489
3490
  end
@@ -3674,71 +3675,71 @@ module Google
3674
3675
 
3675
3676
  # @private
3676
3677
  def initialize parent_rpcs = nil
3677
- list_customers_config = parent_rpcs&.list_customers if parent_rpcs&.respond_to? :list_customers
3678
+ list_customers_config = parent_rpcs.list_customers if parent_rpcs.respond_to? :list_customers
3678
3679
  @list_customers = ::Gapic::Config::Method.new list_customers_config
3679
- get_customer_config = parent_rpcs&.get_customer if parent_rpcs&.respond_to? :get_customer
3680
+ get_customer_config = parent_rpcs.get_customer if parent_rpcs.respond_to? :get_customer
3680
3681
  @get_customer = ::Gapic::Config::Method.new get_customer_config
3681
- check_cloud_identity_accounts_exist_config = parent_rpcs&.check_cloud_identity_accounts_exist if parent_rpcs&.respond_to? :check_cloud_identity_accounts_exist
3682
+ check_cloud_identity_accounts_exist_config = parent_rpcs.check_cloud_identity_accounts_exist if parent_rpcs.respond_to? :check_cloud_identity_accounts_exist
3682
3683
  @check_cloud_identity_accounts_exist = ::Gapic::Config::Method.new check_cloud_identity_accounts_exist_config
3683
- create_customer_config = parent_rpcs&.create_customer if parent_rpcs&.respond_to? :create_customer
3684
+ create_customer_config = parent_rpcs.create_customer if parent_rpcs.respond_to? :create_customer
3684
3685
  @create_customer = ::Gapic::Config::Method.new create_customer_config
3685
- update_customer_config = parent_rpcs&.update_customer if parent_rpcs&.respond_to? :update_customer
3686
+ update_customer_config = parent_rpcs.update_customer if parent_rpcs.respond_to? :update_customer
3686
3687
  @update_customer = ::Gapic::Config::Method.new update_customer_config
3687
- delete_customer_config = parent_rpcs&.delete_customer if parent_rpcs&.respond_to? :delete_customer
3688
+ delete_customer_config = parent_rpcs.delete_customer if parent_rpcs.respond_to? :delete_customer
3688
3689
  @delete_customer = ::Gapic::Config::Method.new delete_customer_config
3689
- provision_cloud_identity_config = parent_rpcs&.provision_cloud_identity if parent_rpcs&.respond_to? :provision_cloud_identity
3690
+ provision_cloud_identity_config = parent_rpcs.provision_cloud_identity if parent_rpcs.respond_to? :provision_cloud_identity
3690
3691
  @provision_cloud_identity = ::Gapic::Config::Method.new provision_cloud_identity_config
3691
- list_entitlements_config = parent_rpcs&.list_entitlements if parent_rpcs&.respond_to? :list_entitlements
3692
+ list_entitlements_config = parent_rpcs.list_entitlements if parent_rpcs.respond_to? :list_entitlements
3692
3693
  @list_entitlements = ::Gapic::Config::Method.new list_entitlements_config
3693
- list_transferable_skus_config = parent_rpcs&.list_transferable_skus if parent_rpcs&.respond_to? :list_transferable_skus
3694
+ list_transferable_skus_config = parent_rpcs.list_transferable_skus if parent_rpcs.respond_to? :list_transferable_skus
3694
3695
  @list_transferable_skus = ::Gapic::Config::Method.new list_transferable_skus_config
3695
- list_transferable_offers_config = parent_rpcs&.list_transferable_offers if parent_rpcs&.respond_to? :list_transferable_offers
3696
+ list_transferable_offers_config = parent_rpcs.list_transferable_offers if parent_rpcs.respond_to? :list_transferable_offers
3696
3697
  @list_transferable_offers = ::Gapic::Config::Method.new list_transferable_offers_config
3697
- get_entitlement_config = parent_rpcs&.get_entitlement if parent_rpcs&.respond_to? :get_entitlement
3698
+ get_entitlement_config = parent_rpcs.get_entitlement if parent_rpcs.respond_to? :get_entitlement
3698
3699
  @get_entitlement = ::Gapic::Config::Method.new get_entitlement_config
3699
- create_entitlement_config = parent_rpcs&.create_entitlement if parent_rpcs&.respond_to? :create_entitlement
3700
+ create_entitlement_config = parent_rpcs.create_entitlement if parent_rpcs.respond_to? :create_entitlement
3700
3701
  @create_entitlement = ::Gapic::Config::Method.new create_entitlement_config
3701
- change_parameters_config = parent_rpcs&.change_parameters if parent_rpcs&.respond_to? :change_parameters
3702
+ change_parameters_config = parent_rpcs.change_parameters if parent_rpcs.respond_to? :change_parameters
3702
3703
  @change_parameters = ::Gapic::Config::Method.new change_parameters_config
3703
- change_renewal_settings_config = parent_rpcs&.change_renewal_settings if parent_rpcs&.respond_to? :change_renewal_settings
3704
+ change_renewal_settings_config = parent_rpcs.change_renewal_settings if parent_rpcs.respond_to? :change_renewal_settings
3704
3705
  @change_renewal_settings = ::Gapic::Config::Method.new change_renewal_settings_config
3705
- change_offer_config = parent_rpcs&.change_offer if parent_rpcs&.respond_to? :change_offer
3706
+ change_offer_config = parent_rpcs.change_offer if parent_rpcs.respond_to? :change_offer
3706
3707
  @change_offer = ::Gapic::Config::Method.new change_offer_config
3707
- start_paid_service_config = parent_rpcs&.start_paid_service if parent_rpcs&.respond_to? :start_paid_service
3708
+ start_paid_service_config = parent_rpcs.start_paid_service if parent_rpcs.respond_to? :start_paid_service
3708
3709
  @start_paid_service = ::Gapic::Config::Method.new start_paid_service_config
3709
- suspend_entitlement_config = parent_rpcs&.suspend_entitlement if parent_rpcs&.respond_to? :suspend_entitlement
3710
+ suspend_entitlement_config = parent_rpcs.suspend_entitlement if parent_rpcs.respond_to? :suspend_entitlement
3710
3711
  @suspend_entitlement = ::Gapic::Config::Method.new suspend_entitlement_config
3711
- cancel_entitlement_config = parent_rpcs&.cancel_entitlement if parent_rpcs&.respond_to? :cancel_entitlement
3712
+ cancel_entitlement_config = parent_rpcs.cancel_entitlement if parent_rpcs.respond_to? :cancel_entitlement
3712
3713
  @cancel_entitlement = ::Gapic::Config::Method.new cancel_entitlement_config
3713
- activate_entitlement_config = parent_rpcs&.activate_entitlement if parent_rpcs&.respond_to? :activate_entitlement
3714
+ activate_entitlement_config = parent_rpcs.activate_entitlement if parent_rpcs.respond_to? :activate_entitlement
3714
3715
  @activate_entitlement = ::Gapic::Config::Method.new activate_entitlement_config
3715
- transfer_entitlements_config = parent_rpcs&.transfer_entitlements if parent_rpcs&.respond_to? :transfer_entitlements
3716
+ transfer_entitlements_config = parent_rpcs.transfer_entitlements if parent_rpcs.respond_to? :transfer_entitlements
3716
3717
  @transfer_entitlements = ::Gapic::Config::Method.new transfer_entitlements_config
3717
- transfer_entitlements_to_google_config = parent_rpcs&.transfer_entitlements_to_google if parent_rpcs&.respond_to? :transfer_entitlements_to_google
3718
+ transfer_entitlements_to_google_config = parent_rpcs.transfer_entitlements_to_google if parent_rpcs.respond_to? :transfer_entitlements_to_google
3718
3719
  @transfer_entitlements_to_google = ::Gapic::Config::Method.new transfer_entitlements_to_google_config
3719
- list_channel_partner_links_config = parent_rpcs&.list_channel_partner_links if parent_rpcs&.respond_to? :list_channel_partner_links
3720
+ list_channel_partner_links_config = parent_rpcs.list_channel_partner_links if parent_rpcs.respond_to? :list_channel_partner_links
3720
3721
  @list_channel_partner_links = ::Gapic::Config::Method.new list_channel_partner_links_config
3721
- get_channel_partner_link_config = parent_rpcs&.get_channel_partner_link if parent_rpcs&.respond_to? :get_channel_partner_link
3722
+ get_channel_partner_link_config = parent_rpcs.get_channel_partner_link if parent_rpcs.respond_to? :get_channel_partner_link
3722
3723
  @get_channel_partner_link = ::Gapic::Config::Method.new get_channel_partner_link_config
3723
- create_channel_partner_link_config = parent_rpcs&.create_channel_partner_link if parent_rpcs&.respond_to? :create_channel_partner_link
3724
+ create_channel_partner_link_config = parent_rpcs.create_channel_partner_link if parent_rpcs.respond_to? :create_channel_partner_link
3724
3725
  @create_channel_partner_link = ::Gapic::Config::Method.new create_channel_partner_link_config
3725
- update_channel_partner_link_config = parent_rpcs&.update_channel_partner_link if parent_rpcs&.respond_to? :update_channel_partner_link
3726
+ update_channel_partner_link_config = parent_rpcs.update_channel_partner_link if parent_rpcs.respond_to? :update_channel_partner_link
3726
3727
  @update_channel_partner_link = ::Gapic::Config::Method.new update_channel_partner_link_config
3727
- list_products_config = parent_rpcs&.list_products if parent_rpcs&.respond_to? :list_products
3728
+ list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
3728
3729
  @list_products = ::Gapic::Config::Method.new list_products_config
3729
- list_skus_config = parent_rpcs&.list_skus if parent_rpcs&.respond_to? :list_skus
3730
+ list_skus_config = parent_rpcs.list_skus if parent_rpcs.respond_to? :list_skus
3730
3731
  @list_skus = ::Gapic::Config::Method.new list_skus_config
3731
- list_offers_config = parent_rpcs&.list_offers if parent_rpcs&.respond_to? :list_offers
3732
+ list_offers_config = parent_rpcs.list_offers if parent_rpcs.respond_to? :list_offers
3732
3733
  @list_offers = ::Gapic::Config::Method.new list_offers_config
3733
- list_purchasable_skus_config = parent_rpcs&.list_purchasable_skus if parent_rpcs&.respond_to? :list_purchasable_skus
3734
+ list_purchasable_skus_config = parent_rpcs.list_purchasable_skus if parent_rpcs.respond_to? :list_purchasable_skus
3734
3735
  @list_purchasable_skus = ::Gapic::Config::Method.new list_purchasable_skus_config
3735
- list_purchasable_offers_config = parent_rpcs&.list_purchasable_offers if parent_rpcs&.respond_to? :list_purchasable_offers
3736
+ list_purchasable_offers_config = parent_rpcs.list_purchasable_offers if parent_rpcs.respond_to? :list_purchasable_offers
3736
3737
  @list_purchasable_offers = ::Gapic::Config::Method.new list_purchasable_offers_config
3737
- register_subscriber_config = parent_rpcs&.register_subscriber if parent_rpcs&.respond_to? :register_subscriber
3738
+ register_subscriber_config = parent_rpcs.register_subscriber if parent_rpcs.respond_to? :register_subscriber
3738
3739
  @register_subscriber = ::Gapic::Config::Method.new register_subscriber_config
3739
- unregister_subscriber_config = parent_rpcs&.unregister_subscriber if parent_rpcs&.respond_to? :unregister_subscriber
3740
+ unregister_subscriber_config = parent_rpcs.unregister_subscriber if parent_rpcs.respond_to? :unregister_subscriber
3740
3741
  @unregister_subscriber = ::Gapic::Config::Method.new unregister_subscriber_config
3741
- list_subscribers_config = parent_rpcs&.list_subscribers if parent_rpcs&.respond_to? :list_subscribers
3742
+ list_subscribers_config = parent_rpcs.list_subscribers if parent_rpcs.respond_to? :list_subscribers
3742
3743
  @list_subscribers = ::Gapic::Config::Method.new list_subscribers_config
3743
3744
 
3744
3745
  yield self if block_given?
@@ -560,7 +560,7 @@ module Google
560
560
  config_attr :scope, nil, ::String, ::Array, nil
561
561
  config_attr :lib_name, nil, ::String, nil
562
562
  config_attr :lib_version, nil, ::String, nil
563
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
563
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
564
564
  config_attr :interceptors, nil, ::Array, nil
565
565
  config_attr :timeout, nil, ::Numeric, nil
566
566
  config_attr :metadata, nil, ::Hash, nil
@@ -581,7 +581,7 @@ module Google
581
581
  def rpcs
582
582
  @rpcs ||= begin
583
583
  parent_rpcs = nil
584
- parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
584
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
585
585
  Rpcs.new parent_rpcs
586
586
  end
587
587
  end
@@ -632,15 +632,15 @@ module Google
632
632
 
633
633
  # @private
634
634
  def initialize parent_rpcs = nil
635
- list_operations_config = parent_rpcs&.list_operations if parent_rpcs&.respond_to? :list_operations
635
+ list_operations_config = parent_rpcs.list_operations if parent_rpcs.respond_to? :list_operations
636
636
  @list_operations = ::Gapic::Config::Method.new list_operations_config
637
- get_operation_config = parent_rpcs&.get_operation if parent_rpcs&.respond_to? :get_operation
637
+ get_operation_config = parent_rpcs.get_operation if parent_rpcs.respond_to? :get_operation
638
638
  @get_operation = ::Gapic::Config::Method.new get_operation_config
639
- delete_operation_config = parent_rpcs&.delete_operation if parent_rpcs&.respond_to? :delete_operation
639
+ delete_operation_config = parent_rpcs.delete_operation if parent_rpcs.respond_to? :delete_operation
640
640
  @delete_operation = ::Gapic::Config::Method.new delete_operation_config
641
- cancel_operation_config = parent_rpcs&.cancel_operation if parent_rpcs&.respond_to? :cancel_operation
641
+ cancel_operation_config = parent_rpcs.cancel_operation if parent_rpcs.respond_to? :cancel_operation
642
642
  @cancel_operation = ::Gapic::Config::Method.new cancel_operation_config
643
- wait_operation_config = parent_rpcs&.wait_operation if parent_rpcs&.respond_to? :wait_operation
643
+ wait_operation_config = parent_rpcs.wait_operation if parent_rpcs.respond_to? :wait_operation
644
644
  @wait_operation = ::Gapic::Config::Method.new wait_operation_config
645
645
 
646
646
  yield self if block_given?
@@ -50,6 +50,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
50
50
  optional :payment_type, :enum, 2, "google.cloud.channel.v1.PaymentType"
51
51
  optional :payment_cycle, :message, 3, "google.cloud.channel.v1.Period"
52
52
  optional :trial_period, :message, 4, "google.cloud.channel.v1.Period"
53
+ optional :billing_account, :string, 5
53
54
  end
54
55
  add_message "google.cloud.channel.v1.PriceByResource" do
55
56
  optional :resource_type, :enum, 1, "google.cloud.channel.v1.ResourceType"
@@ -94,8 +94,9 @@ module Google
94
94
  # Return Value:
95
95
  # List of [CloudIdentityCustomerAccount][google.cloud.channel.v1.CloudIdentityCustomerAccount] resources for the domain.
96
96
  # List may be empty.
97
+ #
97
98
  # Note: in the v1alpha1 version of the API, a NOT_FOUND error is returned if
98
- # no [CloudIdentityCustomerAccount][google.cloud.channel.v1.CloudIdentityCustomerAccount] resource match the domain.
99
+ # no [CloudIdentityCustomerAccount][google.cloud.channel.v1.CloudIdentityCustomerAccount] resources match the domain.
99
100
  rpc :CheckCloudIdentityAccountsExist, ::Google::Cloud::Channel::V1::CheckCloudIdentityAccountsExistRequest, ::Google::Cloud::Channel::V1::CheckCloudIdentityAccountsExistResponse
100
101
  # Creates a new [Customer][google.cloud.channel.v1.Customer] resource under the reseller or distributor
101
102
  # account.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Channel
23
23
  module V1
24
- VERSION = "0.4.0"
24
+ VERSION = "0.5.0"
25
25
  end
26
26
  end
27
27
  end
@@ -33,6 +33,7 @@ module Google
33
33
  # @return [::Google::Type::PostalAddress]
34
34
  # Required. Address of the organization of the customer entity.
35
35
  # Region and zip codes are required to enforce US laws and embargoes.
36
+ # Valid address lines are required for all customers.
36
37
  # Language code is discarded. Use the Customer-level language code to set the
37
38
  # customer's language.
38
39
  # @!attribute [rw] primary_contact_info
@@ -147,6 +147,10 @@ module Google
147
147
  # For Regular Offers with a trial period, the regular pricing goes into
148
148
  # effect when trial period ends, or if paid service is started before the end
149
149
  # of the trial period.
150
+ # @!attribute [rw] billing_account
151
+ # @return [::String]
152
+ # Reseller Billing account to charge after an offer transaction.
153
+ # Only present for Google Cloud Platform offers.
150
154
  class Plan
151
155
  include ::Google::Protobuf::MessageExts
152
156
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-channel-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.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: 2021-02-23 00:00:00.000000000 Z
11
+ date: 2021-03-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -44,14 +44,14 @@ dependencies:
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 1.24.0
47
+ version: 1.25.1
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 1.24.0
54
+ version: 1.25.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: minitest
57
57
  requirement: !ruby/object:Gem::Requirement
@@ -217,14 +217,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
217
217
  requirements:
218
218
  - - ">="
219
219
  - !ruby/object:Gem::Version
220
- version: '2.4'
220
+ version: '2.5'
221
221
  required_rubygems_version: !ruby/object:Gem::Requirement
222
222
  requirements:
223
223
  - - ">="
224
224
  - !ruby/object:Gem::Version
225
225
  version: '0'
226
226
  requirements: []
227
- rubygems_version: 3.2.6
227
+ rubygems_version: 3.2.13
228
228
  signing_key:
229
229
  specification_version: 4
230
230
  summary: API Client library for the Cloud Channel V1 API