google-cloud-channel-v1 0.20.0 → 0.21.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: 5b2eba0e4d5abe46e2d1769255f754da2a526c90c3c707cf152825470a76749e
4
- data.tar.gz: c32b74f64ec41c1bb51143232326b71c7816584122c868fa75ea46291995962e
3
+ metadata.gz: 3aa8fc5349ce7d0cfccf288e1191130183a587f46a17fb2a3b5ae9529d4f2ed0
4
+ data.tar.gz: 76292b004a004dec6d17510c206830e5bd4e2e1b70798bf9c27c511618361454
5
5
  SHA512:
6
- metadata.gz: ead4e4b7feec8c4a3be6a602d33f933cc54c4821748480a46940e02b7204c6d0e801976bb82a39eb0b7552ec5b1a67a9595b2b5629db28097c16a5de4585bc9f
7
- data.tar.gz: 6e41eb6ea1c2692af9974ca32271d7f679b3eeab58f607d924d2afbe0e762137be81969a0c6b5036d79e167f0e37953a112669e300dc747a9ffb22cc30007479
6
+ metadata.gz: 5c806102daf252edd3dc447a4fac8a969a4a6903f7292abd13794c23dd1cbff5ab6df2ee4f51e9c77e579f518b36734d129fa1f4f47d49363c85618b6375f634
7
+ data.tar.gz: 0cca47f4f897f9cd3b4b4e4fb1c9dee96bc5c617524449c4a0d0b7136659d3a2dd9d418c7d5d6a2fd6403062e8d91abd4a505d90dd7c0cdc78344340c565accf
@@ -4526,6 +4526,245 @@ module Google
4526
4526
  raise ::Google::Cloud::Error.from_error(e)
4527
4527
  end
4528
4528
 
4529
+ ##
4530
+ # Lists the Rebilling supported SKU groups the account is authorized to
4531
+ # sell.
4532
+ # Reference: https://cloud.google.com/skus/sku-groups
4533
+ #
4534
+ # Possible Error Codes:
4535
+ #
4536
+ # * PERMISSION_DENIED: If the account making the request and the account
4537
+ # being queried are different, or the account doesn't exist.
4538
+ # * INTERNAL: Any non-user error related to technical issues in the
4539
+ # backend. In this case, contact Cloud Channel support.
4540
+ #
4541
+ # Return Value:
4542
+ # If successful, the {::Google::Cloud::Channel::V1::SkuGroup SkuGroup} resources.
4543
+ # The data for each resource is displayed in the alphabetical order of SKU
4544
+ # group display name.
4545
+ # The data for each resource is displayed in the ascending order of
4546
+ # {::Google::Cloud::Channel::V1::SkuGroup#display_name SkuGroup.display_name}
4547
+ #
4548
+ # If unsuccessful, returns an error.
4549
+ #
4550
+ # @overload list_sku_groups(request, options = nil)
4551
+ # Pass arguments to `list_sku_groups` via a request object, either of type
4552
+ # {::Google::Cloud::Channel::V1::ListSkuGroupsRequest} or an equivalent Hash.
4553
+ #
4554
+ # @param request [::Google::Cloud::Channel::V1::ListSkuGroupsRequest, ::Hash]
4555
+ # A request object representing the call parameters. Required. To specify no
4556
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
4557
+ # @param options [::Gapic::CallOptions, ::Hash]
4558
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
4559
+ #
4560
+ # @overload list_sku_groups(parent: nil, page_size: nil, page_token: nil)
4561
+ # Pass arguments to `list_sku_groups` via keyword arguments. Note that at
4562
+ # least one keyword argument is required. To specify no parameters, or to keep all
4563
+ # the default parameter values, pass an empty Hash as a request object (see above).
4564
+ #
4565
+ # @param parent [::String]
4566
+ # Required. The resource name of the account from which to list SKU groups.
4567
+ # Parent uses the format: accounts/\\{account}.
4568
+ # @param page_size [::Integer]
4569
+ # Optional. The maximum number of SKU groups to return. The service may
4570
+ # return fewer than this value. If unspecified, returns a maximum of 1000 SKU
4571
+ # groups. The maximum value is 1000; values above 1000 will be coerced to
4572
+ # 1000.
4573
+ # @param page_token [::String]
4574
+ # Optional. A token identifying a page of results beyond the first page.
4575
+ # Obtained through
4576
+ # [ListSkuGroups.next_page_token][] of the previous
4577
+ # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_sku_groups CloudChannelService.ListSkuGroups}
4578
+ # call.
4579
+ #
4580
+ # @yield [response, operation] Access the result along with the RPC operation
4581
+ # @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Channel::V1::SkuGroup>]
4582
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
4583
+ #
4584
+ # @return [::Gapic::PagedEnumerable<::Google::Cloud::Channel::V1::SkuGroup>]
4585
+ #
4586
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
4587
+ #
4588
+ # @example Basic example
4589
+ # require "google/cloud/channel/v1"
4590
+ #
4591
+ # # Create a client object. The client can be reused for multiple calls.
4592
+ # client = Google::Cloud::Channel::V1::CloudChannelService::Client.new
4593
+ #
4594
+ # # Create a request. To set request fields, pass in keyword arguments.
4595
+ # request = Google::Cloud::Channel::V1::ListSkuGroupsRequest.new
4596
+ #
4597
+ # # Call the list_sku_groups method.
4598
+ # result = client.list_sku_groups request
4599
+ #
4600
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
4601
+ # # over elements, and API calls will be issued to fetch pages as needed.
4602
+ # result.each do |item|
4603
+ # # Each element is of type ::Google::Cloud::Channel::V1::SkuGroup.
4604
+ # p item
4605
+ # end
4606
+ #
4607
+ def list_sku_groups request, options = nil
4608
+ raise ::ArgumentError, "request must be provided" if request.nil?
4609
+
4610
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Channel::V1::ListSkuGroupsRequest
4611
+
4612
+ # Converts hash and nil to an options object
4613
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
4614
+
4615
+ # Customize the options with defaults
4616
+ metadata = @config.rpcs.list_sku_groups.metadata.to_h
4617
+
4618
+ # Set x-goog-api-client and x-goog-user-project headers
4619
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
4620
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
4621
+ gapic_version: ::Google::Cloud::Channel::V1::VERSION
4622
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
4623
+
4624
+ header_params = {}
4625
+ if request.parent
4626
+ header_params["parent"] = request.parent
4627
+ end
4628
+
4629
+ request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
4630
+ metadata[:"x-goog-request-params"] ||= request_params_header
4631
+
4632
+ options.apply_defaults timeout: @config.rpcs.list_sku_groups.timeout,
4633
+ metadata: metadata,
4634
+ retry_policy: @config.rpcs.list_sku_groups.retry_policy
4635
+
4636
+ options.apply_defaults timeout: @config.timeout,
4637
+ metadata: @config.metadata,
4638
+ retry_policy: @config.retry_policy
4639
+
4640
+ @cloud_channel_service_stub.call_rpc :list_sku_groups, request, options: options do |response, operation|
4641
+ response = ::Gapic::PagedEnumerable.new @cloud_channel_service_stub, :list_sku_groups, request, response, operation, options
4642
+ yield response, operation if block_given?
4643
+ return response
4644
+ end
4645
+ rescue ::GRPC::BadStatus => e
4646
+ raise ::Google::Cloud::Error.from_error(e)
4647
+ end
4648
+
4649
+ ##
4650
+ # Lists the Billable SKUs in a given SKU group.
4651
+ #
4652
+ # Possible error codes:
4653
+ # PERMISSION_DENIED: If the account making the request and the account
4654
+ # being queried for are different, or the account doesn't exist.
4655
+ # INVALID_ARGUMENT: Missing or invalid required parameters in the
4656
+ # request.
4657
+ # INTERNAL: Any non-user error related to technical issue in the
4658
+ # backend. In this case, contact cloud channel support.
4659
+ #
4660
+ # Return Value:
4661
+ # If successful, the {::Google::Cloud::Channel::V1::BillableSku BillableSku}
4662
+ # resources. The data for each resource is displayed in the ascending order
4663
+ # of:
4664
+ #
4665
+ # * {::Google::Cloud::Channel::V1::BillableSku#service_display_name BillableSku.service_display_name}
4666
+ # * {::Google::Cloud::Channel::V1::BillableSku#sku_display_name BillableSku.sku_display_name}
4667
+ #
4668
+ # If unsuccessful, returns an error.
4669
+ #
4670
+ # @overload list_sku_group_billable_skus(request, options = nil)
4671
+ # Pass arguments to `list_sku_group_billable_skus` via a request object, either of type
4672
+ # {::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest} or an equivalent Hash.
4673
+ #
4674
+ # @param request [::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest, ::Hash]
4675
+ # A request object representing the call parameters. Required. To specify no
4676
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
4677
+ # @param options [::Gapic::CallOptions, ::Hash]
4678
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
4679
+ #
4680
+ # @overload list_sku_group_billable_skus(parent: nil, page_size: nil, page_token: nil)
4681
+ # Pass arguments to `list_sku_group_billable_skus` via keyword arguments. Note that at
4682
+ # least one keyword argument is required. To specify no parameters, or to keep all
4683
+ # the default parameter values, pass an empty Hash as a request object (see above).
4684
+ #
4685
+ # @param parent [::String]
4686
+ # Required. Resource name of the SKU group.
4687
+ # Format: accounts/\\{account}/skuGroups/\\{sku_group}.
4688
+ # @param page_size [::Integer]
4689
+ # Optional. The maximum number of SKUs to return. The service may return
4690
+ # fewer than this value. If unspecified, returns a maximum of 100000 SKUs.
4691
+ # The maximum value is 100000; values above 100000 will be coerced to 100000.
4692
+ # @param page_token [::String]
4693
+ # Optional. A token identifying a page of results beyond the first page.
4694
+ # Obtained through
4695
+ # [ListSkuGroupBillableSkus.next_page_token][] of the previous
4696
+ # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_sku_group_billable_skus CloudChannelService.ListSkuGroupBillableSkus}
4697
+ # call.
4698
+ #
4699
+ # @yield [response, operation] Access the result along with the RPC operation
4700
+ # @yieldparam response [::Gapic::PagedEnumerable<::Google::Cloud::Channel::V1::BillableSku>]
4701
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
4702
+ #
4703
+ # @return [::Gapic::PagedEnumerable<::Google::Cloud::Channel::V1::BillableSku>]
4704
+ #
4705
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
4706
+ #
4707
+ # @example Basic example
4708
+ # require "google/cloud/channel/v1"
4709
+ #
4710
+ # # Create a client object. The client can be reused for multiple calls.
4711
+ # client = Google::Cloud::Channel::V1::CloudChannelService::Client.new
4712
+ #
4713
+ # # Create a request. To set request fields, pass in keyword arguments.
4714
+ # request = Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest.new
4715
+ #
4716
+ # # Call the list_sku_group_billable_skus method.
4717
+ # result = client.list_sku_group_billable_skus request
4718
+ #
4719
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
4720
+ # # over elements, and API calls will be issued to fetch pages as needed.
4721
+ # result.each do |item|
4722
+ # # Each element is of type ::Google::Cloud::Channel::V1::BillableSku.
4723
+ # p item
4724
+ # end
4725
+ #
4726
+ def list_sku_group_billable_skus request, options = nil
4727
+ raise ::ArgumentError, "request must be provided" if request.nil?
4728
+
4729
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest
4730
+
4731
+ # Converts hash and nil to an options object
4732
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
4733
+
4734
+ # Customize the options with defaults
4735
+ metadata = @config.rpcs.list_sku_group_billable_skus.metadata.to_h
4736
+
4737
+ # Set x-goog-api-client and x-goog-user-project headers
4738
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
4739
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
4740
+ gapic_version: ::Google::Cloud::Channel::V1::VERSION
4741
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
4742
+
4743
+ header_params = {}
4744
+ if request.parent
4745
+ header_params["parent"] = request.parent
4746
+ end
4747
+
4748
+ request_params_header = header_params.map { |k, v| "#{k}=#{v}" }.join("&")
4749
+ metadata[:"x-goog-request-params"] ||= request_params_header
4750
+
4751
+ options.apply_defaults timeout: @config.rpcs.list_sku_group_billable_skus.timeout,
4752
+ metadata: metadata,
4753
+ retry_policy: @config.rpcs.list_sku_group_billable_skus.retry_policy
4754
+
4755
+ options.apply_defaults timeout: @config.timeout,
4756
+ metadata: @config.metadata,
4757
+ retry_policy: @config.retry_policy
4758
+
4759
+ @cloud_channel_service_stub.call_rpc :list_sku_group_billable_skus, request, options: options do |response, operation|
4760
+ response = ::Gapic::PagedEnumerable.new @cloud_channel_service_stub, :list_sku_group_billable_skus, request, response, operation, options
4761
+ yield response, operation if block_given?
4762
+ return response
4763
+ end
4764
+ rescue ::GRPC::BadStatus => e
4765
+ raise ::Google::Cloud::Error.from_error(e)
4766
+ end
4767
+
4529
4768
  ##
4530
4769
  # Returns the requested {::Google::Cloud::Channel::V1::Offer Offer} resource.
4531
4770
  #
@@ -5939,6 +6178,16 @@ module Google
5939
6178
  #
5940
6179
  attr_reader :delete_channel_partner_repricing_config
5941
6180
  ##
6181
+ # RPC-specific configuration for `list_sku_groups`
6182
+ # @return [::Gapic::Config::Method]
6183
+ #
6184
+ attr_reader :list_sku_groups
6185
+ ##
6186
+ # RPC-specific configuration for `list_sku_group_billable_skus`
6187
+ # @return [::Gapic::Config::Method]
6188
+ #
6189
+ attr_reader :list_sku_group_billable_skus
6190
+ ##
5942
6191
  # RPC-specific configuration for `lookup_offer`
5943
6192
  # @return [::Gapic::Config::Method]
5944
6193
  #
@@ -6063,6 +6312,10 @@ module Google
6063
6312
  @update_channel_partner_repricing_config = ::Gapic::Config::Method.new update_channel_partner_repricing_config_config
6064
6313
  delete_channel_partner_repricing_config_config = parent_rpcs.delete_channel_partner_repricing_config if parent_rpcs.respond_to? :delete_channel_partner_repricing_config
6065
6314
  @delete_channel_partner_repricing_config = ::Gapic::Config::Method.new delete_channel_partner_repricing_config_config
6315
+ list_sku_groups_config = parent_rpcs.list_sku_groups if parent_rpcs.respond_to? :list_sku_groups
6316
+ @list_sku_groups = ::Gapic::Config::Method.new list_sku_groups_config
6317
+ list_sku_group_billable_skus_config = parent_rpcs.list_sku_group_billable_skus if parent_rpcs.respond_to? :list_sku_group_billable_skus
6318
+ @list_sku_group_billable_skus = ::Gapic::Config::Method.new list_sku_group_billable_skus_config
6066
6319
  lookup_offer_config = parent_rpcs.lookup_offer if parent_rpcs.respond_to? :lookup_offer
6067
6320
  @lookup_offer = ::Gapic::Config::Method.new lookup_offer_config
6068
6321
  list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
@@ -146,6 +146,23 @@ module Google
146
146
  "products/#{product}"
147
147
  end
148
148
 
149
+ ##
150
+ # Create a fully-qualified SkuGroup resource string.
151
+ #
152
+ # The resource will be in the following format:
153
+ #
154
+ # `accounts/{account}/skuGroups/{sku_group}`
155
+ #
156
+ # @param account [String]
157
+ # @param sku_group [String]
158
+ #
159
+ # @return [::String]
160
+ def sku_group_path account:, sku_group:
161
+ raise ::ArgumentError, "account cannot contain /" if account.to_s.include? "/"
162
+
163
+ "accounts/#{account}/skuGroups/#{sku_group}"
164
+ end
165
+
149
166
  extend self
150
167
  end
151
168
  end
@@ -3584,6 +3584,191 @@ module Google
3584
3584
  raise ::Google::Cloud::Error.from_error(e)
3585
3585
  end
3586
3586
 
3587
+ ##
3588
+ # Lists the Rebilling supported SKU groups the account is authorized to
3589
+ # sell.
3590
+ # Reference: https://cloud.google.com/skus/sku-groups
3591
+ #
3592
+ # Possible Error Codes:
3593
+ #
3594
+ # * PERMISSION_DENIED: If the account making the request and the account
3595
+ # being queried are different, or the account doesn't exist.
3596
+ # * INTERNAL: Any non-user error related to technical issues in the
3597
+ # backend. In this case, contact Cloud Channel support.
3598
+ #
3599
+ # Return Value:
3600
+ # If successful, the {::Google::Cloud::Channel::V1::SkuGroup SkuGroup} resources.
3601
+ # The data for each resource is displayed in the alphabetical order of SKU
3602
+ # group display name.
3603
+ # The data for each resource is displayed in the ascending order of
3604
+ # {::Google::Cloud::Channel::V1::SkuGroup#display_name SkuGroup.display_name}
3605
+ #
3606
+ # If unsuccessful, returns an error.
3607
+ #
3608
+ # @overload list_sku_groups(request, options = nil)
3609
+ # Pass arguments to `list_sku_groups` via a request object, either of type
3610
+ # {::Google::Cloud::Channel::V1::ListSkuGroupsRequest} or an equivalent Hash.
3611
+ #
3612
+ # @param request [::Google::Cloud::Channel::V1::ListSkuGroupsRequest, ::Hash]
3613
+ # A request object representing the call parameters. Required. To specify no
3614
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
3615
+ # @param options [::Gapic::CallOptions, ::Hash]
3616
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
3617
+ #
3618
+ # @overload list_sku_groups(parent: nil, page_size: nil, page_token: nil)
3619
+ # Pass arguments to `list_sku_groups` via keyword arguments. Note that at
3620
+ # least one keyword argument is required. To specify no parameters, or to keep all
3621
+ # the default parameter values, pass an empty Hash as a request object (see above).
3622
+ #
3623
+ # @param parent [::String]
3624
+ # Required. The resource name of the account from which to list SKU groups.
3625
+ # Parent uses the format: accounts/\\{account}.
3626
+ # @param page_size [::Integer]
3627
+ # Optional. The maximum number of SKU groups to return. The service may
3628
+ # return fewer than this value. If unspecified, returns a maximum of 1000 SKU
3629
+ # groups. The maximum value is 1000; values above 1000 will be coerced to
3630
+ # 1000.
3631
+ # @param page_token [::String]
3632
+ # Optional. A token identifying a page of results beyond the first page.
3633
+ # Obtained through
3634
+ # [ListSkuGroups.next_page_token][] of the previous
3635
+ # {::Google::Cloud::Channel::V1::CloudChannelService::Rest::Client#list_sku_groups CloudChannelService.ListSkuGroups}
3636
+ # call.
3637
+ # @yield [result, operation] Access the result along with the TransportOperation object
3638
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Channel::V1::SkuGroup>]
3639
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
3640
+ #
3641
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Channel::V1::SkuGroup>]
3642
+ #
3643
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
3644
+ def list_sku_groups request, options = nil
3645
+ raise ::ArgumentError, "request must be provided" if request.nil?
3646
+
3647
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Channel::V1::ListSkuGroupsRequest
3648
+
3649
+ # Converts hash and nil to an options object
3650
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
3651
+
3652
+ # Customize the options with defaults
3653
+ call_metadata = @config.rpcs.list_sku_groups.metadata.to_h
3654
+
3655
+ # Set x-goog-api-client and x-goog-user-project headers
3656
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
3657
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
3658
+ gapic_version: ::Google::Cloud::Channel::V1::VERSION,
3659
+ transports_version_send: [:rest]
3660
+
3661
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
3662
+
3663
+ options.apply_defaults timeout: @config.rpcs.list_sku_groups.timeout,
3664
+ metadata: call_metadata,
3665
+ retry_policy: @config.rpcs.list_sku_groups.retry_policy
3666
+
3667
+ options.apply_defaults timeout: @config.timeout,
3668
+ metadata: @config.metadata,
3669
+ retry_policy: @config.retry_policy
3670
+
3671
+ @cloud_channel_service_stub.list_sku_groups request, options do |result, operation|
3672
+ result = ::Gapic::Rest::PagedEnumerable.new @cloud_channel_service_stub, :list_sku_groups, "sku_groups", request, result, options
3673
+ yield result, operation if block_given?
3674
+ return result
3675
+ end
3676
+ rescue ::Gapic::Rest::Error => e
3677
+ raise ::Google::Cloud::Error.from_error(e)
3678
+ end
3679
+
3680
+ ##
3681
+ # Lists the Billable SKUs in a given SKU group.
3682
+ #
3683
+ # Possible error codes:
3684
+ # PERMISSION_DENIED: If the account making the request and the account
3685
+ # being queried for are different, or the account doesn't exist.
3686
+ # INVALID_ARGUMENT: Missing or invalid required parameters in the
3687
+ # request.
3688
+ # INTERNAL: Any non-user error related to technical issue in the
3689
+ # backend. In this case, contact cloud channel support.
3690
+ #
3691
+ # Return Value:
3692
+ # If successful, the {::Google::Cloud::Channel::V1::BillableSku BillableSku}
3693
+ # resources. The data for each resource is displayed in the ascending order
3694
+ # of:
3695
+ #
3696
+ # * {::Google::Cloud::Channel::V1::BillableSku#service_display_name BillableSku.service_display_name}
3697
+ # * {::Google::Cloud::Channel::V1::BillableSku#sku_display_name BillableSku.sku_display_name}
3698
+ #
3699
+ # If unsuccessful, returns an error.
3700
+ #
3701
+ # @overload list_sku_group_billable_skus(request, options = nil)
3702
+ # Pass arguments to `list_sku_group_billable_skus` via a request object, either of type
3703
+ # {::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest} or an equivalent Hash.
3704
+ #
3705
+ # @param request [::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest, ::Hash]
3706
+ # A request object representing the call parameters. Required. To specify no
3707
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
3708
+ # @param options [::Gapic::CallOptions, ::Hash]
3709
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
3710
+ #
3711
+ # @overload list_sku_group_billable_skus(parent: nil, page_size: nil, page_token: nil)
3712
+ # Pass arguments to `list_sku_group_billable_skus` via keyword arguments. Note that at
3713
+ # least one keyword argument is required. To specify no parameters, or to keep all
3714
+ # the default parameter values, pass an empty Hash as a request object (see above).
3715
+ #
3716
+ # @param parent [::String]
3717
+ # Required. Resource name of the SKU group.
3718
+ # Format: accounts/\\{account}/skuGroups/\\{sku_group}.
3719
+ # @param page_size [::Integer]
3720
+ # Optional. The maximum number of SKUs to return. The service may return
3721
+ # fewer than this value. If unspecified, returns a maximum of 100000 SKUs.
3722
+ # The maximum value is 100000; values above 100000 will be coerced to 100000.
3723
+ # @param page_token [::String]
3724
+ # Optional. A token identifying a page of results beyond the first page.
3725
+ # Obtained through
3726
+ # [ListSkuGroupBillableSkus.next_page_token][] of the previous
3727
+ # {::Google::Cloud::Channel::V1::CloudChannelService::Rest::Client#list_sku_group_billable_skus CloudChannelService.ListSkuGroupBillableSkus}
3728
+ # call.
3729
+ # @yield [result, operation] Access the result along with the TransportOperation object
3730
+ # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Channel::V1::BillableSku>]
3731
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
3732
+ #
3733
+ # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Channel::V1::BillableSku>]
3734
+ #
3735
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
3736
+ def list_sku_group_billable_skus request, options = nil
3737
+ raise ::ArgumentError, "request must be provided" if request.nil?
3738
+
3739
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest
3740
+
3741
+ # Converts hash and nil to an options object
3742
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
3743
+
3744
+ # Customize the options with defaults
3745
+ call_metadata = @config.rpcs.list_sku_group_billable_skus.metadata.to_h
3746
+
3747
+ # Set x-goog-api-client and x-goog-user-project headers
3748
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
3749
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
3750
+ gapic_version: ::Google::Cloud::Channel::V1::VERSION,
3751
+ transports_version_send: [:rest]
3752
+
3753
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
3754
+
3755
+ options.apply_defaults timeout: @config.rpcs.list_sku_group_billable_skus.timeout,
3756
+ metadata: call_metadata,
3757
+ retry_policy: @config.rpcs.list_sku_group_billable_skus.retry_policy
3758
+
3759
+ options.apply_defaults timeout: @config.timeout,
3760
+ metadata: @config.metadata,
3761
+ retry_policy: @config.retry_policy
3762
+
3763
+ @cloud_channel_service_stub.list_sku_group_billable_skus request, options do |result, operation|
3764
+ result = ::Gapic::Rest::PagedEnumerable.new @cloud_channel_service_stub, :list_sku_group_billable_skus, "billable_skus", request, result, options
3765
+ yield result, operation if block_given?
3766
+ return result
3767
+ end
3768
+ rescue ::Gapic::Rest::Error => e
3769
+ raise ::Google::Cloud::Error.from_error(e)
3770
+ end
3771
+
3587
3772
  ##
3588
3773
  # Returns the requested {::Google::Cloud::Channel::V1::Offer Offer} resource.
3589
3774
  #
@@ -4740,6 +4925,16 @@ module Google
4740
4925
  #
4741
4926
  attr_reader :delete_channel_partner_repricing_config
4742
4927
  ##
4928
+ # RPC-specific configuration for `list_sku_groups`
4929
+ # @return [::Gapic::Config::Method]
4930
+ #
4931
+ attr_reader :list_sku_groups
4932
+ ##
4933
+ # RPC-specific configuration for `list_sku_group_billable_skus`
4934
+ # @return [::Gapic::Config::Method]
4935
+ #
4936
+ attr_reader :list_sku_group_billable_skus
4937
+ ##
4743
4938
  # RPC-specific configuration for `lookup_offer`
4744
4939
  # @return [::Gapic::Config::Method]
4745
4940
  #
@@ -4864,6 +5059,10 @@ module Google
4864
5059
  @update_channel_partner_repricing_config = ::Gapic::Config::Method.new update_channel_partner_repricing_config_config
4865
5060
  delete_channel_partner_repricing_config_config = parent_rpcs.delete_channel_partner_repricing_config if parent_rpcs.respond_to? :delete_channel_partner_repricing_config
4866
5061
  @delete_channel_partner_repricing_config = ::Gapic::Config::Method.new delete_channel_partner_repricing_config_config
5062
+ list_sku_groups_config = parent_rpcs.list_sku_groups if parent_rpcs.respond_to? :list_sku_groups
5063
+ @list_sku_groups = ::Gapic::Config::Method.new list_sku_groups_config
5064
+ list_sku_group_billable_skus_config = parent_rpcs.list_sku_group_billable_skus if parent_rpcs.respond_to? :list_sku_group_billable_skus
5065
+ @list_sku_group_billable_skus = ::Gapic::Config::Method.new list_sku_group_billable_skus_config
4867
5066
  lookup_offer_config = parent_rpcs.lookup_offer if parent_rpcs.respond_to? :lookup_offer
4868
5067
  @lookup_offer = ::Gapic::Config::Method.new lookup_offer_config
4869
5068
  list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
@@ -1408,6 +1408,82 @@ module Google
1408
1408
  result
1409
1409
  end
1410
1410
 
1411
+ ##
1412
+ # Baseline implementation for the list_sku_groups REST call
1413
+ #
1414
+ # @param request_pb [::Google::Cloud::Channel::V1::ListSkuGroupsRequest]
1415
+ # A request object representing the call parameters. Required.
1416
+ # @param options [::Gapic::CallOptions]
1417
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1418
+ #
1419
+ # @yield [result, operation] Access the result along with the TransportOperation object
1420
+ # @yieldparam result [::Google::Cloud::Channel::V1::ListSkuGroupsResponse]
1421
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1422
+ #
1423
+ # @return [::Google::Cloud::Channel::V1::ListSkuGroupsResponse]
1424
+ # A result object deserialized from the server's reply
1425
+ def list_sku_groups request_pb, options = nil
1426
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1427
+
1428
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_sku_groups_request request_pb
1429
+ query_string_params = if query_string_params.any?
1430
+ query_string_params.to_h { |p| p.split "=", 2 }
1431
+ else
1432
+ {}
1433
+ end
1434
+
1435
+ response = @client_stub.make_http_request(
1436
+ verb,
1437
+ uri: uri,
1438
+ body: body || "",
1439
+ params: query_string_params,
1440
+ options: options
1441
+ )
1442
+ operation = ::Gapic::Rest::TransportOperation.new response
1443
+ result = ::Google::Cloud::Channel::V1::ListSkuGroupsResponse.decode_json response.body, ignore_unknown_fields: true
1444
+
1445
+ yield result, operation if block_given?
1446
+ result
1447
+ end
1448
+
1449
+ ##
1450
+ # Baseline implementation for the list_sku_group_billable_skus REST call
1451
+ #
1452
+ # @param request_pb [::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest]
1453
+ # A request object representing the call parameters. Required.
1454
+ # @param options [::Gapic::CallOptions]
1455
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
1456
+ #
1457
+ # @yield [result, operation] Access the result along with the TransportOperation object
1458
+ # @yieldparam result [::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusResponse]
1459
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
1460
+ #
1461
+ # @return [::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusResponse]
1462
+ # A result object deserialized from the server's reply
1463
+ def list_sku_group_billable_skus request_pb, options = nil
1464
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
1465
+
1466
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_sku_group_billable_skus_request request_pb
1467
+ query_string_params = if query_string_params.any?
1468
+ query_string_params.to_h { |p| p.split "=", 2 }
1469
+ else
1470
+ {}
1471
+ end
1472
+
1473
+ response = @client_stub.make_http_request(
1474
+ verb,
1475
+ uri: uri,
1476
+ body: body || "",
1477
+ params: query_string_params,
1478
+ options: options
1479
+ )
1480
+ operation = ::Gapic::Rest::TransportOperation.new response
1481
+ result = ::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusResponse.decode_json response.body, ignore_unknown_fields: true
1482
+
1483
+ yield result, operation if block_given?
1484
+ result
1485
+ end
1486
+
1411
1487
  ##
1412
1488
  # Baseline implementation for the lookup_offer REST call
1413
1489
  #
@@ -2612,6 +2688,48 @@ module Google
2612
2688
  transcoder.transcode request_pb
2613
2689
  end
2614
2690
 
2691
+ ##
2692
+ # @private
2693
+ #
2694
+ # GRPC transcoding helper method for the list_sku_groups REST call
2695
+ #
2696
+ # @param request_pb [::Google::Cloud::Channel::V1::ListSkuGroupsRequest]
2697
+ # A request object representing the call parameters. Required.
2698
+ # @return [Array(String, [String, nil], Hash{String => String})]
2699
+ # Uri, Body, Query string parameters
2700
+ def self.transcode_list_sku_groups_request request_pb
2701
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2702
+ .with_bindings(
2703
+ uri_method: :get,
2704
+ uri_template: "/v1/{parent}/skuGroups",
2705
+ matches: [
2706
+ ["parent", %r{^accounts/[^/]+/?$}, false]
2707
+ ]
2708
+ )
2709
+ transcoder.transcode request_pb
2710
+ end
2711
+
2712
+ ##
2713
+ # @private
2714
+ #
2715
+ # GRPC transcoding helper method for the list_sku_group_billable_skus REST call
2716
+ #
2717
+ # @param request_pb [::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest]
2718
+ # A request object representing the call parameters. Required.
2719
+ # @return [Array(String, [String, nil], Hash{String => String})]
2720
+ # Uri, Body, Query string parameters
2721
+ def self.transcode_list_sku_group_billable_skus_request request_pb
2722
+ transcoder = Gapic::Rest::GrpcTranscoder.new
2723
+ .with_bindings(
2724
+ uri_method: :get,
2725
+ uri_template: "/v1/{parent}/billableSkus",
2726
+ matches: [
2727
+ ["parent", %r{^accounts/[^/]+/skuGroups/[^/]+/?$}, false]
2728
+ ]
2729
+ )
2730
+ transcoder.transcode request_pb
2731
+ end
2732
+
2615
2733
  ##
2616
2734
  # @private
2617
2735
  #
@@ -22,7 +22,7 @@ require 'google/protobuf/empty_pb'
22
22
  require 'google/protobuf/field_mask_pb'
23
23
 
24
24
 
25
- descriptor_data = "\n%google/cloud/channel/v1/service.proto\x12\x17google.cloud.channel.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x33google/cloud/channel/v1/channel_partner_links.proto\x1a$google/cloud/channel/v1/common.proto\x1a\'google/cloud/channel/v1/customers.proto\x1a\x31google/cloud/channel/v1/entitlement_changes.proto\x1a*google/cloud/channel/v1/entitlements.proto\x1a$google/cloud/channel/v1/offers.proto\x1a(google/cloud/channel/v1/operations.proto\x1a&google/cloud/channel/v1/products.proto\x1a\'google/cloud/channel/v1/repricing.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\"R\n&CheckCloudIdentityAccountsExistRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06\x64omain\x18\x02 \x01(\tB\x03\xe0\x41\x02\"z\n\x1c\x43loudIdentityCustomerAccount\x12\x10\n\x08\x65xisting\x18\x01 \x01(\x08\x12\r\n\x05owned\x18\x02 \x01(\x08\x12\x15\n\rcustomer_name\x18\x03 \x01(\t\x12\"\n\x1a\x63ustomer_cloud_identity_id\x18\x04 \x01(\t\"\x81\x01\n\'CheckCloudIdentityAccountsExistResponse\x12V\n\x17\x63loud_identity_accounts\x18\x01 \x03(\x0b\x32\x35.google.cloud.channel.v1.CloudIdentityCustomerAccount\"q\n\x14ListCustomersRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"f\n\x15ListCustomersResponse\x12\x34\n\tcustomers\x18\x01 \x03(\x0b\x32!.google.cloud.channel.v1.Customer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"P\n\x12GetCustomerRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\"f\n\x15\x43reateCustomerRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x38\n\x08\x63ustomer\x18\x02 \x01(\x0b\x32!.google.cloud.channel.v1.CustomerB\x03\xe0\x41\x02\"\x82\x01\n\x15UpdateCustomerRequest\x12\x38\n\x08\x63ustomer\x18\x02 \x01(\x0b\x32!.google.cloud.channel.v1.CustomerB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"S\n\x15\x44\x65leteCustomerRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\"\x96\x02\n\x15ImportCustomerRequest\x12\x15\n\x06\x64omain\x18\x02 \x01(\tB\x03\xe0\x41\x02H\x00\x12 \n\x11\x63loud_identity_id\x18\x03 \x01(\tB\x03\xe0\x41\x02H\x00\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nauth_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12 \n\x13overwrite_if_exists\x18\x05 \x01(\x08\x42\x03\xe0\x41\x02\x12\x1f\n\x12\x63hannel_partner_id\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12>\n\x08\x63ustomer\x18\x07 \x01(\tB,\xe0\x41\x01\xfa\x41&\n$cloudchannel.googleapis.com/CustomerB\x13\n\x11\x63ustomer_identity\"\xf1\x01\n\x1dProvisionCloudIdentityRequest\x12>\n\x08\x63ustomer\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12G\n\x13\x63loud_identity_info\x18\x02 \x01(\x0b\x32*.google.cloud.channel.v1.CloudIdentityInfo\x12\x30\n\x04user\x18\x03 \x01(\x0b\x32\".google.cloud.channel.v1.AdminUser\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\x88\x01\n\x17ListEntitlementsRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"o\n\x18ListEntitlementsResponse\x12:\n\x0c\x65ntitlements\x18\x01 \x03(\x0b\x32$.google.cloud.channel.v1.Entitlement\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xe0\x01\n\x1bListTransferableSkusRequest\x12\x1b\n\x11\x63loud_identity_id\x18\x04 \x01(\tH\x00\x12\x17\n\rcustomer_name\x18\x07 \x01(\tH\x00\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x17\n\nauth_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\rlanguage_code\x18\x06 \x01(\tB\x1f\n\x1dtransferred_customer_identity\"|\n\x1cListTransferableSkusResponse\x12\x43\n\x11transferable_skus\x18\x01 \x03(\x0b\x32(.google.cloud.channel.v1.TransferableSku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xe0\x01\n\x1dListTransferableOffersRequest\x12\x1b\n\x11\x63loud_identity_id\x18\x04 \x01(\tH\x00\x12\x17\n\rcustomer_name\x18\x05 \x01(\tH\x00\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x10\n\x03sku\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rlanguage_code\x18\x07 \x01(\tB\x03\xe0\x41\x01\x42\x1f\n\x1dtransferred_customer_identity\"\x82\x01\n\x1eListTransferableOffersResponse\x12G\n\x13transferable_offers\x18\x01 \x03(\x0b\x32*.google.cloud.channel.v1.TransferableOffer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"B\n\x11TransferableOffer\x12-\n\x05offer\x18\x01 \x01(\x0b\x32\x1e.google.cloud.channel.v1.Offer\"V\n\x15GetEntitlementRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'cloudchannel.googleapis.com/Entitlement\"\xaa\x01\n\x1eListChannelPartnerLinksRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x42\n\x04view\x18\x04 \x01(\x0e\x32/.google.cloud.channel.v1.ChannelPartnerLinkViewB\x03\xe0\x41\x01\"\x86\x01\n\x1fListChannelPartnerLinksResponse\x12J\n\x15\x63hannel_partner_links\x18\x01 \x03(\x0b\x32+.google.cloud.channel.v1.ChannelPartnerLink\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"u\n\x1cGetChannelPartnerLinkRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x42\n\x04view\x18\x02 \x01(\x0e\x32/.google.cloud.channel.v1.ChannelPartnerLinkViewB\x03\xe0\x41\x01\"\x86\x01\n\x1f\x43reateChannelPartnerLinkRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12N\n\x14\x63hannel_partner_link\x18\x02 \x01(\x0b\x32+.google.cloud.channel.v1.ChannelPartnerLinkB\x03\xe0\x41\x02\"\xba\x01\n\x1fUpdateChannelPartnerLinkRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12N\n\x14\x63hannel_partner_link\x18\x02 \x01(\x0b\x32+.google.cloud.channel.v1.ChannelPartnerLinkB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"n\n!GetCustomerRepricingConfigRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3cloudchannel.googleapis.com/CustomerRepricingConfig\"\xa9\x01\n#ListCustomerRepricingConfigsRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n$ListCustomerRepricingConfigsResponse\x12T\n\x1a\x63ustomer_repricing_configs\x18\x01 \x03(\x0b\x32\x30.google.cloud.channel.v1.CustomerRepricingConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xbe\x01\n$CreateCustomerRepricingConfigRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12X\n\x19\x63ustomer_repricing_config\x18\x02 \x01(\x0b\x32\x30.google.cloud.channel.v1.CustomerRepricingConfigB\x03\xe0\x41\x02\"\x80\x01\n$UpdateCustomerRepricingConfigRequest\x12X\n\x19\x63ustomer_repricing_config\x18\x01 \x01(\x0b\x32\x30.google.cloud.channel.v1.CustomerRepricingConfigB\x03\xe0\x41\x02\"q\n$DeleteCustomerRepricingConfigRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3cloudchannel.googleapis.com/CustomerRepricingConfig\"z\n\'GetChannelPartnerRepricingConfigRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9cloudchannel.googleapis.com/ChannelPartnerRepricingConfig\"\xb9\x01\n)ListChannelPartnerRepricingConfigsRequest\x12\x46\n\x06parent\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.cloudchannel.googleapis.com/ChannelPartnerLink\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa8\x01\n*ListChannelPartnerRepricingConfigsResponse\x12\x61\n!channel_partner_repricing_configs\x18\x01 \x03(\x0b\x32\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xdb\x01\n*CreateChannelPartnerRepricingConfigRequest\x12\x46\n\x06parent\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.cloudchannel.googleapis.com/ChannelPartnerLink\x12\x65\n channel_partner_repricing_config\x18\x02 \x01(\x0b\x32\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfigB\x03\xe0\x41\x02\"\x93\x01\n*UpdateChannelPartnerRepricingConfigRequest\x12\x65\n channel_partner_repricing_config\x18\x01 \x01(\x0b\x32\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfigB\x03\xe0\x41\x02\"}\n*DeleteChannelPartnerRepricingConfigRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9cloudchannel.googleapis.com/ChannelPartnerRepricingConfig\"\xb1\x01\n\x18\x43reateEntitlementRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12>\n\x0b\x65ntitlement\x18\x02 \x01(\x0b\x32$.google.cloud.channel.v1.EntitlementB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa0\x01\n\x1bTransferEntitlementsRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12?\n\x0c\x65ntitlements\x18\x02 \x03(\x0b\x32$.google.cloud.channel.v1.EntitlementB\x03\xe0\x41\x02\x12\x12\n\nauth_token\x18\x04 \x01(\t\x12\x17\n\nrequest_id\x18\x06 \x01(\tB\x03\xe0\x41\x01\"Z\n\x1cTransferEntitlementsResponse\x12:\n\x0c\x65ntitlements\x18\x01 \x03(\x0b\x32$.google.cloud.channel.v1.Entitlement\"\x94\x01\n#TransferEntitlementsToGoogleRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12?\n\x0c\x65ntitlements\x18\x02 \x03(\x0b\x32$.google.cloud.channel.v1.EntitlementB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xa2\x01\n\x17\x43hangeParametersRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12;\n\nparameters\x18\x02 \x03(\x0b\x32\".google.cloud.channel.v1.ParameterB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1e\n\x11purchase_order_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x93\x01\n\x1c\x43hangeRenewalSettingsRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12G\n\x10renewal_settings\x18\x04 \x01(\x0b\x32(.google.cloud.channel.v1.RenewalSettingsB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xd7\x01\n\x12\x43hangeOfferRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x38\n\x05offer\x18\x02 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!cloudchannel.googleapis.com/Offer\x12;\n\nparameters\x18\x03 \x03(\x0b\x32\".google.cloud.channel.v1.ParameterB\x03\xe0\x41\x01\x12\x1e\n\x11purchase_order_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x17\n\nrequest_id\x18\x06 \x01(\tB\x03\xe0\x41\x01\"E\n\x17StartPaidServiceRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"F\n\x18\x43\x61ncelEntitlementRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"G\n\x19SuspendEntitlementRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"H\n\x1a\x41\x63tivateEntitlementRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"Z\n\x12LookupOfferRequest\x12\x44\n\x0b\x65ntitlement\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'cloudchannel.googleapis.com/Entitlement\"x\n\x13ListProductsRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x04 \x01(\tB\x03\xe0\x41\x01\"c\n\x14ListProductsResponse\x12\x32\n\x08products\x18\x01 \x03(\x0b\x32 .google.cloud.channel.v1.Product\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb1\x01\n\x0fListSkusRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#cloudchannel.googleapis.com/Product\x12\x14\n\x07\x61\x63\x63ount\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x05 \x01(\tB\x03\xe0\x41\x01\"W\n\x10ListSkusResponse\x12*\n\x04skus\x18\x01 \x03(\x0b\x32\x1c.google.cloud.channel.v1.Sku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xab\x01\n\x11ListOffersRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\x12show_future_offers\x18\x07 \x01(\x08\x42\x03\xe0\x41\x01\"]\n\x12ListOffersResponse\x12.\n\x06offers\x18\x01 \x03(\x0b\x32\x1e.google.cloud.channel.v1.Offer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb6\x05\n\x1aListPurchasableSkusRequest\x12t\n\x1b\x63reate_entitlement_purchase\x18\x02 \x01(\x0b\x32M.google.cloud.channel.v1.ListPurchasableSkusRequest.CreateEntitlementPurchaseH\x00\x12h\n\x15\x63hange_offer_purchase\x18\x03 \x01(\x0b\x32G.google.cloud.channel.v1.ListPurchasableSkusRequest.ChangeOfferPurchaseH\x00\x12>\n\x08\x63ustomer\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x06 \x01(\tB\x03\xe0\x41\x01\x1a\x31\n\x19\x43reateEntitlementPurchase\x12\x14\n\x07product\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a\xe4\x01\n\x13\x43hangeOfferPurchase\x12\x18\n\x0b\x65ntitlement\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12l\n\x0b\x63hange_type\x18\x02 \x01(\x0e\x32R.google.cloud.channel.v1.ListPurchasableSkusRequest.ChangeOfferPurchase.ChangeTypeB\x03\xe0\x41\x02\"E\n\nChangeType\x12\x1b\n\x17\x43HANGE_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07UPGRADE\x10\x01\x12\r\n\tDOWNGRADE\x10\x02\x42\x11\n\x0fpurchase_option\"y\n\x1bListPurchasableSkusResponse\x12\x41\n\x10purchasable_skus\x18\x01 \x03(\x0b\x32\'.google.cloud.channel.v1.PurchasableSku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\";\n\x0ePurchasableSku\x12)\n\x03sku\x18\x01 \x01(\x0b\x32\x1c.google.cloud.channel.v1.Sku\"\x98\x04\n\x1cListPurchasableOffersRequest\x12v\n\x1b\x63reate_entitlement_purchase\x18\x02 \x01(\x0b\x32O.google.cloud.channel.v1.ListPurchasableOffersRequest.CreateEntitlementPurchaseH\x00\x12j\n\x15\x63hange_offer_purchase\x18\x03 \x01(\x0b\x32I.google.cloud.channel.v1.ListPurchasableOffersRequest.ChangeOfferPurchaseH\x00\x12>\n\x08\x63ustomer\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x06 \x01(\tB\x03\xe0\x41\x01\x1a-\n\x19\x43reateEntitlementPurchase\x12\x10\n\x03sku\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a\x45\n\x13\x43hangeOfferPurchase\x12\x18\n\x0b\x65ntitlement\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07new_sku\x18\x02 \x01(\tB\x03\xe0\x41\x01\x42\x11\n\x0fpurchase_option\"\x7f\n\x1dListPurchasableOffersResponse\x12\x45\n\x12purchasable_offers\x18\x01 \x03(\x0b\x32).google.cloud.channel.v1.PurchasableOffer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"A\n\x10PurchasableOffer\x12-\n\x05offer\x18\x01 \x01(\x0b\x32\x1e.google.cloud.channel.v1.Offer\"O\n\x19RegisterSubscriberRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0fservice_account\x18\x02 \x01(\tB\x03\xe0\x41\x02\"+\n\x1aRegisterSubscriberResponse\x12\r\n\x05topic\x18\x01 \x01(\t\"Q\n\x1bUnregisterSubscriberRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0fservice_account\x18\x02 \x01(\tB\x03\xe0\x41\x02\"-\n\x1cUnregisterSubscriberResponse\x12\r\n\x05topic\x18\x01 \x01(\t\"_\n\x16ListSubscribersRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"[\n\x17ListSubscribersResponse\x12\r\n\x05topic\x18\x01 \x01(\t\x12\x18\n\x10service_accounts\x18\x02 \x03(\t\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\"\xa6\x01\n\x1dListEntitlementChangesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'cloudchannel.googleapis.com/Entitlement\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x82\x01\n\x1eListEntitlementChangesResponse\x12G\n\x13\x65ntitlement_changes\x18\x01 \x03(\x0b\x32*.google.cloud.channel.v1.EntitlementChange\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\xe1M\n\x13\x43loudChannelService\x12\xd4\x01\n\rListCustomers\x12-.google.cloud.channel.v1.ListCustomersRequest\x1a..google.cloud.channel.v1.ListCustomersResponse\"d\x82\xd3\xe4\x93\x02^\x12!/v1/{parent=accounts/*}/customersZ9\x12\x37/v1/{parent=accounts/*/channelPartnerLinks/*}/customers\x12\xca\x01\n\x0bGetCustomer\x12+.google.cloud.channel.v1.GetCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"k\x82\xd3\xe4\x93\x02^\x12!/v1/{name=accounts/*/customers/*}Z9\x12\x37/v1/{name=accounts/*/channelPartnerLinks/*/customers/*}\xda\x41\x04name\x12\xe8\x01\n\x1f\x43heckCloudIdentityAccountsExist\x12?.google.cloud.channel.v1.CheckCloudIdentityAccountsExistRequest\x1a@.google.cloud.channel.v1.CheckCloudIdentityAccountsExistResponse\"B\x82\xd3\xe4\x93\x02<\"7/v1/{parent=accounts/*}:checkCloudIdentityAccountsExist:\x01*\x12\xdd\x01\n\x0e\x43reateCustomer\x12..google.cloud.channel.v1.CreateCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"x\x82\xd3\xe4\x93\x02r\"!/v1/{parent=accounts/*}/customers:\x08\x63ustomerZC\"7/v1/{parent=accounts/*/channelPartnerLinks/*}/customers:\x08\x63ustomer\x12\xf1\x01\n\x0eUpdateCustomer\x12..google.cloud.channel.v1.UpdateCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"\x8b\x01\x82\xd3\xe4\x93\x02\x84\x01\x32*/v1/{customer.name=accounts/*/customers/*}:\x08\x63ustomerZL2@/v1/{customer.name=accounts/*/channelPartnerLinks/*/customers/*}:\x08\x63ustomer\x12\xc5\x01\n\x0e\x44\x65leteCustomer\x12..google.cloud.channel.v1.DeleteCustomerRequest\x1a\x16.google.protobuf.Empty\"k\x82\xd3\xe4\x93\x02^*!/v1/{name=accounts/*/customers/*}Z9*7/v1/{name=accounts/*/channelPartnerLinks/*/customers/*}\xda\x41\x04name\x12\xdd\x01\n\x0eImportCustomer\x12..google.cloud.channel.v1.ImportCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"x\x82\xd3\xe4\x93\x02r\"(/v1/{parent=accounts/*}/customers:import:\x01*ZC\">/v1/{parent=accounts/*/channelPartnerLinks/*}/customers:import:\x01*\x12\xd8\x01\n\x16ProvisionCloudIdentity\x12\x36.google.cloud.channel.v1.ProvisionCloudIdentityRequest\x1a\x1d.google.longrunning.Operation\"g\x82\xd3\xe4\x93\x02\x41\"</v1/{customer=accounts/*/customers/*}:provisionCloudIdentity:\x01*\xca\x41\x1d\n\x08\x43ustomer\x12\x11OperationMetadata\x12\xb1\x01\n\x10ListEntitlements\x12\x30.google.cloud.channel.v1.ListEntitlementsRequest\x1a\x31.google.cloud.channel.v1.ListEntitlementsResponse\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=accounts/*/customers/*}/entitlements\x12\xbc\x01\n\x14ListTransferableSkus\x12\x34.google.cloud.channel.v1.ListTransferableSkusRequest\x1a\x35.google.cloud.channel.v1.ListTransferableSkusResponse\"7\x82\xd3\xe4\x93\x02\x31\",/v1/{parent=accounts/*}:listTransferableSkus:\x01*\x12\xc4\x01\n\x16ListTransferableOffers\x12\x36.google.cloud.channel.v1.ListTransferableOffersRequest\x1a\x37.google.cloud.channel.v1.ListTransferableOffersResponse\"9\x82\xd3\xe4\x93\x02\x33\"./v1/{parent=accounts/*}:listTransferableOffers:\x01*\x12\xa0\x01\n\x0eGetEntitlement\x12..google.cloud.channel.v1.GetEntitlementRequest\x1a$.google.cloud.channel.v1.Entitlement\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=accounts/*/customers/*/entitlements/*}\x12\xc5\x01\n\x11\x43reateEntitlement\x12\x31.google.cloud.channel.v1.CreateEntitlementRequest\x1a\x1d.google.longrunning.Operation\"^\x82\xd3\xe4\x93\x02\x35\"0/v1/{parent=accounts/*/customers/*}/entitlements:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xd4\x01\n\x10\x43hangeParameters\x12\x30.google.cloud.channel.v1.ChangeParametersRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02\x46\"A/v1/{name=accounts/*/customers/*/entitlements/*}:changeParameters:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xe3\x01\n\x15\x43hangeRenewalSettings\x12\x35.google.cloud.channel.v1.ChangeRenewalSettingsRequest\x1a\x1d.google.longrunning.Operation\"t\x82\xd3\xe4\x93\x02K\"F/v1/{name=accounts/*/customers/*/entitlements/*}:changeRenewalSettings:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xc5\x01\n\x0b\x43hangeOffer\x12+.google.cloud.channel.v1.ChangeOfferRequest\x1a\x1d.google.longrunning.Operation\"j\x82\xd3\xe4\x93\x02\x41\"</v1/{name=accounts/*/customers/*/entitlements/*}:changeOffer:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xd4\x01\n\x10StartPaidService\x12\x30.google.cloud.channel.v1.StartPaidServiceRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02\x46\"A/v1/{name=accounts/*/customers/*/entitlements/*}:startPaidService:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xcf\x01\n\x12SuspendEntitlement\x12\x32.google.cloud.channel.v1.SuspendEntitlementRequest\x1a\x1d.google.longrunning.Operation\"f\x82\xd3\xe4\x93\x02=\"8/v1/{name=accounts/*/customers/*/entitlements/*}:suspend:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xd6\x01\n\x11\x43\x61ncelEntitlement\x12\x31.google.cloud.channel.v1.CancelEntitlementRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02<\"7/v1/{name=accounts/*/customers/*/entitlements/*}:cancel:\x01*\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xd2\x01\n\x13\x41\x63tivateEntitlement\x12\x33.google.cloud.channel.v1.ActivateEntitlementRequest\x1a\x1d.google.longrunning.Operation\"g\x82\xd3\xe4\x93\x02>\"9/v1/{name=accounts/*/customers/*/entitlements/*}:activate:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xe4\x01\n\x14TransferEntitlements\x12\x34.google.cloud.channel.v1.TransferEntitlementsRequest\x1a\x1d.google.longrunning.Operation\"w\x82\xd3\xe4\x93\x02=\"8/v1/{parent=accounts/*/customers/*}:transferEntitlements:\x01*\xca\x41\x31\n\x1cTransferEntitlementsResponse\x12\x11OperationMetadata\x12\xf5\x01\n\x1cTransferEntitlementsToGoogle\x12<.google.cloud.channel.v1.TransferEntitlementsToGoogleRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02\x45\"@/v1/{parent=accounts/*/customers/*}:transferEntitlementsToGoogle:\x01*\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xc1\x01\n\x17ListChannelPartnerLinks\x12\x37.google.cloud.channel.v1.ListChannelPartnerLinksRequest\x1a\x38.google.cloud.channel.v1.ListChannelPartnerLinksResponse\"3\x82\xd3\xe4\x93\x02-\x12+/v1/{parent=accounts/*}/channelPartnerLinks\x12\xb0\x01\n\x15GetChannelPartnerLink\x12\x35.google.cloud.channel.v1.GetChannelPartnerLinkRequest\x1a+.google.cloud.channel.v1.ChannelPartnerLink\"3\x82\xd3\xe4\x93\x02-\x12+/v1/{name=accounts/*/channelPartnerLinks/*}\x12\xcc\x01\n\x18\x43reateChannelPartnerLink\x12\x38.google.cloud.channel.v1.CreateChannelPartnerLinkRequest\x1a+.google.cloud.channel.v1.ChannelPartnerLink\"I\x82\xd3\xe4\x93\x02\x43\"+/v1/{parent=accounts/*}/channelPartnerLinks:\x14\x63hannel_partner_link\x12\xb9\x01\n\x18UpdateChannelPartnerLink\x12\x38.google.cloud.channel.v1.UpdateChannelPartnerLinkRequest\x1a+.google.cloud.channel.v1.ChannelPartnerLink\"6\x82\xd3\xe4\x93\x02\x30\x32+/v1/{name=accounts/*/channelPartnerLinks/*}:\x01*\x12\xd7\x01\n\x1aGetCustomerRepricingConfig\x12:.google.cloud.channel.v1.GetCustomerRepricingConfigRequest\x1a\x30.google.cloud.channel.v1.CustomerRepricingConfig\"K\x82\xd3\xe4\x93\x02>\x12</v1/{name=accounts/*/customers/*/customerRepricingConfigs/*}\xda\x41\x04name\x12\xea\x01\n\x1cListCustomerRepricingConfigs\x12<.google.cloud.channel.v1.ListCustomerRepricingConfigsRequest\x1a=.google.cloud.channel.v1.ListCustomerRepricingConfigsResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1/{parent=accounts/*/customers/*}/customerRepricingConfigs\xda\x41\x06parent\x12\x95\x02\n\x1d\x43reateCustomerRepricingConfig\x12=.google.cloud.channel.v1.CreateCustomerRepricingConfigRequest\x1a\x30.google.cloud.channel.v1.CustomerRepricingConfig\"\x82\x01\x82\xd3\xe4\x93\x02Y\"</v1/{parent=accounts/*/customers/*}/customerRepricingConfigs:\x19\x63ustomer_repricing_config\xda\x41 parent,customer_repricing_config\x12\xa8\x02\n\x1dUpdateCustomerRepricingConfig\x12=.google.cloud.channel.v1.UpdateCustomerRepricingConfigRequest\x1a\x30.google.cloud.channel.v1.CustomerRepricingConfig\"\x95\x01\x82\xd3\xe4\x93\x02s2V/v1/{customer_repricing_config.name=accounts/*/customers/*/customerRepricingConfigs/*}:\x19\x63ustomer_repricing_config\xda\x41\x19\x63ustomer_repricing_config\x12\xc3\x01\n\x1d\x44\x65leteCustomerRepricingConfig\x12=.google.cloud.channel.v1.DeleteCustomerRepricingConfigRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02>*</v1/{name=accounts/*/customers/*/customerRepricingConfigs/*}\xda\x41\x04name\x12\xf9\x01\n GetChannelPartnerRepricingConfig\x12@.google.cloud.channel.v1.GetChannelPartnerRepricingConfigRequest\x1a\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\"[\x82\xd3\xe4\x93\x02N\x12L/v1/{name=accounts/*/channelPartnerLinks/*/channelPartnerRepricingConfigs/*}\xda\x41\x04name\x12\x8c\x02\n\"ListChannelPartnerRepricingConfigs\x12\x42.google.cloud.channel.v1.ListChannelPartnerRepricingConfigsRequest\x1a\x43.google.cloud.channel.v1.ListChannelPartnerRepricingConfigsResponse\"]\x82\xd3\xe4\x93\x02N\x12L/v1/{parent=accounts/*/channelPartnerLinks/*}/channelPartnerRepricingConfigs\xda\x41\x06parent\x12\xc5\x02\n#CreateChannelPartnerRepricingConfig\x12\x43.google.cloud.channel.v1.CreateChannelPartnerRepricingConfigRequest\x1a\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\"\xa0\x01\x82\xd3\xe4\x93\x02p\"L/v1/{parent=accounts/*/channelPartnerLinks/*}/channelPartnerRepricingConfigs: channel_partner_repricing_config\xda\x41\'parent,channel_partner_repricing_config\x12\xe0\x02\n#UpdateChannelPartnerRepricingConfig\x12\x43.google.cloud.channel.v1.UpdateChannelPartnerRepricingConfigRequest\x1a\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\"\xbb\x01\x82\xd3\xe4\x93\x02\x91\x01\x32m/v1/{channel_partner_repricing_config.name=accounts/*/channelPartnerLinks/*/channelPartnerRepricingConfigs/*}: channel_partner_repricing_config\xda\x41 channel_partner_repricing_config\x12\xdf\x01\n#DeleteChannelPartnerRepricingConfig\x12\x43.google.cloud.channel.v1.DeleteChannelPartnerRepricingConfigRequest\x1a\x16.google.protobuf.Empty\"[\x82\xd3\xe4\x93\x02N*L/v1/{name=accounts/*/channelPartnerLinks/*/channelPartnerRepricingConfigs/*}\xda\x41\x04name\x12\xa7\x01\n\x0bLookupOffer\x12+.google.cloud.channel.v1.LookupOfferRequest\x1a\x1e.google.cloud.channel.v1.Offer\"K\x82\xd3\xe4\x93\x02\x45\x12\x43/v1/{entitlement=accounts/*/customers/*/entitlements/*}:lookupOffer\x12\x81\x01\n\x0cListProducts\x12,.google.cloud.channel.v1.ListProductsRequest\x1a-.google.cloud.channel.v1.ListProductsResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/v1/products\x12\x85\x01\n\x08ListSkus\x12(.google.cloud.channel.v1.ListSkusRequest\x1a).google.cloud.channel.v1.ListSkusResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/v1/{parent=products/*}/skus\x12\x8d\x01\n\nListOffers\x12*.google.cloud.channel.v1.ListOffersRequest\x1a+.google.cloud.channel.v1.ListOffersResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/v1/{parent=accounts/*}/offers\x12\xc3\x01\n\x13ListPurchasableSkus\x12\x33.google.cloud.channel.v1.ListPurchasableSkusRequest\x1a\x34.google.cloud.channel.v1.ListPurchasableSkusResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/v1/{customer=accounts/*/customers/*}:listPurchasableSkus\x12\xcb\x01\n\x15ListPurchasableOffers\x12\x35.google.cloud.channel.v1.ListPurchasableOffersRequest\x1a\x36.google.cloud.channel.v1.ListPurchasableOffersResponse\"C\x82\xd3\xe4\x93\x02=\x12;/v1/{customer=accounts/*/customers/*}:listPurchasableOffers\x12\xab\x01\n\x12RegisterSubscriber\x12\x32.google.cloud.channel.v1.RegisterSubscriberRequest\x1a\x33.google.cloud.channel.v1.RegisterSubscriberResponse\",\x82\xd3\xe4\x93\x02&\"!/v1/{account=accounts/*}:register:\x01*\x12\xb3\x01\n\x14UnregisterSubscriber\x12\x34.google.cloud.channel.v1.UnregisterSubscriberRequest\x1a\x35.google.cloud.channel.v1.UnregisterSubscriberResponse\".\x82\xd3\xe4\x93\x02(\"#/v1/{account=accounts/*}:unregister:\x01*\x12\xa6\x01\n\x0fListSubscribers\x12/.google.cloud.channel.v1.ListSubscribersRequest\x1a\x30.google.cloud.channel.v1.ListSubscribersResponse\"0\x82\xd3\xe4\x93\x02*\x12(/v1/{account=accounts/*}:listSubscribers\x12\xe5\x01\n\x16ListEntitlementChanges\x12\x36.google.cloud.channel.v1.ListEntitlementChangesRequest\x1a\x37.google.cloud.channel.v1.ListEntitlementChangesResponse\"Z\x82\xd3\xe4\x93\x02K\x12I/v1/{parent=accounts/*/customers/*/entitlements/*}:listEntitlementChanges\xda\x41\x06parent\x1aK\xca\x41\x1b\x63loudchannel.googleapis.com\xd2\x41*https://www.googleapis.com/auth/apps.orderBd\n\x1b\x63om.google.cloud.channel.v1B\x0cServiceProtoP\x01Z5cloud.google.com/go/channel/apiv1/channelpb;channelpbb\x06proto3"
25
+ descriptor_data = "\n%google/cloud/channel/v1/service.proto\x12\x17google.cloud.channel.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x33google/cloud/channel/v1/channel_partner_links.proto\x1a$google/cloud/channel/v1/common.proto\x1a\'google/cloud/channel/v1/customers.proto\x1a\x31google/cloud/channel/v1/entitlement_changes.proto\x1a*google/cloud/channel/v1/entitlements.proto\x1a$google/cloud/channel/v1/offers.proto\x1a(google/cloud/channel/v1/operations.proto\x1a&google/cloud/channel/v1/products.proto\x1a\'google/cloud/channel/v1/repricing.proto\x1a#google/longrunning/operations.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\"R\n&CheckCloudIdentityAccountsExistRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06\x64omain\x18\x02 \x01(\tB\x03\xe0\x41\x02\"z\n\x1c\x43loudIdentityCustomerAccount\x12\x10\n\x08\x65xisting\x18\x01 \x01(\x08\x12\r\n\x05owned\x18\x02 \x01(\x08\x12\x15\n\rcustomer_name\x18\x03 \x01(\t\x12\"\n\x1a\x63ustomer_cloud_identity_id\x18\x04 \x01(\t\"\x81\x01\n\'CheckCloudIdentityAccountsExistResponse\x12V\n\x17\x63loud_identity_accounts\x18\x01 \x03(\x0b\x32\x35.google.cloud.channel.v1.CloudIdentityCustomerAccount\"q\n\x14ListCustomersRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"f\n\x15ListCustomersResponse\x12\x34\n\tcustomers\x18\x01 \x03(\x0b\x32!.google.cloud.channel.v1.Customer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"P\n\x12GetCustomerRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\"f\n\x15\x43reateCustomerRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x38\n\x08\x63ustomer\x18\x02 \x01(\x0b\x32!.google.cloud.channel.v1.CustomerB\x03\xe0\x41\x02\"\x82\x01\n\x15UpdateCustomerRequest\x12\x38\n\x08\x63ustomer\x18\x02 \x01(\x0b\x32!.google.cloud.channel.v1.CustomerB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"S\n\x15\x44\x65leteCustomerRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\"\x96\x02\n\x15ImportCustomerRequest\x12\x15\n\x06\x64omain\x18\x02 \x01(\tB\x03\xe0\x41\x02H\x00\x12 \n\x11\x63loud_identity_id\x18\x03 \x01(\tB\x03\xe0\x41\x02H\x00\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nauth_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12 \n\x13overwrite_if_exists\x18\x05 \x01(\x08\x42\x03\xe0\x41\x02\x12\x1f\n\x12\x63hannel_partner_id\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12>\n\x08\x63ustomer\x18\x07 \x01(\tB,\xe0\x41\x01\xfa\x41&\n$cloudchannel.googleapis.com/CustomerB\x13\n\x11\x63ustomer_identity\"\xf1\x01\n\x1dProvisionCloudIdentityRequest\x12>\n\x08\x63ustomer\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12G\n\x13\x63loud_identity_info\x18\x02 \x01(\x0b\x32*.google.cloud.channel.v1.CloudIdentityInfo\x12\x30\n\x04user\x18\x03 \x01(\x0b\x32\".google.cloud.channel.v1.AdminUser\x12\x15\n\rvalidate_only\x18\x04 \x01(\x08\"\x88\x01\n\x17ListEntitlementsRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"o\n\x18ListEntitlementsResponse\x12:\n\x0c\x65ntitlements\x18\x01 \x03(\x0b\x32$.google.cloud.channel.v1.Entitlement\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xe0\x01\n\x1bListTransferableSkusRequest\x12\x1b\n\x11\x63loud_identity_id\x18\x04 \x01(\tH\x00\x12\x17\n\rcustomer_name\x18\x07 \x01(\tH\x00\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x17\n\nauth_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x15\n\rlanguage_code\x18\x06 \x01(\tB\x1f\n\x1dtransferred_customer_identity\"|\n\x1cListTransferableSkusResponse\x12\x43\n\x11transferable_skus\x18\x01 \x03(\x0b\x32(.google.cloud.channel.v1.TransferableSku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xe0\x01\n\x1dListTransferableOffersRequest\x12\x1b\n\x11\x63loud_identity_id\x18\x04 \x01(\tH\x00\x12\x17\n\rcustomer_name\x18\x05 \x01(\tH\x00\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x10\n\x03sku\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x1a\n\rlanguage_code\x18\x07 \x01(\tB\x03\xe0\x41\x01\x42\x1f\n\x1dtransferred_customer_identity\"\x82\x01\n\x1eListTransferableOffersResponse\x12G\n\x13transferable_offers\x18\x01 \x03(\x0b\x32*.google.cloud.channel.v1.TransferableOffer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"B\n\x11TransferableOffer\x12-\n\x05offer\x18\x01 \x01(\x0b\x32\x1e.google.cloud.channel.v1.Offer\"V\n\x15GetEntitlementRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'cloudchannel.googleapis.com/Entitlement\"\xaa\x01\n\x1eListChannelPartnerLinksRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x42\n\x04view\x18\x04 \x01(\x0e\x32/.google.cloud.channel.v1.ChannelPartnerLinkViewB\x03\xe0\x41\x01\"\x86\x01\n\x1fListChannelPartnerLinksResponse\x12J\n\x15\x63hannel_partner_links\x18\x01 \x03(\x0b\x32+.google.cloud.channel.v1.ChannelPartnerLink\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"u\n\x1cGetChannelPartnerLinkRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x42\n\x04view\x18\x02 \x01(\x0e\x32/.google.cloud.channel.v1.ChannelPartnerLinkViewB\x03\xe0\x41\x01\"\x86\x01\n\x1f\x43reateChannelPartnerLinkRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12N\n\x14\x63hannel_partner_link\x18\x02 \x01(\x0b\x32+.google.cloud.channel.v1.ChannelPartnerLinkB\x03\xe0\x41\x02\"\xba\x01\n\x1fUpdateChannelPartnerLinkRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12N\n\x14\x63hannel_partner_link\x18\x02 \x01(\x0b\x32+.google.cloud.channel.v1.ChannelPartnerLinkB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x02\"n\n!GetCustomerRepricingConfigRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3cloudchannel.googleapis.com/CustomerRepricingConfig\"\xa9\x01\n#ListCustomerRepricingConfigsRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n$ListCustomerRepricingConfigsResponse\x12T\n\x1a\x63ustomer_repricing_configs\x18\x01 \x03(\x0b\x32\x30.google.cloud.channel.v1.CustomerRepricingConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xbe\x01\n$CreateCustomerRepricingConfigRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12X\n\x19\x63ustomer_repricing_config\x18\x02 \x01(\x0b\x32\x30.google.cloud.channel.v1.CustomerRepricingConfigB\x03\xe0\x41\x02\"\x80\x01\n$UpdateCustomerRepricingConfigRequest\x12X\n\x19\x63ustomer_repricing_config\x18\x01 \x01(\x0b\x32\x30.google.cloud.channel.v1.CustomerRepricingConfigB\x03\xe0\x41\x02\"q\n$DeleteCustomerRepricingConfigRequest\x12I\n\x04name\x18\x01 \x01(\tB;\xe0\x41\x02\xfa\x41\x35\n3cloudchannel.googleapis.com/CustomerRepricingConfig\"z\n\'GetChannelPartnerRepricingConfigRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9cloudchannel.googleapis.com/ChannelPartnerRepricingConfig\"\xb9\x01\n)ListChannelPartnerRepricingConfigsRequest\x12\x46\n\x06parent\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.cloudchannel.googleapis.com/ChannelPartnerLink\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xa8\x01\n*ListChannelPartnerRepricingConfigsResponse\x12\x61\n!channel_partner_repricing_configs\x18\x01 \x03(\x0b\x32\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xdb\x01\n*CreateChannelPartnerRepricingConfigRequest\x12\x46\n\x06parent\x18\x01 \x01(\tB6\xe0\x41\x02\xfa\x41\x30\n.cloudchannel.googleapis.com/ChannelPartnerLink\x12\x65\n channel_partner_repricing_config\x18\x02 \x01(\x0b\x32\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfigB\x03\xe0\x41\x02\"\x93\x01\n*UpdateChannelPartnerRepricingConfigRequest\x12\x65\n channel_partner_repricing_config\x18\x01 \x01(\x0b\x32\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfigB\x03\xe0\x41\x02\"}\n*DeleteChannelPartnerRepricingConfigRequest\x12O\n\x04name\x18\x01 \x01(\tBA\xe0\x41\x02\xfa\x41;\n9cloudchannel.googleapis.com/ChannelPartnerRepricingConfig\"\\\n\x14ListSkuGroupsRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x90\x01\n\x1fListSkuGroupBillableSkusRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/SkuGroup\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"g\n\x15ListSkuGroupsResponse\x12\x35\n\nsku_groups\x18\x01 \x03(\x0b\x32!.google.cloud.channel.v1.SkuGroup\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"x\n ListSkuGroupBillableSkusResponse\x12;\n\rbillable_skus\x18\x01 \x03(\x0b\x32$.google.cloud.channel.v1.BillableSku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x83\x01\n\x08SkuGroup\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t:S\xea\x41P\n$cloudchannel.googleapis.com/SkuGroup\x12(accounts/{account}/skuGroups/{sku_group}\"c\n\x0b\x42illableSku\x12\x0b\n\x03sku\x18\x01 \x01(\t\x12\x18\n\x10sku_display_name\x18\x02 \x01(\t\x12\x0f\n\x07service\x18\x03 \x01(\t\x12\x1c\n\x14service_display_name\x18\x04 \x01(\t\"\xb1\x01\n\x18\x43reateEntitlementRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12>\n\x0b\x65ntitlement\x18\x02 \x01(\x0b\x32$.google.cloud.channel.v1.EntitlementB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xa0\x01\n\x1bTransferEntitlementsRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12?\n\x0c\x65ntitlements\x18\x02 \x03(\x0b\x32$.google.cloud.channel.v1.EntitlementB\x03\xe0\x41\x02\x12\x12\n\nauth_token\x18\x04 \x01(\t\x12\x17\n\nrequest_id\x18\x06 \x01(\tB\x03\xe0\x41\x01\"Z\n\x1cTransferEntitlementsResponse\x12:\n\x0c\x65ntitlements\x18\x01 \x03(\x0b\x32$.google.cloud.channel.v1.Entitlement\"\x94\x01\n#TransferEntitlementsToGoogleRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12?\n\x0c\x65ntitlements\x18\x02 \x03(\x0b\x32$.google.cloud.channel.v1.EntitlementB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\xa2\x01\n\x17\x43hangeParametersRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12;\n\nparameters\x18\x02 \x03(\x0b\x32\".google.cloud.channel.v1.ParameterB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1e\n\x11purchase_order_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x93\x01\n\x1c\x43hangeRenewalSettingsRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12G\n\x10renewal_settings\x18\x04 \x01(\x0b\x32(.google.cloud.channel.v1.RenewalSettingsB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\xd7\x01\n\x12\x43hangeOfferRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x38\n\x05offer\x18\x02 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!cloudchannel.googleapis.com/Offer\x12;\n\nparameters\x18\x03 \x03(\x0b\x32\".google.cloud.channel.v1.ParameterB\x03\xe0\x41\x01\x12\x1e\n\x11purchase_order_id\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x17\n\nrequest_id\x18\x06 \x01(\tB\x03\xe0\x41\x01\"E\n\x17StartPaidServiceRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"F\n\x18\x43\x61ncelEntitlementRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"G\n\x19SuspendEntitlementRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"H\n\x1a\x41\x63tivateEntitlementRequest\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"Z\n\x12LookupOfferRequest\x12\x44\n\x0b\x65ntitlement\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'cloudchannel.googleapis.com/Entitlement\"x\n\x13ListProductsRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x04 \x01(\tB\x03\xe0\x41\x01\"c\n\x14ListProductsResponse\x12\x32\n\x08products\x18\x01 \x03(\x0b\x32 .google.cloud.channel.v1.Product\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb1\x01\n\x0fListSkusRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#cloudchannel.googleapis.com/Product\x12\x14\n\x07\x61\x63\x63ount\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x03 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x05 \x01(\tB\x03\xe0\x41\x01\"W\n\x10ListSkusResponse\x12*\n\x04skus\x18\x01 \x03(\x0b\x32\x1c.google.cloud.channel.v1.Sku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xab\x01\n\x11ListOffersRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1f\n\x12show_future_offers\x18\x07 \x01(\x08\x42\x03\xe0\x41\x01\"]\n\x12ListOffersResponse\x12.\n\x06offers\x18\x01 \x03(\x0b\x32\x1e.google.cloud.channel.v1.Offer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xb6\x05\n\x1aListPurchasableSkusRequest\x12t\n\x1b\x63reate_entitlement_purchase\x18\x02 \x01(\x0b\x32M.google.cloud.channel.v1.ListPurchasableSkusRequest.CreateEntitlementPurchaseH\x00\x12h\n\x15\x63hange_offer_purchase\x18\x03 \x01(\x0b\x32G.google.cloud.channel.v1.ListPurchasableSkusRequest.ChangeOfferPurchaseH\x00\x12>\n\x08\x63ustomer\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x06 \x01(\tB\x03\xe0\x41\x01\x1a\x31\n\x19\x43reateEntitlementPurchase\x12\x14\n\x07product\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a\xe4\x01\n\x13\x43hangeOfferPurchase\x12\x18\n\x0b\x65ntitlement\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12l\n\x0b\x63hange_type\x18\x02 \x01(\x0e\x32R.google.cloud.channel.v1.ListPurchasableSkusRequest.ChangeOfferPurchase.ChangeTypeB\x03\xe0\x41\x02\"E\n\nChangeType\x12\x1b\n\x17\x43HANGE_TYPE_UNSPECIFIED\x10\x00\x12\x0b\n\x07UPGRADE\x10\x01\x12\r\n\tDOWNGRADE\x10\x02\x42\x11\n\x0fpurchase_option\"y\n\x1bListPurchasableSkusResponse\x12\x41\n\x10purchasable_skus\x18\x01 \x03(\x0b\x32\'.google.cloud.channel.v1.PurchasableSku\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\";\n\x0ePurchasableSku\x12)\n\x03sku\x18\x01 \x01(\x0b\x32\x1c.google.cloud.channel.v1.Sku\"\x98\x04\n\x1cListPurchasableOffersRequest\x12v\n\x1b\x63reate_entitlement_purchase\x18\x02 \x01(\x0b\x32O.google.cloud.channel.v1.ListPurchasableOffersRequest.CreateEntitlementPurchaseH\x00\x12j\n\x15\x63hange_offer_purchase\x18\x03 \x01(\x0b\x32I.google.cloud.channel.v1.ListPurchasableOffersRequest.ChangeOfferPurchaseH\x00\x12>\n\x08\x63ustomer\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$cloudchannel.googleapis.com/Customer\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rlanguage_code\x18\x06 \x01(\tB\x03\xe0\x41\x01\x1a-\n\x19\x43reateEntitlementPurchase\x12\x10\n\x03sku\x18\x01 \x01(\tB\x03\xe0\x41\x02\x1a\x45\n\x13\x43hangeOfferPurchase\x12\x18\n\x0b\x65ntitlement\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x14\n\x07new_sku\x18\x02 \x01(\tB\x03\xe0\x41\x01\x42\x11\n\x0fpurchase_option\"\x7f\n\x1dListPurchasableOffersResponse\x12\x45\n\x12purchasable_offers\x18\x01 \x03(\x0b\x32).google.cloud.channel.v1.PurchasableOffer\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"A\n\x10PurchasableOffer\x12-\n\x05offer\x18\x01 \x01(\x0b\x32\x1e.google.cloud.channel.v1.Offer\"O\n\x19RegisterSubscriberRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0fservice_account\x18\x02 \x01(\tB\x03\xe0\x41\x02\"+\n\x1aRegisterSubscriberResponse\x12\r\n\x05topic\x18\x01 \x01(\t\"Q\n\x1bUnregisterSubscriberRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x1c\n\x0fservice_account\x18\x02 \x01(\tB\x03\xe0\x41\x02\"-\n\x1cUnregisterSubscriberResponse\x12\r\n\x05topic\x18\x01 \x01(\t\"_\n\x16ListSubscribersRequest\x12\x14\n\x07\x61\x63\x63ount\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\"[\n\x17ListSubscribersResponse\x12\r\n\x05topic\x18\x01 \x01(\t\x12\x18\n\x10service_accounts\x18\x02 \x03(\t\x12\x17\n\x0fnext_page_token\x18\x03 \x01(\t\"\xa6\x01\n\x1dListEntitlementChangesRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe0\x41\x02\xfa\x41)\n\'cloudchannel.googleapis.com/Entitlement\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x82\x01\n\x1eListEntitlementChangesResponse\x12G\n\x13\x65ntitlement_changes\x18\x01 \x03(\x0b\x32*.google.cloud.channel.v1.EntitlementChange\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\xdbP\n\x13\x43loudChannelService\x12\xd4\x01\n\rListCustomers\x12-.google.cloud.channel.v1.ListCustomersRequest\x1a..google.cloud.channel.v1.ListCustomersResponse\"d\x82\xd3\xe4\x93\x02^\x12!/v1/{parent=accounts/*}/customersZ9\x12\x37/v1/{parent=accounts/*/channelPartnerLinks/*}/customers\x12\xca\x01\n\x0bGetCustomer\x12+.google.cloud.channel.v1.GetCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"k\x82\xd3\xe4\x93\x02^\x12!/v1/{name=accounts/*/customers/*}Z9\x12\x37/v1/{name=accounts/*/channelPartnerLinks/*/customers/*}\xda\x41\x04name\x12\xe8\x01\n\x1f\x43heckCloudIdentityAccountsExist\x12?.google.cloud.channel.v1.CheckCloudIdentityAccountsExistRequest\x1a@.google.cloud.channel.v1.CheckCloudIdentityAccountsExistResponse\"B\x82\xd3\xe4\x93\x02<\"7/v1/{parent=accounts/*}:checkCloudIdentityAccountsExist:\x01*\x12\xdd\x01\n\x0e\x43reateCustomer\x12..google.cloud.channel.v1.CreateCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"x\x82\xd3\xe4\x93\x02r\"!/v1/{parent=accounts/*}/customers:\x08\x63ustomerZC\"7/v1/{parent=accounts/*/channelPartnerLinks/*}/customers:\x08\x63ustomer\x12\xf1\x01\n\x0eUpdateCustomer\x12..google.cloud.channel.v1.UpdateCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"\x8b\x01\x82\xd3\xe4\x93\x02\x84\x01\x32*/v1/{customer.name=accounts/*/customers/*}:\x08\x63ustomerZL2@/v1/{customer.name=accounts/*/channelPartnerLinks/*/customers/*}:\x08\x63ustomer\x12\xc5\x01\n\x0e\x44\x65leteCustomer\x12..google.cloud.channel.v1.DeleteCustomerRequest\x1a\x16.google.protobuf.Empty\"k\x82\xd3\xe4\x93\x02^*!/v1/{name=accounts/*/customers/*}Z9*7/v1/{name=accounts/*/channelPartnerLinks/*/customers/*}\xda\x41\x04name\x12\xdd\x01\n\x0eImportCustomer\x12..google.cloud.channel.v1.ImportCustomerRequest\x1a!.google.cloud.channel.v1.Customer\"x\x82\xd3\xe4\x93\x02r\"(/v1/{parent=accounts/*}/customers:import:\x01*ZC\">/v1/{parent=accounts/*/channelPartnerLinks/*}/customers:import:\x01*\x12\xd8\x01\n\x16ProvisionCloudIdentity\x12\x36.google.cloud.channel.v1.ProvisionCloudIdentityRequest\x1a\x1d.google.longrunning.Operation\"g\x82\xd3\xe4\x93\x02\x41\"</v1/{customer=accounts/*/customers/*}:provisionCloudIdentity:\x01*\xca\x41\x1d\n\x08\x43ustomer\x12\x11OperationMetadata\x12\xb1\x01\n\x10ListEntitlements\x12\x30.google.cloud.channel.v1.ListEntitlementsRequest\x1a\x31.google.cloud.channel.v1.ListEntitlementsResponse\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=accounts/*/customers/*}/entitlements\x12\xbc\x01\n\x14ListTransferableSkus\x12\x34.google.cloud.channel.v1.ListTransferableSkusRequest\x1a\x35.google.cloud.channel.v1.ListTransferableSkusResponse\"7\x82\xd3\xe4\x93\x02\x31\",/v1/{parent=accounts/*}:listTransferableSkus:\x01*\x12\xc4\x01\n\x16ListTransferableOffers\x12\x36.google.cloud.channel.v1.ListTransferableOffersRequest\x1a\x37.google.cloud.channel.v1.ListTransferableOffersResponse\"9\x82\xd3\xe4\x93\x02\x33\"./v1/{parent=accounts/*}:listTransferableOffers:\x01*\x12\xa0\x01\n\x0eGetEntitlement\x12..google.cloud.channel.v1.GetEntitlementRequest\x1a$.google.cloud.channel.v1.Entitlement\"8\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{name=accounts/*/customers/*/entitlements/*}\x12\xc5\x01\n\x11\x43reateEntitlement\x12\x31.google.cloud.channel.v1.CreateEntitlementRequest\x1a\x1d.google.longrunning.Operation\"^\x82\xd3\xe4\x93\x02\x35\"0/v1/{parent=accounts/*/customers/*}/entitlements:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xd4\x01\n\x10\x43hangeParameters\x12\x30.google.cloud.channel.v1.ChangeParametersRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02\x46\"A/v1/{name=accounts/*/customers/*/entitlements/*}:changeParameters:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xe3\x01\n\x15\x43hangeRenewalSettings\x12\x35.google.cloud.channel.v1.ChangeRenewalSettingsRequest\x1a\x1d.google.longrunning.Operation\"t\x82\xd3\xe4\x93\x02K\"F/v1/{name=accounts/*/customers/*/entitlements/*}:changeRenewalSettings:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xc5\x01\n\x0b\x43hangeOffer\x12+.google.cloud.channel.v1.ChangeOfferRequest\x1a\x1d.google.longrunning.Operation\"j\x82\xd3\xe4\x93\x02\x41\"</v1/{name=accounts/*/customers/*/entitlements/*}:changeOffer:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xd4\x01\n\x10StartPaidService\x12\x30.google.cloud.channel.v1.StartPaidServiceRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02\x46\"A/v1/{name=accounts/*/customers/*/entitlements/*}:startPaidService:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xcf\x01\n\x12SuspendEntitlement\x12\x32.google.cloud.channel.v1.SuspendEntitlementRequest\x1a\x1d.google.longrunning.Operation\"f\x82\xd3\xe4\x93\x02=\"8/v1/{name=accounts/*/customers/*/entitlements/*}:suspend:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xd6\x01\n\x11\x43\x61ncelEntitlement\x12\x31.google.cloud.channel.v1.CancelEntitlementRequest\x1a\x1d.google.longrunning.Operation\"o\x82\xd3\xe4\x93\x02<\"7/v1/{name=accounts/*/customers/*/entitlements/*}:cancel:\x01*\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xd2\x01\n\x13\x41\x63tivateEntitlement\x12\x33.google.cloud.channel.v1.ActivateEntitlementRequest\x1a\x1d.google.longrunning.Operation\"g\x82\xd3\xe4\x93\x02>\"9/v1/{name=accounts/*/customers/*/entitlements/*}:activate:\x01*\xca\x41 \n\x0b\x45ntitlement\x12\x11OperationMetadata\x12\xe4\x01\n\x14TransferEntitlements\x12\x34.google.cloud.channel.v1.TransferEntitlementsRequest\x1a\x1d.google.longrunning.Operation\"w\x82\xd3\xe4\x93\x02=\"8/v1/{parent=accounts/*/customers/*}:transferEntitlements:\x01*\xca\x41\x31\n\x1cTransferEntitlementsResponse\x12\x11OperationMetadata\x12\xf5\x01\n\x1cTransferEntitlementsToGoogle\x12<.google.cloud.channel.v1.TransferEntitlementsToGoogleRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02\x45\"@/v1/{parent=accounts/*/customers/*}:transferEntitlementsToGoogle:\x01*\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xc1\x01\n\x17ListChannelPartnerLinks\x12\x37.google.cloud.channel.v1.ListChannelPartnerLinksRequest\x1a\x38.google.cloud.channel.v1.ListChannelPartnerLinksResponse\"3\x82\xd3\xe4\x93\x02-\x12+/v1/{parent=accounts/*}/channelPartnerLinks\x12\xb0\x01\n\x15GetChannelPartnerLink\x12\x35.google.cloud.channel.v1.GetChannelPartnerLinkRequest\x1a+.google.cloud.channel.v1.ChannelPartnerLink\"3\x82\xd3\xe4\x93\x02-\x12+/v1/{name=accounts/*/channelPartnerLinks/*}\x12\xcc\x01\n\x18\x43reateChannelPartnerLink\x12\x38.google.cloud.channel.v1.CreateChannelPartnerLinkRequest\x1a+.google.cloud.channel.v1.ChannelPartnerLink\"I\x82\xd3\xe4\x93\x02\x43\"+/v1/{parent=accounts/*}/channelPartnerLinks:\x14\x63hannel_partner_link\x12\xb9\x01\n\x18UpdateChannelPartnerLink\x12\x38.google.cloud.channel.v1.UpdateChannelPartnerLinkRequest\x1a+.google.cloud.channel.v1.ChannelPartnerLink\"6\x82\xd3\xe4\x93\x02\x30\x32+/v1/{name=accounts/*/channelPartnerLinks/*}:\x01*\x12\xd7\x01\n\x1aGetCustomerRepricingConfig\x12:.google.cloud.channel.v1.GetCustomerRepricingConfigRequest\x1a\x30.google.cloud.channel.v1.CustomerRepricingConfig\"K\x82\xd3\xe4\x93\x02>\x12</v1/{name=accounts/*/customers/*/customerRepricingConfigs/*}\xda\x41\x04name\x12\xea\x01\n\x1cListCustomerRepricingConfigs\x12<.google.cloud.channel.v1.ListCustomerRepricingConfigsRequest\x1a=.google.cloud.channel.v1.ListCustomerRepricingConfigsResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1/{parent=accounts/*/customers/*}/customerRepricingConfigs\xda\x41\x06parent\x12\x95\x02\n\x1d\x43reateCustomerRepricingConfig\x12=.google.cloud.channel.v1.CreateCustomerRepricingConfigRequest\x1a\x30.google.cloud.channel.v1.CustomerRepricingConfig\"\x82\x01\x82\xd3\xe4\x93\x02Y\"</v1/{parent=accounts/*/customers/*}/customerRepricingConfigs:\x19\x63ustomer_repricing_config\xda\x41 parent,customer_repricing_config\x12\xa8\x02\n\x1dUpdateCustomerRepricingConfig\x12=.google.cloud.channel.v1.UpdateCustomerRepricingConfigRequest\x1a\x30.google.cloud.channel.v1.CustomerRepricingConfig\"\x95\x01\x82\xd3\xe4\x93\x02s2V/v1/{customer_repricing_config.name=accounts/*/customers/*/customerRepricingConfigs/*}:\x19\x63ustomer_repricing_config\xda\x41\x19\x63ustomer_repricing_config\x12\xc3\x01\n\x1d\x44\x65leteCustomerRepricingConfig\x12=.google.cloud.channel.v1.DeleteCustomerRepricingConfigRequest\x1a\x16.google.protobuf.Empty\"K\x82\xd3\xe4\x93\x02>*</v1/{name=accounts/*/customers/*/customerRepricingConfigs/*}\xda\x41\x04name\x12\xf9\x01\n GetChannelPartnerRepricingConfig\x12@.google.cloud.channel.v1.GetChannelPartnerRepricingConfigRequest\x1a\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\"[\x82\xd3\xe4\x93\x02N\x12L/v1/{name=accounts/*/channelPartnerLinks/*/channelPartnerRepricingConfigs/*}\xda\x41\x04name\x12\x8c\x02\n\"ListChannelPartnerRepricingConfigs\x12\x42.google.cloud.channel.v1.ListChannelPartnerRepricingConfigsRequest\x1a\x43.google.cloud.channel.v1.ListChannelPartnerRepricingConfigsResponse\"]\x82\xd3\xe4\x93\x02N\x12L/v1/{parent=accounts/*/channelPartnerLinks/*}/channelPartnerRepricingConfigs\xda\x41\x06parent\x12\xc5\x02\n#CreateChannelPartnerRepricingConfig\x12\x43.google.cloud.channel.v1.CreateChannelPartnerRepricingConfigRequest\x1a\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\"\xa0\x01\x82\xd3\xe4\x93\x02p\"L/v1/{parent=accounts/*/channelPartnerLinks/*}/channelPartnerRepricingConfigs: channel_partner_repricing_config\xda\x41\'parent,channel_partner_repricing_config\x12\xe0\x02\n#UpdateChannelPartnerRepricingConfig\x12\x43.google.cloud.channel.v1.UpdateChannelPartnerRepricingConfigRequest\x1a\x36.google.cloud.channel.v1.ChannelPartnerRepricingConfig\"\xbb\x01\x82\xd3\xe4\x93\x02\x91\x01\x32m/v1/{channel_partner_repricing_config.name=accounts/*/channelPartnerLinks/*/channelPartnerRepricingConfigs/*}: channel_partner_repricing_config\xda\x41 channel_partner_repricing_config\x12\xdf\x01\n#DeleteChannelPartnerRepricingConfig\x12\x43.google.cloud.channel.v1.DeleteChannelPartnerRepricingConfigRequest\x1a\x16.google.protobuf.Empty\"[\x82\xd3\xe4\x93\x02N*L/v1/{name=accounts/*/channelPartnerLinks/*/channelPartnerRepricingConfigs/*}\xda\x41\x04name\x12\xa2\x01\n\rListSkuGroups\x12-.google.cloud.channel.v1.ListSkuGroupsRequest\x1a..google.cloud.channel.v1.ListSkuGroupsResponse\"2\x82\xd3\xe4\x93\x02#\x12!/v1/{parent=accounts/*}/skuGroups\xda\x41\x06parent\x12\xd2\x01\n\x18ListSkuGroupBillableSkus\x12\x38.google.cloud.channel.v1.ListSkuGroupBillableSkusRequest\x1a\x39.google.cloud.channel.v1.ListSkuGroupBillableSkusResponse\"A\x82\xd3\xe4\x93\x02\x32\x12\x30/v1/{parent=accounts/*/skuGroups/*}/billableSkus\xda\x41\x06parent\x12\xa7\x01\n\x0bLookupOffer\x12+.google.cloud.channel.v1.LookupOfferRequest\x1a\x1e.google.cloud.channel.v1.Offer\"K\x82\xd3\xe4\x93\x02\x45\x12\x43/v1/{entitlement=accounts/*/customers/*/entitlements/*}:lookupOffer\x12\x81\x01\n\x0cListProducts\x12,.google.cloud.channel.v1.ListProductsRequest\x1a-.google.cloud.channel.v1.ListProductsResponse\"\x14\x82\xd3\xe4\x93\x02\x0e\x12\x0c/v1/products\x12\x85\x01\n\x08ListSkus\x12(.google.cloud.channel.v1.ListSkusRequest\x1a).google.cloud.channel.v1.ListSkusResponse\"$\x82\xd3\xe4\x93\x02\x1e\x12\x1c/v1/{parent=products/*}/skus\x12\x8d\x01\n\nListOffers\x12*.google.cloud.channel.v1.ListOffersRequest\x1a+.google.cloud.channel.v1.ListOffersResponse\"&\x82\xd3\xe4\x93\x02 \x12\x1e/v1/{parent=accounts/*}/offers\x12\xc3\x01\n\x13ListPurchasableSkus\x12\x33.google.cloud.channel.v1.ListPurchasableSkusRequest\x1a\x34.google.cloud.channel.v1.ListPurchasableSkusResponse\"A\x82\xd3\xe4\x93\x02;\x12\x39/v1/{customer=accounts/*/customers/*}:listPurchasableSkus\x12\xcb\x01\n\x15ListPurchasableOffers\x12\x35.google.cloud.channel.v1.ListPurchasableOffersRequest\x1a\x36.google.cloud.channel.v1.ListPurchasableOffersResponse\"C\x82\xd3\xe4\x93\x02=\x12;/v1/{customer=accounts/*/customers/*}:listPurchasableOffers\x12\xab\x01\n\x12RegisterSubscriber\x12\x32.google.cloud.channel.v1.RegisterSubscriberRequest\x1a\x33.google.cloud.channel.v1.RegisterSubscriberResponse\",\x82\xd3\xe4\x93\x02&\"!/v1/{account=accounts/*}:register:\x01*\x12\xb3\x01\n\x14UnregisterSubscriber\x12\x34.google.cloud.channel.v1.UnregisterSubscriberRequest\x1a\x35.google.cloud.channel.v1.UnregisterSubscriberResponse\".\x82\xd3\xe4\x93\x02(\"#/v1/{account=accounts/*}:unregister:\x01*\x12\xa6\x01\n\x0fListSubscribers\x12/.google.cloud.channel.v1.ListSubscribersRequest\x1a\x30.google.cloud.channel.v1.ListSubscribersResponse\"0\x82\xd3\xe4\x93\x02*\x12(/v1/{account=accounts/*}:listSubscribers\x12\xe5\x01\n\x16ListEntitlementChanges\x12\x36.google.cloud.channel.v1.ListEntitlementChangesRequest\x1a\x37.google.cloud.channel.v1.ListEntitlementChangesResponse\"Z\x82\xd3\xe4\x93\x02K\x12I/v1/{parent=accounts/*/customers/*/entitlements/*}:listEntitlementChanges\xda\x41\x06parent\x1aK\xca\x41\x1b\x63loudchannel.googleapis.com\xd2\x41*https://www.googleapis.com/auth/apps.orderBd\n\x1b\x63om.google.cloud.channel.v1B\x0cServiceProtoP\x01Z5cloud.google.com/go/channel/apiv1/channelpb;channelpbb\x06proto3"
26
26
 
27
27
  pool = Google::Protobuf::DescriptorPool.generated_pool
28
28
 
@@ -97,6 +97,12 @@ module Google
97
97
  CreateChannelPartnerRepricingConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.CreateChannelPartnerRepricingConfigRequest").msgclass
98
98
  UpdateChannelPartnerRepricingConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.UpdateChannelPartnerRepricingConfigRequest").msgclass
99
99
  DeleteChannelPartnerRepricingConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.DeleteChannelPartnerRepricingConfigRequest").msgclass
100
+ ListSkuGroupsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.ListSkuGroupsRequest").msgclass
101
+ ListSkuGroupBillableSkusRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.ListSkuGroupBillableSkusRequest").msgclass
102
+ ListSkuGroupsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.ListSkuGroupsResponse").msgclass
103
+ ListSkuGroupBillableSkusResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.ListSkuGroupBillableSkusResponse").msgclass
104
+ SkuGroup = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.SkuGroup").msgclass
105
+ BillableSku = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.BillableSku").msgclass
100
106
  CreateEntitlementRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.CreateEntitlementRequest").msgclass
101
107
  TransferEntitlementsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.TransferEntitlementsRequest").msgclass
102
108
  TransferEntitlementsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.channel.v1.TransferEntitlementsResponse").msgclass
@@ -861,6 +861,46 @@ module Google
861
861
  # [ChannelPartnerRepricingConfig][google.cloud.channel.v1.ChannelPartnerRepricingConfig]
862
862
  # found for the name in the request.
863
863
  rpc :DeleteChannelPartnerRepricingConfig, ::Google::Cloud::Channel::V1::DeleteChannelPartnerRepricingConfigRequest, ::Google::Protobuf::Empty
864
+ # Lists the Rebilling supported SKU groups the account is authorized to
865
+ # sell.
866
+ # Reference: https://cloud.google.com/skus/sku-groups
867
+ #
868
+ # Possible Error Codes:
869
+ #
870
+ # * PERMISSION_DENIED: If the account making the request and the account
871
+ # being queried are different, or the account doesn't exist.
872
+ # * INTERNAL: Any non-user error related to technical issues in the
873
+ # backend. In this case, contact Cloud Channel support.
874
+ #
875
+ # Return Value:
876
+ # If successful, the [SkuGroup][google.cloud.channel.v1.SkuGroup] resources.
877
+ # The data for each resource is displayed in the alphabetical order of SKU
878
+ # group display name.
879
+ # The data for each resource is displayed in the ascending order of
880
+ # [SkuGroup.display_name][google.cloud.channel.v1.SkuGroup.display_name]
881
+ #
882
+ # If unsuccessful, returns an error.
883
+ rpc :ListSkuGroups, ::Google::Cloud::Channel::V1::ListSkuGroupsRequest, ::Google::Cloud::Channel::V1::ListSkuGroupsResponse
884
+ # Lists the Billable SKUs in a given SKU group.
885
+ #
886
+ # Possible error codes:
887
+ # PERMISSION_DENIED: If the account making the request and the account
888
+ # being queried for are different, or the account doesn't exist.
889
+ # INVALID_ARGUMENT: Missing or invalid required parameters in the
890
+ # request.
891
+ # INTERNAL: Any non-user error related to technical issue in the
892
+ # backend. In this case, contact cloud channel support.
893
+ #
894
+ # Return Value:
895
+ # If successful, the [BillableSku][google.cloud.channel.v1.BillableSku]
896
+ # resources. The data for each resource is displayed in the ascending order
897
+ # of:
898
+ #
899
+ # * [BillableSku.service_display_name][google.cloud.channel.v1.BillableSku.service_display_name]
900
+ # * [BillableSku.sku_display_name][google.cloud.channel.v1.BillableSku.sku_display_name]
901
+ #
902
+ # If unsuccessful, returns an error.
903
+ rpc :ListSkuGroupBillableSkus, ::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusRequest, ::Google::Cloud::Channel::V1::ListSkuGroupBillableSkusResponse
864
904
  # Returns the requested [Offer][google.cloud.channel.v1.Offer] resource.
865
905
  #
866
906
  # Possible error codes:
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Channel
23
23
  module V1
24
- VERSION = "0.20.0"
24
+ VERSION = "0.21.0"
25
25
  end
26
26
  end
27
27
  end
@@ -701,6 +701,118 @@ module Google
701
701
  extend ::Google::Protobuf::MessageExts::ClassMethods
702
702
  end
703
703
 
704
+ # Request message for ListSkuGroups.
705
+ # @!attribute [rw] parent
706
+ # @return [::String]
707
+ # Required. The resource name of the account from which to list SKU groups.
708
+ # Parent uses the format: accounts/\\{account}.
709
+ # @!attribute [rw] page_size
710
+ # @return [::Integer]
711
+ # Optional. The maximum number of SKU groups to return. The service may
712
+ # return fewer than this value. If unspecified, returns a maximum of 1000 SKU
713
+ # groups. The maximum value is 1000; values above 1000 will be coerced to
714
+ # 1000.
715
+ # @!attribute [rw] page_token
716
+ # @return [::String]
717
+ # Optional. A token identifying a page of results beyond the first page.
718
+ # Obtained through
719
+ # [ListSkuGroups.next_page_token][] of the previous
720
+ # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_sku_groups CloudChannelService.ListSkuGroups}
721
+ # call.
722
+ class ListSkuGroupsRequest
723
+ include ::Google::Protobuf::MessageExts
724
+ extend ::Google::Protobuf::MessageExts::ClassMethods
725
+ end
726
+
727
+ # Request message for ListSkuGroupBillableSkus.
728
+ # @!attribute [rw] parent
729
+ # @return [::String]
730
+ # Required. Resource name of the SKU group.
731
+ # Format: accounts/\\{account}/skuGroups/\\{sku_group}.
732
+ # @!attribute [rw] page_size
733
+ # @return [::Integer]
734
+ # Optional. The maximum number of SKUs to return. The service may return
735
+ # fewer than this value. If unspecified, returns a maximum of 100000 SKUs.
736
+ # The maximum value is 100000; values above 100000 will be coerced to 100000.
737
+ # @!attribute [rw] page_token
738
+ # @return [::String]
739
+ # Optional. A token identifying a page of results beyond the first page.
740
+ # Obtained through
741
+ # [ListSkuGroupBillableSkus.next_page_token][] of the previous
742
+ # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_sku_group_billable_skus CloudChannelService.ListSkuGroupBillableSkus}
743
+ # call.
744
+ class ListSkuGroupBillableSkusRequest
745
+ include ::Google::Protobuf::MessageExts
746
+ extend ::Google::Protobuf::MessageExts::ClassMethods
747
+ end
748
+
749
+ # Response message for ListSkuGroups.
750
+ # @!attribute [rw] sku_groups
751
+ # @return [::Array<::Google::Cloud::Channel::V1::SkuGroup>]
752
+ # The list of SKU groups requested.
753
+ # @!attribute [rw] next_page_token
754
+ # @return [::String]
755
+ # A token to retrieve the next page of results.
756
+ # Pass to [ListSkuGroups.page_token][] to obtain that
757
+ # page.
758
+ class ListSkuGroupsResponse
759
+ include ::Google::Protobuf::MessageExts
760
+ extend ::Google::Protobuf::MessageExts::ClassMethods
761
+ end
762
+
763
+ # Response message for ListSkuGroupBillableSkus.
764
+ # @!attribute [rw] billable_skus
765
+ # @return [::Array<::Google::Cloud::Channel::V1::BillableSku>]
766
+ # The list of billable SKUs in the requested SKU group.
767
+ # @!attribute [rw] next_page_token
768
+ # @return [::String]
769
+ # A token to retrieve the next page of results.
770
+ # Pass to [ListSkuGroupBillableSkus.page_token][] to obtain that
771
+ # page.
772
+ class ListSkuGroupBillableSkusResponse
773
+ include ::Google::Protobuf::MessageExts
774
+ extend ::Google::Protobuf::MessageExts::ClassMethods
775
+ end
776
+
777
+ # Represents the SKU group information.
778
+ # @!attribute [rw] name
779
+ # @return [::String]
780
+ # Resource name of SKU group. Format:
781
+ # accounts/\\{account}/skuGroups/\\{sku_group}.
782
+ # Example:
783
+ # "accounts/C01234/skuGroups/3d50fd57-3157-4577-a5a9-a219b8490041".
784
+ # @!attribute [rw] display_name
785
+ # @return [::String]
786
+ # Unique human readable identifier for the SKU group.
787
+ class SkuGroup
788
+ include ::Google::Protobuf::MessageExts
789
+ extend ::Google::Protobuf::MessageExts::ClassMethods
790
+ end
791
+
792
+ # Represents the Billable SKU information.
793
+ # @!attribute [rw] sku
794
+ # @return [::String]
795
+ # Resource name of Billable SKU. Format:
796
+ # billableSkus/\\{sku}.
797
+ # Example:
798
+ # billableSkus/6E1B-6634-470F".
799
+ # @!attribute [rw] sku_display_name
800
+ # @return [::String]
801
+ # Unique human readable name for the SKU.
802
+ # @!attribute [rw] service
803
+ # @return [::String]
804
+ # Resource name of Service which contains Repricing SKU. Format:
805
+ # services/\\{service}.
806
+ # Example:
807
+ # "services/B7D9-FDCB-15D8".
808
+ # @!attribute [rw] service_display_name
809
+ # @return [::String]
810
+ # Unique human readable name for the Service.
811
+ class BillableSku
812
+ include ::Google::Protobuf::MessageExts
813
+ extend ::Google::Protobuf::MessageExts::ClassMethods
814
+ end
815
+
704
816
  # Request message for
705
817
  # {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_entitlement CloudChannelService.CreateEntitlement}
706
818
  # @!attribute [rw] parent
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.20.0
4
+ version: 0.21.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-06-06 00:00:00.000000000 Z
11
+ date: 2023-06-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common