google-cloud-channel-v1 1.1.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Channel
23
23
  module V1
24
- VERSION = "1.1.0"
24
+ VERSION = "1.3.0"
25
25
  end
26
26
  end
27
27
  end
@@ -28,6 +28,9 @@ module Google
28
28
  # @!attribute [rw] destinations
29
29
  # @return [::Array<::Google::Api::ClientLibraryDestination>]
30
30
  # The destination where API teams want this client library to be published.
31
+ # @!attribute [rw] selective_gapic_generation
32
+ # @return [::Google::Api::SelectiveGapicGeneration]
33
+ # Configuration for which RPCs should be generated in the GAPIC client.
31
34
  class CommonLanguageSettings
32
35
  include ::Google::Protobuf::MessageExts
33
36
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -212,6 +215,12 @@ module Google
212
215
  # enabled. By default, asynchronous REST clients will not be generated.
213
216
  # This feature will be enabled by default 1 month after launching the
214
217
  # feature in preview packages.
218
+ # @!attribute [rw] protobuf_pythonic_types_enabled
219
+ # @return [::Boolean]
220
+ # Enables generation of protobuf code using new types that are more
221
+ # Pythonic which are included in `protobuf>=5.29.x`. This feature will be
222
+ # enabled by default 1 month after launching the feature in preview
223
+ # packages.
215
224
  class ExperimentalFeatures
216
225
  include ::Google::Protobuf::MessageExts
217
226
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -297,9 +306,28 @@ module Google
297
306
  # @!attribute [rw] common
298
307
  # @return [::Google::Api::CommonLanguageSettings]
299
308
  # Some settings.
309
+ # @!attribute [rw] renamed_services
310
+ # @return [::Google::Protobuf::Map{::String => ::String}]
311
+ # Map of service names to renamed services. Keys are the package relative
312
+ # service names and values are the name to be used for the service client
313
+ # and call options.
314
+ #
315
+ # publishing:
316
+ # go_settings:
317
+ # renamed_services:
318
+ # Publisher: TopicAdmin
300
319
  class GoSettings
301
320
  include ::Google::Protobuf::MessageExts
302
321
  extend ::Google::Protobuf::MessageExts::ClassMethods
322
+
323
+ # @!attribute [rw] key
324
+ # @return [::String]
325
+ # @!attribute [rw] value
326
+ # @return [::String]
327
+ class RenamedServicesEntry
328
+ include ::Google::Protobuf::MessageExts
329
+ extend ::Google::Protobuf::MessageExts::ClassMethods
330
+ end
303
331
  end
304
332
 
305
333
  # Describes the generator configuration for a method.
@@ -375,6 +403,17 @@ module Google
375
403
  end
376
404
  end
377
405
 
406
+ # This message is used to configure the generation of a subset of the RPCs in
407
+ # a service for client libraries.
408
+ # @!attribute [rw] methods
409
+ # @return [::Array<::String>]
410
+ # An allowlist of the fully qualified names of RPCs that should be included
411
+ # on public client surfaces.
412
+ class SelectiveGapicGeneration
413
+ include ::Google::Protobuf::MessageExts
414
+ extend ::Google::Protobuf::MessageExts::ClassMethods
415
+ end
416
+
378
417
  # The organization for which the client libraries are being published.
379
418
  # Affects the url where generated docs are published, etc.
380
419
  module ClientLibraryOrganization
@@ -125,18 +125,28 @@ module Google
125
125
  # @!attribute [rw] int64_value
126
126
  # @return [::Integer]
127
127
  # Represents an int64 value.
128
+ #
129
+ # Note: The following fields are mutually exclusive: `int64_value`, `string_value`, `double_value`, `proto_value`, `bool_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
128
130
  # @!attribute [rw] string_value
129
131
  # @return [::String]
130
132
  # Represents a string value.
133
+ #
134
+ # Note: The following fields are mutually exclusive: `string_value`, `int64_value`, `double_value`, `proto_value`, `bool_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
131
135
  # @!attribute [rw] double_value
132
136
  # @return [::Float]
133
137
  # Represents a double value.
138
+ #
139
+ # Note: The following fields are mutually exclusive: `double_value`, `int64_value`, `string_value`, `proto_value`, `bool_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
134
140
  # @!attribute [rw] proto_value
135
141
  # @return [::Google::Protobuf::Any]
136
142
  # Represents an 'Any' proto value.
143
+ #
144
+ # Note: The following fields are mutually exclusive: `proto_value`, `int64_value`, `string_value`, `double_value`, `bool_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
137
145
  # @!attribute [rw] bool_value
138
146
  # @return [::Boolean]
139
147
  # Represents a boolean value.
148
+ #
149
+ # Note: The following fields are mutually exclusive: `bool_value`, `int64_value`, `string_value`, `double_value`, `proto_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
140
150
  class Value
141
151
  include ::Google::Protobuf::MessageExts
142
152
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -25,15 +25,23 @@ module Google
25
25
  # @!attribute [rw] suspension_reason
26
26
  # @return [::Google::Cloud::Channel::V1::Entitlement::SuspensionReason]
27
27
  # Suspension reason for the Entitlement.
28
+ #
29
+ # Note: The following fields are mutually exclusive: `suspension_reason`, `cancellation_reason`, `activation_reason`, `other_change_reason`. If a field in that set is populated, all other fields in the set will automatically be cleared.
28
30
  # @!attribute [rw] cancellation_reason
29
31
  # @return [::Google::Cloud::Channel::V1::EntitlementChange::CancellationReason]
30
32
  # Cancellation reason for the Entitlement.
33
+ #
34
+ # Note: The following fields are mutually exclusive: `cancellation_reason`, `suspension_reason`, `activation_reason`, `other_change_reason`. If a field in that set is populated, all other fields in the set will automatically be cleared.
31
35
  # @!attribute [rw] activation_reason
32
36
  # @return [::Google::Cloud::Channel::V1::EntitlementChange::ActivationReason]
33
37
  # The Entitlement's activation reason
38
+ #
39
+ # Note: The following fields are mutually exclusive: `activation_reason`, `suspension_reason`, `cancellation_reason`, `other_change_reason`. If a field in that set is populated, all other fields in the set will automatically be cleared.
34
40
  # @!attribute [rw] other_change_reason
35
41
  # @return [::String]
36
42
  # e.g. purchase_number change reason, entered by CRS.
43
+ #
44
+ # Note: The following fields are mutually exclusive: `other_change_reason`, `suspension_reason`, `cancellation_reason`, `activation_reason`. If a field in that set is populated, all other fields in the set will automatically be cleared.
37
45
  # @!attribute [rw] entitlement
38
46
  # @return [::String]
39
47
  # Required. Resource name of an entitlement in the form:
@@ -322,24 +322,36 @@ module Google
322
322
  # @!attribute [rw] string_value
323
323
  # @return [::String]
324
324
  # A value of type `string`.
325
+ #
326
+ # Note: The following fields are mutually exclusive: `string_value`, `int_value`, `decimal_value`, `money_value`, `date_value`, `date_time_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
325
327
  # @!attribute [rw] int_value
326
328
  # @return [::Integer]
327
329
  # A value of type `int`.
330
+ #
331
+ # Note: The following fields are mutually exclusive: `int_value`, `string_value`, `decimal_value`, `money_value`, `date_value`, `date_time_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
328
332
  # @!attribute [rw] decimal_value
329
333
  # @return [::Google::Type::Decimal]
330
334
  # A value of type `google.type.Decimal`, representing non-integer numeric
331
335
  # values.
336
+ #
337
+ # Note: The following fields are mutually exclusive: `decimal_value`, `string_value`, `int_value`, `money_value`, `date_value`, `date_time_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
332
338
  # @!attribute [rw] money_value
333
339
  # @return [::Google::Type::Money]
334
340
  # A value of type `google.type.Money` (currency code, whole units, decimal
335
341
  # units).
342
+ #
343
+ # Note: The following fields are mutually exclusive: `money_value`, `string_value`, `int_value`, `decimal_value`, `date_value`, `date_time_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
336
344
  # @!attribute [rw] date_value
337
345
  # @return [::Google::Type::Date]
338
346
  # A value of type `google.type.Date` (year, month, day).
347
+ #
348
+ # Note: The following fields are mutually exclusive: `date_value`, `string_value`, `int_value`, `decimal_value`, `money_value`, `date_time_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
339
349
  # @!attribute [rw] date_time_value
340
350
  # @return [::Google::Type::DateTime]
341
351
  # A value of type `google.type.DateTime` (year, month, day, hour, minute,
342
352
  # second, and UTC offset or timezone.)
353
+ #
354
+ # Note: The following fields are mutually exclusive: `date_time_value`, `string_value`, `int_value`, `decimal_value`, `money_value`, `date_value`. If a field in that set is populated, all other fields in the set will automatically be cleared.
343
355
  class ReportValue
344
356
  include ::Google::Protobuf::MessageExts
345
357
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -81,6 +81,8 @@ module Google
81
81
  # {::Google::Cloud::Channel::V1::CustomerRepricingConfig CustomerRepricingConfig}
82
82
  # and
83
83
  # {::Google::Cloud::Channel::V1::ChannelPartnerRepricingConfig ChannelPartnerRepricingConfig}.
84
+ #
85
+ # Note: The following fields are mutually exclusive: `entitlement_granularity`, `channel_partner_granularity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
84
86
  # @!attribute [rw] channel_partner_granularity
85
87
  # @deprecated This field is deprecated and may be removed in the next major version update.
86
88
  # @return [::Google::Cloud::Channel::V1::RepricingConfig::ChannelPartnerGranularity]
@@ -90,6 +92,8 @@ module Google
90
92
  # supports this value. Deprecated: This is no longer supported. Use
91
93
  # {::Google::Cloud::Channel::V1::RepricingConfig#entitlement_granularity RepricingConfig.entitlement_granularity}
92
94
  # instead.
95
+ #
96
+ # Note: The following fields are mutually exclusive: `channel_partner_granularity`, `entitlement_granularity`. If a field in that set is populated, all other fields in the set will automatically be cleared.
93
97
  # @!attribute [rw] effective_invoice_month
94
98
  # @return [::Google::Type::Date]
95
99
  # Required. The YearMonth when these adjustments activate. The Day field
@@ -181,12 +181,18 @@ module Google
181
181
  # @!attribute [rw] domain
182
182
  # @return [::String]
183
183
  # Required. Customer domain.
184
+ #
185
+ # Note: The following fields are mutually exclusive: `domain`, `cloud_identity_id`, `primary_admin_email`. If a field in that set is populated, all other fields in the set will automatically be cleared.
184
186
  # @!attribute [rw] cloud_identity_id
185
187
  # @return [::String]
186
188
  # Required. Customer's Cloud Identity ID
189
+ #
190
+ # Note: The following fields are mutually exclusive: `cloud_identity_id`, `domain`, `primary_admin_email`. If a field in that set is populated, all other fields in the set will automatically be cleared.
187
191
  # @!attribute [rw] primary_admin_email
188
192
  # @return [::String]
189
193
  # Required. Customer's primary admin email.
194
+ #
195
+ # Note: The following fields are mutually exclusive: `primary_admin_email`, `domain`, `cloud_identity_id`. If a field in that set is populated, all other fields in the set will automatically be cleared.
190
196
  # @!attribute [rw] parent
191
197
  # @return [::String]
192
198
  # Required. The resource name of the reseller's account.
@@ -285,12 +291,16 @@ module Google
285
291
  # @!attribute [rw] cloud_identity_id
286
292
  # @return [::String]
287
293
  # Customer's Cloud Identity ID
294
+ #
295
+ # Note: The following fields are mutually exclusive: `cloud_identity_id`, `customer_name`. If a field in that set is populated, all other fields in the set will automatically be cleared.
288
296
  # @!attribute [rw] customer_name
289
297
  # @return [::String]
290
298
  # A reseller is required to create a customer and use the resource name of
291
299
  # the created customer here.
292
300
  # Customer_name uses the format:
293
301
  # accounts/\\{account_id}/customers/\\{customer_id}
302
+ #
303
+ # Note: The following fields are mutually exclusive: `customer_name`, `cloud_identity_id`. If a field in that set is populated, all other fields in the set will automatically be cleared.
294
304
  # @!attribute [rw] parent
295
305
  # @return [::String]
296
306
  # Required. The reseller account's resource name.
@@ -347,10 +357,14 @@ module Google
347
357
  # @!attribute [rw] cloud_identity_id
348
358
  # @return [::String]
349
359
  # Customer's Cloud Identity ID
360
+ #
361
+ # Note: The following fields are mutually exclusive: `cloud_identity_id`, `customer_name`. If a field in that set is populated, all other fields in the set will automatically be cleared.
350
362
  # @!attribute [rw] customer_name
351
363
  # @return [::String]
352
364
  # A reseller should create a customer and use the resource name of
353
365
  # that customer here.
366
+ #
367
+ # Note: The following fields are mutually exclusive: `customer_name`, `cloud_identity_id`. If a field in that set is populated, all other fields in the set will automatically be cleared.
354
368
  # @!attribute [rw] parent
355
369
  # @return [::String]
356
370
  # Required. The resource name of the reseller's account.
@@ -1294,9 +1308,13 @@ module Google
1294
1308
  # @!attribute [rw] create_entitlement_purchase
1295
1309
  # @return [::Google::Cloud::Channel::V1::ListPurchasableSkusRequest::CreateEntitlementPurchase]
1296
1310
  # List SKUs for CreateEntitlement purchase.
1311
+ #
1312
+ # Note: The following fields are mutually exclusive: `create_entitlement_purchase`, `change_offer_purchase`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1297
1313
  # @!attribute [rw] change_offer_purchase
1298
1314
  # @return [::Google::Cloud::Channel::V1::ListPurchasableSkusRequest::ChangeOfferPurchase]
1299
1315
  # List SKUs for ChangeOffer purchase with a new SKU.
1316
+ #
1317
+ # Note: The following fields are mutually exclusive: `change_offer_purchase`, `create_entitlement_purchase`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1300
1318
  # @!attribute [rw] customer
1301
1319
  # @return [::String]
1302
1320
  # Required. The resource name of the customer to list SKUs for.
@@ -1385,9 +1403,13 @@ module Google
1385
1403
  # @!attribute [rw] create_entitlement_purchase
1386
1404
  # @return [::Google::Cloud::Channel::V1::ListPurchasableOffersRequest::CreateEntitlementPurchase]
1387
1405
  # List Offers for CreateEntitlement purchase.
1406
+ #
1407
+ # Note: The following fields are mutually exclusive: `create_entitlement_purchase`, `change_offer_purchase`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1388
1408
  # @!attribute [rw] change_offer_purchase
1389
1409
  # @return [::Google::Cloud::Channel::V1::ListPurchasableOffersRequest::ChangeOfferPurchase]
1390
1410
  # List Offers for ChangeOffer purchase.
1411
+ #
1412
+ # Note: The following fields are mutually exclusive: `change_offer_purchase`, `create_entitlement_purchase`. If a field in that set is populated, all other fields in the set will automatically be cleared.
1391
1413
  # @!attribute [rw] customer
1392
1414
  # @return [::String]
1393
1415
  # Required. The resource name of the customer to list Offers for.
@@ -109,9 +109,13 @@ module Google
109
109
  # @!attribute [rw] customer_event
110
110
  # @return [::Google::Cloud::Channel::V1::CustomerEvent]
111
111
  # Customer event sent as part of Pub/Sub event to partners.
112
+ #
113
+ # Note: The following fields are mutually exclusive: `customer_event`, `entitlement_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
112
114
  # @!attribute [rw] entitlement_event
113
115
  # @return [::Google::Cloud::Channel::V1::EntitlementEvent]
114
116
  # Entitlement event sent as part of Pub/Sub event to partners.
117
+ #
118
+ # Note: The following fields are mutually exclusive: `entitlement_event`, `customer_event`. If a field in that set is populated, all other fields in the set will automatically be cleared.
115
119
  class SubscriberEvent
116
120
  include ::Google::Protobuf::MessageExts
117
121
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -40,9 +40,11 @@ module Google
40
40
  # @!attribute [rw] error
41
41
  # @return [::Google::Rpc::Status]
42
42
  # The error result of the operation in case of failure or cancellation.
43
+ #
44
+ # Note: The following fields are mutually exclusive: `error`, `response`. If a field in that set is populated, all other fields in the set will automatically be cleared.
43
45
  # @!attribute [rw] response
44
46
  # @return [::Google::Protobuf::Any]
45
- # The normal response of the operation in case of success. If the original
47
+ # The normal, successful response of the operation. If the original
46
48
  # method returns no data on success, such as `Delete`, the response is
47
49
  # `google.protobuf.Empty`. If the original method is standard
48
50
  # `Get`/`Create`/`Update`, the response should be the resource. For other
@@ -50,12 +52,15 @@ module Google
50
52
  # is the original method name. For example, if the original method name
51
53
  # is `TakeSnapshot()`, the inferred response type is
52
54
  # `TakeSnapshotResponse`.
55
+ #
56
+ # Note: The following fields are mutually exclusive: `response`, `error`. If a field in that set is populated, all other fields in the set will automatically be cleared.
53
57
  class Operation
54
58
  include ::Google::Protobuf::MessageExts
55
59
  extend ::Google::Protobuf::MessageExts::ClassMethods
56
60
  end
57
61
 
58
- # The request message for Operations.GetOperation.
62
+ # The request message for
63
+ # Operations.GetOperation.
59
64
  # @!attribute [rw] name
60
65
  # @return [::String]
61
66
  # The name of the operation resource.
@@ -64,7 +69,8 @@ module Google
64
69
  extend ::Google::Protobuf::MessageExts::ClassMethods
65
70
  end
66
71
 
67
- # The request message for Operations.ListOperations.
72
+ # The request message for
73
+ # Operations.ListOperations.
68
74
  # @!attribute [rw] name
69
75
  # @return [::String]
70
76
  # The name of the operation's parent resource.
@@ -82,7 +88,8 @@ module Google
82
88
  extend ::Google::Protobuf::MessageExts::ClassMethods
83
89
  end
84
90
 
85
- # The response message for Operations.ListOperations.
91
+ # The response message for
92
+ # Operations.ListOperations.
86
93
  # @!attribute [rw] operations
87
94
  # @return [::Array<::Google::Longrunning::Operation>]
88
95
  # A list of operations that matches the specified filter in the request.
@@ -94,7 +101,8 @@ module Google
94
101
  extend ::Google::Protobuf::MessageExts::ClassMethods
95
102
  end
96
103
 
97
- # The request message for Operations.CancelOperation.
104
+ # The request message for
105
+ # Operations.CancelOperation.
98
106
  # @!attribute [rw] name
99
107
  # @return [::String]
100
108
  # The name of the operation resource to be cancelled.
@@ -103,7 +111,8 @@ module Google
103
111
  extend ::Google::Protobuf::MessageExts::ClassMethods
104
112
  end
105
113
 
106
- # The request message for Operations.DeleteOperation.
114
+ # The request message for
115
+ # Operations.DeleteOperation.
107
116
  # @!attribute [rw] name
108
117
  # @return [::String]
109
118
  # The name of the operation resource to be deleted.
@@ -112,7 +121,8 @@ module Google
112
121
  extend ::Google::Protobuf::MessageExts::ClassMethods
113
122
  end
114
123
 
115
- # The request message for Operations.WaitOperation.
124
+ # The request message for
125
+ # Operations.WaitOperation.
116
126
  # @!attribute [rw] name
117
127
  # @return [::String]
118
128
  # The name of the operation resource to wait on.
@@ -130,13 +140,12 @@ module Google
130
140
  #
131
141
  # Example:
132
142
  #
133
- # rpc LongRunningRecognize(LongRunningRecognizeRequest)
134
- # returns (google.longrunning.Operation) {
135
- # option (google.longrunning.operation_info) = {
136
- # response_type: "LongRunningRecognizeResponse"
137
- # metadata_type: "LongRunningRecognizeMetadata"
138
- # };
139
- # }
143
+ # rpc Export(ExportRequest) returns (google.longrunning.Operation) {
144
+ # option (google.longrunning.operation_info) = {
145
+ # response_type: "ExportResponse"
146
+ # metadata_type: "ExportMetadata"
147
+ # };
148
+ # }
140
149
  # @!attribute [rw] response_type
141
150
  # @return [::String]
142
151
  # Required. The message name of the primary return type for this
@@ -75,9 +75,13 @@ module Google
75
75
  # UTC offset. Must be whole seconds, between -18 hours and +18 hours.
76
76
  # For example, a UTC offset of -4:00 would be represented as
77
77
  # { seconds: -14400 }.
78
+ #
79
+ # Note: The following fields are mutually exclusive: `utc_offset`, `time_zone`. If a field in that set is populated, all other fields in the set will automatically be cleared.
78
80
  # @!attribute [rw] time_zone
79
81
  # @return [::Google::Type::TimeZone]
80
82
  # Time zone.
83
+ #
84
+ # Note: The following fields are mutually exclusive: `time_zone`, `utc_offset`. If a field in that set is populated, all other fields in the set will automatically be cleared.
81
85
  class DateTime
82
86
  include ::Google::Protobuf::MessageExts
83
87
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-channel-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2024-10-15 00:00:00.000000000 Z
10
+ date: 2025-01-29 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: gapic-common
@@ -16,7 +15,7 @@ dependencies:
16
15
  requirements:
17
16
  - - ">="
18
17
  - !ruby/object:Gem::Version
19
- version: 0.21.1
18
+ version: 0.25.0
20
19
  - - "<"
21
20
  - !ruby/object:Gem::Version
22
21
  version: 2.a
@@ -26,7 +25,7 @@ dependencies:
26
25
  requirements:
27
26
  - - ">="
28
27
  - !ruby/object:Gem::Version
29
- version: 0.21.1
28
+ version: 0.25.0
30
29
  - - "<"
31
30
  - !ruby/object:Gem::Version
32
31
  version: 2.a
@@ -130,7 +129,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
130
129
  licenses:
131
130
  - Apache-2.0
132
131
  metadata: {}
133
- post_install_message:
134
132
  rdoc_options: []
135
133
  require_paths:
136
134
  - lib
@@ -138,15 +136,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
138
136
  requirements:
139
137
  - - ">="
140
138
  - !ruby/object:Gem::Version
141
- version: '2.7'
139
+ version: '3.0'
142
140
  required_rubygems_version: !ruby/object:Gem::Requirement
143
141
  requirements:
144
142
  - - ">="
145
143
  - !ruby/object:Gem::Version
146
144
  version: '0'
147
145
  requirements: []
148
- rubygems_version: 3.5.21
149
- signing_key:
146
+ rubygems_version: 3.6.2
150
147
  specification_version: 4
151
148
  summary: The Cloud Channel API enables Google Cloud partners to have a single unified
152
149
  resale platform and APIs across all of Google Cloud including GCP, Workspace, Maps