google-cloud-channel-v1 0.13.0 → 0.15.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 +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/channel/v1/cloud_channel_reports_service/client.rb +26 -20
- data/lib/google/cloud/channel/v1/cloud_channel_service/client.rb +297 -211
- data/lib/google/cloud/channel/v1/cloud_channel_service.rb +8 -7
- data/lib/google/cloud/channel/v1/offers_pb.rb +1 -0
- data/lib/google/cloud/channel/v1/reports_service_services_pb.rb +4 -2
- data/lib/google/cloud/channel/v1/repricing_pb.rb +17 -0
- data/lib/google/cloud/channel/v1/service_services_pb.rb +155 -102
- data/lib/google/cloud/channel/v1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/channel/v1/channel_partner_links.rb +5 -3
- data/proto_docs/google/cloud/channel/v1/entitlements.rb +21 -16
- data/proto_docs/google/cloud/channel/v1/offers.rb +5 -2
- data/proto_docs/google/cloud/channel/v1/operations.rb +2 -1
- data/proto_docs/google/cloud/channel/v1/reports_service.rb +49 -34
- data/proto_docs/google/cloud/channel/v1/repricing.rb +63 -14
- data/proto_docs/google/cloud/channel/v1/service.rb +241 -159
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +4 -2
@@ -21,7 +21,8 @@ module Google
|
|
21
21
|
module Cloud
|
22
22
|
module Channel
|
23
23
|
module V1
|
24
|
-
# Request message for
|
24
|
+
# Request message for
|
25
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#check_cloud_identity_accounts_exist CloudChannelService.CheckCloudIdentityAccountsExist}.
|
25
26
|
# @!attribute [rw] parent
|
26
27
|
# @return [::String]
|
27
28
|
# Required. The reseller account's resource name.
|
@@ -67,25 +68,29 @@ module Google
|
|
67
68
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
68
69
|
end
|
69
70
|
|
70
|
-
# Request message for
|
71
|
+
# Request message for
|
72
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customers CloudChannelService.ListCustomers}
|
71
73
|
# @!attribute [rw] parent
|
72
74
|
# @return [::String]
|
73
75
|
# Required. The resource name of the reseller account to list customers from.
|
74
76
|
# Parent uses the format: accounts/\\{account_id}.
|
75
77
|
# @!attribute [rw] page_size
|
76
78
|
# @return [::Integer]
|
77
|
-
# Optional. The maximum number of customers to return. The service may return
|
78
|
-
# than this value. If unspecified, returns at most 10 customers. The
|
79
|
+
# Optional. The maximum number of customers to return. The service may return
|
80
|
+
# fewer than this value. If unspecified, returns at most 10 customers. The
|
79
81
|
# maximum value is 50.
|
80
82
|
# @!attribute [rw] page_token
|
81
83
|
# @return [::String]
|
82
84
|
# Optional. A token identifying a page of results other than the first page.
|
83
85
|
# Obtained through
|
84
|
-
# {::Google::Cloud::Channel::V1::ListCustomersResponse#next_page_token ListCustomersResponse.next_page_token}
|
85
|
-
#
|
86
|
+
# {::Google::Cloud::Channel::V1::ListCustomersResponse#next_page_token ListCustomersResponse.next_page_token}
|
87
|
+
# of the previous
|
88
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customers CloudChannelService.ListCustomers}
|
89
|
+
# call.
|
86
90
|
# @!attribute [rw] filter
|
87
91
|
# @return [::String]
|
88
|
-
# Optional. Filters applied to the [CloudChannelService.ListCustomers]
|
92
|
+
# Optional. Filters applied to the [CloudChannelService.ListCustomers]
|
93
|
+
# results. See
|
89
94
|
# https://cloud.google.com/channel/docs/concepts/google-cloud/filter-customers
|
90
95
|
# for more information.
|
91
96
|
class ListCustomersRequest
|
@@ -93,20 +98,24 @@ module Google
|
|
93
98
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
94
99
|
end
|
95
100
|
|
96
|
-
# Response message for
|
101
|
+
# Response message for
|
102
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customers CloudChannelService.ListCustomers}.
|
97
103
|
# @!attribute [rw] customers
|
98
104
|
# @return [::Array<::Google::Cloud::Channel::V1::Customer>]
|
99
105
|
# The customers belonging to a reseller or distributor.
|
100
106
|
# @!attribute [rw] next_page_token
|
101
107
|
# @return [::String]
|
102
108
|
# A token to retrieve the next page of results.
|
103
|
-
# Pass to
|
109
|
+
# Pass to
|
110
|
+
# {::Google::Cloud::Channel::V1::ListCustomersRequest#page_token ListCustomersRequest.page_token}
|
111
|
+
# to obtain that page.
|
104
112
|
class ListCustomersResponse
|
105
113
|
include ::Google::Protobuf::MessageExts
|
106
114
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
107
115
|
end
|
108
116
|
|
109
|
-
# Request message for
|
117
|
+
# Request message for
|
118
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#get_customer CloudChannelService.GetCustomer}.
|
110
119
|
# @!attribute [rw] name
|
111
120
|
# @return [::String]
|
112
121
|
# Required. The resource name of the customer to retrieve.
|
@@ -116,11 +125,12 @@ module Google
|
|
116
125
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
117
126
|
end
|
118
127
|
|
119
|
-
# Request message for
|
128
|
+
# Request message for
|
129
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_customer CloudChannelService.CreateCustomer}
|
120
130
|
# @!attribute [rw] parent
|
121
131
|
# @return [::String]
|
122
|
-
# Required. The resource name of reseller account in which to create the
|
123
|
-
# Parent uses the format: accounts/\\{account_id}
|
132
|
+
# Required. The resource name of reseller account in which to create the
|
133
|
+
# customer. Parent uses the format: accounts/\\{account_id}
|
124
134
|
# @!attribute [rw] customer
|
125
135
|
# @return [::Google::Cloud::Channel::V1::Customer]
|
126
136
|
# Required. The customer to create.
|
@@ -129,7 +139,8 @@ module Google
|
|
129
139
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
130
140
|
end
|
131
141
|
|
132
|
-
# Request message for
|
142
|
+
# Request message for
|
143
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#update_customer CloudChannelService.UpdateCustomer}.
|
133
144
|
# @!attribute [rw] customer
|
134
145
|
# @return [::Google::Cloud::Channel::V1::Customer]
|
135
146
|
# Required. New contents of the customer.
|
@@ -142,7 +153,8 @@ module Google
|
|
142
153
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
143
154
|
end
|
144
155
|
|
145
|
-
# Request message for
|
156
|
+
# Request message for
|
157
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#delete_customer CloudChannelService.DeleteCustomer}.
|
146
158
|
# @!attribute [rw] name
|
147
159
|
# @return [::String]
|
148
160
|
# Required. The resource name of the customer to delete.
|
@@ -151,7 +163,8 @@ module Google
|
|
151
163
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
152
164
|
end
|
153
165
|
|
154
|
-
# Request message for
|
166
|
+
# Request message for
|
167
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#import_customer CloudChannelService.ImportCustomer}
|
155
168
|
# @!attribute [rw] domain
|
156
169
|
# @return [::String]
|
157
170
|
# Required. Customer domain.
|
@@ -176,9 +189,10 @@ module Google
|
|
176
189
|
# conflicting region code or domain.
|
177
190
|
# @!attribute [rw] channel_partner_id
|
178
191
|
# @return [::String]
|
179
|
-
# Optional. Cloud Identity ID of a channel partner who will be the direct
|
180
|
-
# the customer's order. This field is required for 2-tier
|
181
|
-
# and can be provided via the request Parent binding as
|
192
|
+
# Optional. Cloud Identity ID of a channel partner who will be the direct
|
193
|
+
# reseller for the customer's order. This field is required for 2-tier
|
194
|
+
# transfer scenarios and can be provided via the request Parent binding as
|
195
|
+
# well.
|
182
196
|
# @!attribute [rw] customer
|
183
197
|
# @return [::String]
|
184
198
|
# Optional. Specifies the customer that will receive imported Cloud Identity
|
@@ -189,7 +203,8 @@ module Google
|
|
189
203
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
190
204
|
end
|
191
205
|
|
192
|
-
# Request message for
|
206
|
+
# Request message for
|
207
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#provision_cloud_identity CloudChannelService.ProvisionCloudIdentity}
|
193
208
|
# @!attribute [rw] customer
|
194
209
|
# @return [::String]
|
195
210
|
# Required. Resource name of the customer.
|
@@ -208,7 +223,8 @@ module Google
|
|
208
223
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
209
224
|
end
|
210
225
|
|
211
|
-
# Request message for
|
226
|
+
# Request message for
|
227
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_entitlements CloudChannelService.ListEntitlements}
|
212
228
|
# @!attribute [rw] parent
|
213
229
|
# @return [::String]
|
214
230
|
# Required. The resource name of the reseller's customer account to list
|
@@ -216,34 +232,40 @@ module Google
|
|
216
232
|
# Parent uses the format: accounts/\\{account_id}/customers/\\{customer_id}
|
217
233
|
# @!attribute [rw] page_size
|
218
234
|
# @return [::Integer]
|
219
|
-
# Optional. Requested page size. Server might return fewer results than
|
220
|
-
# If unspecified, return at most 50 entitlements.
|
221
|
-
#
|
235
|
+
# Optional. Requested page size. Server might return fewer results than
|
236
|
+
# requested. If unspecified, return at most 50 entitlements. The maximum
|
237
|
+
# value is 100; the server will coerce values above 100.
|
222
238
|
# @!attribute [rw] page_token
|
223
239
|
# @return [::String]
|
224
240
|
# Optional. A token for a page of results other than the first page.
|
225
241
|
# Obtained using
|
226
|
-
# {::Google::Cloud::Channel::V1::ListEntitlementsResponse#next_page_token ListEntitlementsResponse.next_page_token}
|
227
|
-
#
|
242
|
+
# {::Google::Cloud::Channel::V1::ListEntitlementsResponse#next_page_token ListEntitlementsResponse.next_page_token}
|
243
|
+
# of the previous
|
244
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_entitlements CloudChannelService.ListEntitlements}
|
245
|
+
# call.
|
228
246
|
class ListEntitlementsRequest
|
229
247
|
include ::Google::Protobuf::MessageExts
|
230
248
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
231
249
|
end
|
232
250
|
|
233
|
-
# Response message for
|
251
|
+
# Response message for
|
252
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_entitlements CloudChannelService.ListEntitlements}.
|
234
253
|
# @!attribute [rw] entitlements
|
235
254
|
# @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
|
236
255
|
# The reseller customer's entitlements.
|
237
256
|
# @!attribute [rw] next_page_token
|
238
257
|
# @return [::String]
|
239
258
|
# A token to list the next page of results.
|
240
|
-
# Pass to
|
259
|
+
# Pass to
|
260
|
+
# {::Google::Cloud::Channel::V1::ListEntitlementsRequest#page_token ListEntitlementsRequest.page_token}
|
261
|
+
# to obtain that page.
|
241
262
|
class ListEntitlementsResponse
|
242
263
|
include ::Google::Protobuf::MessageExts
|
243
264
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
244
265
|
end
|
245
266
|
|
246
|
-
# Request message for
|
267
|
+
# Request message for
|
268
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_skus CloudChannelService.ListTransferableSkus}
|
247
269
|
# @!attribute [rw] cloud_identity_id
|
248
270
|
# @return [::String]
|
249
271
|
# Customer's Cloud Identity ID
|
@@ -267,9 +289,10 @@ module Google
|
|
267
289
|
# @return [::String]
|
268
290
|
# A token for a page of results other than the first page.
|
269
291
|
# Obtained using
|
270
|
-
# {::Google::Cloud::Channel::V1::ListTransferableSkusResponse#next_page_token ListTransferableSkusResponse.next_page_token}
|
271
|
-
#
|
272
|
-
#
|
292
|
+
# {::Google::Cloud::Channel::V1::ListTransferableSkusResponse#next_page_token ListTransferableSkusResponse.next_page_token}
|
293
|
+
# of the previous
|
294
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_skus CloudChannelService.ListTransferableSkus}
|
295
|
+
# call. Optional.
|
273
296
|
# @!attribute [rw] auth_token
|
274
297
|
# @return [::String]
|
275
298
|
# Optional. The super admin of the resold customer generates this token to
|
@@ -287,21 +310,24 @@ module Google
|
|
287
310
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
288
311
|
end
|
289
312
|
|
290
|
-
# Response message for
|
313
|
+
# Response message for
|
314
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_skus CloudChannelService.ListTransferableSkus}.
|
291
315
|
# @!attribute [rw] transferable_skus
|
292
316
|
# @return [::Array<::Google::Cloud::Channel::V1::TransferableSku>]
|
293
317
|
# Information about existing SKUs for a customer that needs a transfer.
|
294
318
|
# @!attribute [rw] next_page_token
|
295
319
|
# @return [::String]
|
296
320
|
# A token to retrieve the next page of results.
|
297
|
-
# Pass to
|
298
|
-
#
|
321
|
+
# Pass to
|
322
|
+
# {::Google::Cloud::Channel::V1::ListTransferableSkusRequest#page_token ListTransferableSkusRequest.page_token}
|
323
|
+
# to obtain that page.
|
299
324
|
class ListTransferableSkusResponse
|
300
325
|
include ::Google::Protobuf::MessageExts
|
301
326
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
302
327
|
end
|
303
328
|
|
304
|
-
# Request message for
|
329
|
+
# Request message for
|
330
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_offers CloudChannelService.ListTransferableOffers}
|
305
331
|
# @!attribute [rw] cloud_identity_id
|
306
332
|
# @return [::String]
|
307
333
|
# Customer's Cloud Identity ID
|
@@ -321,8 +347,10 @@ module Google
|
|
321
347
|
# @return [::String]
|
322
348
|
# A token for a page of results other than the first page.
|
323
349
|
# Obtained using
|
324
|
-
# {::Google::Cloud::Channel::V1::ListTransferableOffersResponse#next_page_token ListTransferableOffersResponse.next_page_token}
|
325
|
-
#
|
350
|
+
# {::Google::Cloud::Channel::V1::ListTransferableOffersResponse#next_page_token ListTransferableOffersResponse.next_page_token}
|
351
|
+
# of the previous
|
352
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_offers CloudChannelService.ListTransferableOffers}
|
353
|
+
# call.
|
326
354
|
# @!attribute [rw] sku
|
327
355
|
# @return [::String]
|
328
356
|
# Required. The SKU to look up Offers for.
|
@@ -336,7 +364,8 @@ module Google
|
|
336
364
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
337
365
|
end
|
338
366
|
|
339
|
-
# Response message for
|
367
|
+
# Response message for
|
368
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_offers CloudChannelService.ListTransferableOffers}.
|
340
369
|
# @!attribute [rw] transferable_offers
|
341
370
|
# @return [::Array<::Google::Cloud::Channel::V1::TransferableOffer>]
|
342
371
|
# Information about Offers for a customer that can be used for
|
@@ -344,8 +373,9 @@ module Google
|
|
344
373
|
# @!attribute [rw] next_page_token
|
345
374
|
# @return [::String]
|
346
375
|
# A token to retrieve the next page of results.
|
347
|
-
# Pass to
|
348
|
-
#
|
376
|
+
# Pass to
|
377
|
+
# {::Google::Cloud::Channel::V1::ListTransferableOffersRequest#page_token ListTransferableOffersRequest.page_token}
|
378
|
+
# to obtain that page.
|
349
379
|
class ListTransferableOffersResponse
|
350
380
|
include ::Google::Protobuf::MessageExts
|
351
381
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -361,7 +391,8 @@ module Google
|
|
361
391
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
362
392
|
end
|
363
393
|
|
364
|
-
# Request message for
|
394
|
+
# Request message for
|
395
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#get_entitlement CloudChannelService.GetEntitlement}.
|
365
396
|
# @!attribute [rw] name
|
366
397
|
# @return [::String]
|
367
398
|
# Required. The resource name of the entitlement to retrieve.
|
@@ -372,23 +403,25 @@ module Google
|
|
372
403
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
373
404
|
end
|
374
405
|
|
375
|
-
# Request message for
|
406
|
+
# Request message for
|
407
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_channel_partner_links CloudChannelService.ListChannelPartnerLinks}
|
376
408
|
# @!attribute [rw] parent
|
377
409
|
# @return [::String]
|
378
|
-
# Required. The resource name of the reseller account for listing channel
|
379
|
-
# links.
|
380
|
-
# Parent uses the format: accounts/\\{account_id}
|
410
|
+
# Required. The resource name of the reseller account for listing channel
|
411
|
+
# partner links. Parent uses the format: accounts/\\{account_id}
|
381
412
|
# @!attribute [rw] page_size
|
382
413
|
# @return [::Integer]
|
383
|
-
# Optional. Requested page size. Server might return fewer results than
|
384
|
-
# If unspecified, server will pick a default size (25).
|
385
|
-
#
|
414
|
+
# Optional. Requested page size. Server might return fewer results than
|
415
|
+
# requested. If unspecified, server will pick a default size (25). The
|
416
|
+
# maximum value is 200; the server will coerce values above 200.
|
386
417
|
# @!attribute [rw] page_token
|
387
418
|
# @return [::String]
|
388
419
|
# Optional. A token for a page of results other than the first page.
|
389
420
|
# Obtained using
|
390
|
-
# {::Google::Cloud::Channel::V1::ListChannelPartnerLinksResponse#next_page_token ListChannelPartnerLinksResponse.next_page_token}
|
391
|
-
#
|
421
|
+
# {::Google::Cloud::Channel::V1::ListChannelPartnerLinksResponse#next_page_token ListChannelPartnerLinksResponse.next_page_token}
|
422
|
+
# of the previous
|
423
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_channel_partner_links CloudChannelService.ListChannelPartnerLinks}
|
424
|
+
# call.
|
392
425
|
# @!attribute [rw] view
|
393
426
|
# @return [::Google::Cloud::Channel::V1::ChannelPartnerLinkView]
|
394
427
|
# Optional. The level of granularity the ChannelPartnerLink will display.
|
@@ -397,20 +430,24 @@ module Google
|
|
397
430
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
398
431
|
end
|
399
432
|
|
400
|
-
# Response message for
|
433
|
+
# Response message for
|
434
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_channel_partner_links CloudChannelService.ListChannelPartnerLinks}.
|
401
435
|
# @!attribute [rw] channel_partner_links
|
402
436
|
# @return [::Array<::Google::Cloud::Channel::V1::ChannelPartnerLink>]
|
403
437
|
# The Channel partner links for a reseller.
|
404
438
|
# @!attribute [rw] next_page_token
|
405
439
|
# @return [::String]
|
406
440
|
# A token to retrieve the next page of results.
|
407
|
-
# Pass to
|
441
|
+
# Pass to
|
442
|
+
# {::Google::Cloud::Channel::V1::ListChannelPartnerLinksRequest#page_token ListChannelPartnerLinksRequest.page_token}
|
443
|
+
# to obtain that page.
|
408
444
|
class ListChannelPartnerLinksResponse
|
409
445
|
include ::Google::Protobuf::MessageExts
|
410
446
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
411
447
|
end
|
412
448
|
|
413
|
-
# Request message for
|
449
|
+
# Request message for
|
450
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#get_channel_partner_link CloudChannelService.GetChannelPartnerLink}.
|
414
451
|
# @!attribute [rw] name
|
415
452
|
# @return [::String]
|
416
453
|
# Required. The resource name of the channel partner link to retrieve.
|
@@ -424,7 +461,8 @@ module Google
|
|
424
461
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
425
462
|
end
|
426
463
|
|
427
|
-
# Request message for
|
464
|
+
# Request message for
|
465
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_channel_partner_link CloudChannelService.CreateChannelPartnerLink}
|
428
466
|
# @!attribute [rw] parent
|
429
467
|
# @return [::String]
|
430
468
|
# Required. Create a channel partner link for the provided reseller account's
|
@@ -440,7 +478,8 @@ module Google
|
|
440
478
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
441
479
|
end
|
442
480
|
|
443
|
-
# Request message for
|
481
|
+
# Request message for
|
482
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#update_channel_partner_link CloudChannelService.UpdateChannelPartnerLink}
|
444
483
|
# @!attribute [rw] name
|
445
484
|
# @return [::String]
|
446
485
|
# Required. The resource name of the channel partner link to cancel.
|
@@ -448,8 +487,8 @@ module Google
|
|
448
487
|
# where \\{id} is the Cloud Identity ID of the partner.
|
449
488
|
# @!attribute [rw] channel_partner_link
|
450
489
|
# @return [::Google::Cloud::Channel::V1::ChannelPartnerLink]
|
451
|
-
# Required. The channel partner link to update. Only
|
452
|
-
# is allowed for updates.
|
490
|
+
# Required. The channel partner link to update. Only
|
491
|
+
# channel_partner_link.link_state is allowed for updates.
|
453
492
|
# @!attribute [rw] update_mask
|
454
493
|
# @return [::Google::Protobuf::FieldMask]
|
455
494
|
# Required. The update mask that applies to the resource.
|
@@ -460,7 +499,8 @@ module Google
|
|
460
499
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
461
500
|
end
|
462
501
|
|
463
|
-
# Request message for
|
502
|
+
# Request message for
|
503
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#get_customer_repricing_config CloudChannelService.GetCustomerRepricingConfig}.
|
464
504
|
# @!attribute [rw] name
|
465
505
|
# @return [::String]
|
466
506
|
# Required. The resource name of the CustomerRepricingConfig.
|
@@ -471,7 +511,8 @@ module Google
|
|
471
511
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
472
512
|
end
|
473
513
|
|
474
|
-
# Request message for
|
514
|
+
# Request message for
|
515
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customer_repricing_configs CloudChannelService.ListCustomerRepricingConfigs}.
|
475
516
|
# @!attribute [rw] parent
|
476
517
|
# @return [::String]
|
477
518
|
# Required. The resource name of the customer.
|
@@ -480,15 +521,17 @@ module Google
|
|
480
521
|
# customers.
|
481
522
|
# @!attribute [rw] page_size
|
482
523
|
# @return [::Integer]
|
483
|
-
# Optional. The maximum number of repricing configs to return. The service
|
484
|
-
# fewer than this value. If unspecified, returns a maximum of 50
|
485
|
-
# maximum value is 100; values above 100 will be coerced to 100.
|
524
|
+
# Optional. The maximum number of repricing configs to return. The service
|
525
|
+
# may return fewer than this value. If unspecified, returns a maximum of 50
|
526
|
+
# rules. The maximum value is 100; values above 100 will be coerced to 100.
|
486
527
|
# @!attribute [rw] page_token
|
487
528
|
# @return [::String]
|
488
529
|
# Optional. A token identifying a page of results beyond the first page.
|
489
530
|
# Obtained through
|
490
|
-
# {::Google::Cloud::Channel::V1::ListCustomerRepricingConfigsResponse#next_page_token ListCustomerRepricingConfigsResponse.next_page_token}
|
491
|
-
#
|
531
|
+
# {::Google::Cloud::Channel::V1::ListCustomerRepricingConfigsResponse#next_page_token ListCustomerRepricingConfigsResponse.next_page_token}
|
532
|
+
# of the previous
|
533
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customer_repricing_configs CloudChannelService.ListCustomerRepricingConfigs}
|
534
|
+
# call.
|
492
535
|
# @!attribute [rw] filter
|
493
536
|
# @return [::String]
|
494
537
|
# Optional. A filter for [CloudChannelService.ListCustomerRepricingConfigs]
|
@@ -503,25 +546,29 @@ module Google
|
|
503
546
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
504
547
|
end
|
505
548
|
|
506
|
-
# Response message for
|
549
|
+
# Response message for
|
550
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customer_repricing_configs CloudChannelService.ListCustomerRepricingConfigs}.
|
507
551
|
# @!attribute [rw] customer_repricing_configs
|
508
552
|
# @return [::Array<::Google::Cloud::Channel::V1::CustomerRepricingConfig>]
|
509
553
|
# The repricing configs for this channel partner.
|
510
554
|
# @!attribute [rw] next_page_token
|
511
555
|
# @return [::String]
|
512
556
|
# A token to retrieve the next page of results.
|
513
|
-
# Pass to
|
514
|
-
#
|
557
|
+
# Pass to
|
558
|
+
# {::Google::Cloud::Channel::V1::ListCustomerRepricingConfigsRequest#page_token ListCustomerRepricingConfigsRequest.page_token}
|
559
|
+
# to obtain that page.
|
515
560
|
class ListCustomerRepricingConfigsResponse
|
516
561
|
include ::Google::Protobuf::MessageExts
|
517
562
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
518
563
|
end
|
519
564
|
|
520
|
-
# Request message for
|
565
|
+
# Request message for
|
566
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_customer_repricing_config CloudChannelService.CreateCustomerRepricingConfig}.
|
521
567
|
# @!attribute [rw] parent
|
522
568
|
# @return [::String]
|
523
|
-
# Required. The resource name of the customer that will receive this
|
524
|
-
# Parent uses the format:
|
569
|
+
# Required. The resource name of the customer that will receive this
|
570
|
+
# repricing config. Parent uses the format:
|
571
|
+
# accounts/\\{account_id}/customers/\\{customer_id}
|
525
572
|
# @!attribute [rw] customer_repricing_config
|
526
573
|
# @return [::Google::Cloud::Channel::V1::CustomerRepricingConfig]
|
527
574
|
# Required. The CustomerRepricingConfig object to update.
|
@@ -530,7 +577,8 @@ module Google
|
|
530
577
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
531
578
|
end
|
532
579
|
|
533
|
-
# Request message for
|
580
|
+
# Request message for
|
581
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#update_customer_repricing_config CloudChannelService.UpdateCustomerRepricingConfig}.
|
534
582
|
# @!attribute [rw] customer_repricing_config
|
535
583
|
# @return [::Google::Cloud::Channel::V1::CustomerRepricingConfig]
|
536
584
|
# Required. The CustomerRepricingConfig object to update.
|
@@ -539,18 +587,20 @@ module Google
|
|
539
587
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
540
588
|
end
|
541
589
|
|
542
|
-
# Request message for
|
590
|
+
# Request message for
|
591
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#delete_customer_repricing_config CloudChannelService.DeleteCustomerRepricingConfig}.
|
543
592
|
# @!attribute [rw] name
|
544
593
|
# @return [::String]
|
545
|
-
# Required. The resource name of the customer repricing config rule to
|
546
|
-
# Format:
|
594
|
+
# Required. The resource name of the customer repricing config rule to
|
595
|
+
# delete. Format:
|
547
596
|
# accounts/\\{account_id}/customers/\\{customer_id}/customerRepricingConfigs/\\{id}.
|
548
597
|
class DeleteCustomerRepricingConfigRequest
|
549
598
|
include ::Google::Protobuf::MessageExts
|
550
599
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
551
600
|
end
|
552
601
|
|
553
|
-
# Request message for
|
602
|
+
# Request message for
|
603
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#get_channel_partner_repricing_config CloudChannelService.GetChannelPartnerRepricingConfig}
|
554
604
|
# @!attribute [rw] name
|
555
605
|
# @return [::String]
|
556
606
|
# Required. The resource name of the ChannelPartnerRepricingConfig
|
@@ -565,28 +615,31 @@ module Google
|
|
565
615
|
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_channel_partner_repricing_configs CloudChannelService.ListChannelPartnerRepricingConfigs}.
|
566
616
|
# @!attribute [rw] parent
|
567
617
|
# @return [::String]
|
568
|
-
# Required. The resource name of the account's
|
569
|
-
#
|
618
|
+
# Required. The resource name of the account's
|
619
|
+
# {::Google::Cloud::Channel::V1::ChannelPartnerLink ChannelPartnerLink}. Parent
|
620
|
+
# uses the format:
|
570
621
|
# accounts/\\{account_id}/channelPartnerLinks/\\{channel_partner_id}.
|
571
622
|
# Supports accounts/\\{account_id}/channelPartnerLinks/- to retrieve configs
|
572
623
|
# for all channel partners.
|
573
624
|
# @!attribute [rw] page_size
|
574
625
|
# @return [::Integer]
|
575
|
-
# Optional. The maximum number of repricing configs to return. The service
|
576
|
-
# fewer than this value. If unspecified, returns a maximum of 50
|
577
|
-
# maximum value is 100; values above 100 will be coerced to 100.
|
626
|
+
# Optional. The maximum number of repricing configs to return. The service
|
627
|
+
# may return fewer than this value. If unspecified, returns a maximum of 50
|
628
|
+
# rules. The maximum value is 100; values above 100 will be coerced to 100.
|
578
629
|
# @!attribute [rw] page_token
|
579
630
|
# @return [::String]
|
580
631
|
# Optional. A token identifying a page of results beyond the first page.
|
581
632
|
# Obtained through
|
582
|
-
# {::Google::Cloud::Channel::V1::ListChannelPartnerRepricingConfigsResponse#next_page_token ListChannelPartnerRepricingConfigsResponse.next_page_token}
|
583
|
-
#
|
633
|
+
# {::Google::Cloud::Channel::V1::ListChannelPartnerRepricingConfigsResponse#next_page_token ListChannelPartnerRepricingConfigsResponse.next_page_token}
|
634
|
+
# of the previous
|
635
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_channel_partner_repricing_configs CloudChannelService.ListChannelPartnerRepricingConfigs}
|
636
|
+
# call.
|
584
637
|
# @!attribute [rw] filter
|
585
638
|
# @return [::String]
|
586
|
-
# Optional. A filter for
|
587
|
-
#
|
588
|
-
# support a
|
589
|
-
# To use the filter, you must set
|
639
|
+
# Optional. A filter for
|
640
|
+
# [CloudChannelService.ListChannelPartnerRepricingConfigs] results
|
641
|
+
# (channel_partner_link only). You can use this filter when you support a
|
642
|
+
# BatchGet-like query. To use the filter, you must set
|
590
643
|
# `parent=accounts/{account_id}/channelPartnerLinks/-`.
|
591
644
|
#
|
592
645
|
# Example: `channel_partner_link =
|
@@ -605,8 +658,9 @@ module Google
|
|
605
658
|
# @!attribute [rw] next_page_token
|
606
659
|
# @return [::String]
|
607
660
|
# A token to retrieve the next page of results.
|
608
|
-
# Pass to
|
609
|
-
#
|
661
|
+
# Pass to
|
662
|
+
# {::Google::Cloud::Channel::V1::ListChannelPartnerRepricingConfigsRequest#page_token ListChannelPartnerRepricingConfigsRequest.page_token}
|
663
|
+
# to obtain that page.
|
610
664
|
class ListChannelPartnerRepricingConfigsResponse
|
611
665
|
include ::Google::Protobuf::MessageExts
|
612
666
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -616,8 +670,8 @@ module Google
|
|
616
670
|
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_channel_partner_repricing_config CloudChannelService.CreateChannelPartnerRepricingConfig}.
|
617
671
|
# @!attribute [rw] parent
|
618
672
|
# @return [::String]
|
619
|
-
# Required. The resource name of the ChannelPartner that will receive the
|
620
|
-
# config. Parent uses the format:
|
673
|
+
# Required. The resource name of the ChannelPartner that will receive the
|
674
|
+
# repricing config. Parent uses the format:
|
621
675
|
# accounts/\\{account_id}/channelPartnerLinks/\\{channel_partner_id}
|
622
676
|
# @!attribute [rw] channel_partner_repricing_config
|
623
677
|
# @return [::Google::Cloud::Channel::V1::ChannelPartnerRepricingConfig]
|
@@ -640,25 +694,28 @@ module Google
|
|
640
694
|
# Request message for DeleteChannelPartnerRepricingConfig.
|
641
695
|
# @!attribute [rw] name
|
642
696
|
# @return [::String]
|
643
|
-
# Required. The resource name of the channel partner repricing config rule to
|
697
|
+
# Required. The resource name of the channel partner repricing config rule to
|
698
|
+
# delete.
|
644
699
|
class DeleteChannelPartnerRepricingConfigRequest
|
645
700
|
include ::Google::Protobuf::MessageExts
|
646
701
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
647
702
|
end
|
648
703
|
|
649
|
-
# Request message for
|
704
|
+
# Request message for
|
705
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_entitlement CloudChannelService.CreateEntitlement}
|
650
706
|
# @!attribute [rw] parent
|
651
707
|
# @return [::String]
|
652
|
-
# Required. The resource name of the reseller's customer account in which to
|
653
|
-
# entitlement.
|
654
|
-
#
|
708
|
+
# Required. The resource name of the reseller's customer account in which to
|
709
|
+
# create the entitlement. Parent uses the format:
|
710
|
+
# accounts/\\{account_id}/customers/\\{customer_id}
|
655
711
|
# @!attribute [rw] entitlement
|
656
712
|
# @return [::Google::Cloud::Channel::V1::Entitlement]
|
657
713
|
# Required. The entitlement to create.
|
658
714
|
# @!attribute [rw] request_id
|
659
715
|
# @return [::String]
|
660
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
661
|
-
# your request, the server will know to ignore the request if it's
|
716
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
717
|
+
# retry your request, the server will know to ignore the request if it's
|
718
|
+
# complete.
|
662
719
|
#
|
663
720
|
# For example, you make an initial request and the request times out. If you
|
664
721
|
# make the request again with the same request ID, the server can check if
|
@@ -673,12 +730,13 @@ module Google
|
|
673
730
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
674
731
|
end
|
675
732
|
|
676
|
-
# Request message for
|
733
|
+
# Request message for
|
734
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#transfer_entitlements CloudChannelService.TransferEntitlements}.
|
677
735
|
# @!attribute [rw] parent
|
678
736
|
# @return [::String]
|
679
|
-
# Required. The resource name of the reseller's customer account that will
|
680
|
-
# transferred entitlements.
|
681
|
-
#
|
737
|
+
# Required. The resource name of the reseller's customer account that will
|
738
|
+
# receive transferred entitlements. Parent uses the format:
|
739
|
+
# accounts/\\{account_id}/customers/\\{customer_id}
|
682
740
|
# @!attribute [rw] entitlements
|
683
741
|
# @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
|
684
742
|
# Required. The new entitlements to create or transfer.
|
@@ -690,8 +748,9 @@ module Google
|
|
690
748
|
# See https://support.google.com/a/answer/7643790 for more details.
|
691
749
|
# @!attribute [rw] request_id
|
692
750
|
# @return [::String]
|
693
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
694
|
-
# your request, the server will know to ignore the request if it's
|
751
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
752
|
+
# retry your request, the server will know to ignore the request if it's
|
753
|
+
# complete.
|
695
754
|
#
|
696
755
|
# For example, you make an initial request and the request times out. If you
|
697
756
|
# make the request again with the same request ID, the server can check if
|
@@ -706,7 +765,8 @@ module Google
|
|
706
765
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
707
766
|
end
|
708
767
|
|
709
|
-
# Response message for
|
768
|
+
# Response message for
|
769
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#transfer_entitlements CloudChannelService.TransferEntitlements}.
|
710
770
|
# This is put in the response field of google.longrunning.Operation.
|
711
771
|
# @!attribute [rw] entitlements
|
712
772
|
# @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
|
@@ -716,19 +776,21 @@ module Google
|
|
716
776
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
717
777
|
end
|
718
778
|
|
719
|
-
# Request message for
|
779
|
+
# Request message for
|
780
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#transfer_entitlements_to_google CloudChannelService.TransferEntitlementsToGoogle}.
|
720
781
|
# @!attribute [rw] parent
|
721
782
|
# @return [::String]
|
722
|
-
# Required. The resource name of the reseller's customer account where the
|
723
|
-
# transfer from.
|
724
|
-
#
|
783
|
+
# Required. The resource name of the reseller's customer account where the
|
784
|
+
# entitlements transfer from. Parent uses the format:
|
785
|
+
# accounts/\\{account_id}/customers/\\{customer_id}
|
725
786
|
# @!attribute [rw] entitlements
|
726
787
|
# @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
|
727
788
|
# Required. The entitlements to transfer to Google.
|
728
789
|
# @!attribute [rw] request_id
|
729
790
|
# @return [::String]
|
730
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
731
|
-
# your request, the server will know to ignore the request if it's
|
791
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
792
|
+
# retry your request, the server will know to ignore the request if it's
|
793
|
+
# complete.
|
732
794
|
#
|
733
795
|
# For example, you make an initial request and the request times out. If you
|
734
796
|
# make the request again with the same request ID, the server can check if
|
@@ -751,14 +813,17 @@ module Google
|
|
751
813
|
# accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
|
752
814
|
# @!attribute [rw] parameters
|
753
815
|
# @return [::Array<::Google::Cloud::Channel::V1::Parameter>]
|
754
|
-
# Required. Entitlement parameters to update. You can only change editable
|
816
|
+
# Required. Entitlement parameters to update. You can only change editable
|
817
|
+
# parameters.
|
755
818
|
#
|
756
819
|
# To view the available Parameters for a request, refer to the
|
757
|
-
# {::Google::Cloud::Channel::V1::Offer#parameter_definitions Offer.parameter_definitions}
|
820
|
+
# {::Google::Cloud::Channel::V1::Offer#parameter_definitions Offer.parameter_definitions}
|
821
|
+
# from the desired offer.
|
758
822
|
# @!attribute [rw] request_id
|
759
823
|
# @return [::String]
|
760
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
761
|
-
# your request, the server will know to ignore the request if it's
|
824
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
825
|
+
# retry your request, the server will know to ignore the request if it's
|
826
|
+
# complete.
|
762
827
|
#
|
763
828
|
# For example, you make an initial request and the request times out. If you
|
764
829
|
# make the request again with the same request ID, the server can check if
|
@@ -776,7 +841,8 @@ module Google
|
|
776
841
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
777
842
|
end
|
778
843
|
|
779
|
-
# Request message for
|
844
|
+
# Request message for
|
845
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#change_renewal_settings CloudChannelService.ChangeRenewalSettings}.
|
780
846
|
# @!attribute [rw] name
|
781
847
|
# @return [::String]
|
782
848
|
# Required. The name of the entitlement to update.
|
@@ -787,8 +853,9 @@ module Google
|
|
787
853
|
# Required. New renewal settings.
|
788
854
|
# @!attribute [rw] request_id
|
789
855
|
# @return [::String]
|
790
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
791
|
-
# your request, the server will know to ignore the request if it's
|
856
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
857
|
+
# retry your request, the server will know to ignore the request if it's
|
858
|
+
# complete.
|
792
859
|
#
|
793
860
|
# For example, you make an initial request and the request times out. If you
|
794
861
|
# make the request again with the same request ID, the server can check if
|
@@ -803,7 +870,8 @@ module Google
|
|
803
870
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
804
871
|
end
|
805
872
|
|
806
|
-
# Request message for
|
873
|
+
# Request message for
|
874
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#change_offer CloudChannelService.ChangeOffer}.
|
807
875
|
# @!attribute [rw] name
|
808
876
|
# @return [::String]
|
809
877
|
# Required. The resource name of the entitlement to update.
|
@@ -815,15 +883,18 @@ module Google
|
|
815
883
|
# Format: accounts/\\{account_id}/offers/\\{offer_id}.
|
816
884
|
# @!attribute [rw] parameters
|
817
885
|
# @return [::Array<::Google::Cloud::Channel::V1::Parameter>]
|
818
|
-
# Optional. Parameters needed to purchase the Offer. To view the available
|
819
|
-
# refer to the
|
886
|
+
# Optional. Parameters needed to purchase the Offer. To view the available
|
887
|
+
# Parameters refer to the
|
888
|
+
# {::Google::Cloud::Channel::V1::Offer#parameter_definitions Offer.parameter_definitions}
|
889
|
+
# from the desired offer.
|
820
890
|
# @!attribute [rw] purchase_order_id
|
821
891
|
# @return [::String]
|
822
892
|
# Optional. Purchase order id provided by the reseller.
|
823
893
|
# @!attribute [rw] request_id
|
824
894
|
# @return [::String]
|
825
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
826
|
-
# your request, the server will know to ignore the request if it's
|
895
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
896
|
+
# retry your request, the server will know to ignore the request if it's
|
897
|
+
# complete.
|
827
898
|
#
|
828
899
|
# For example, you make an initial request and the request times out. If you
|
829
900
|
# make the request again with the same request ID, the server can check if
|
@@ -838,7 +909,8 @@ module Google
|
|
838
909
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
839
910
|
end
|
840
911
|
|
841
|
-
# Request message for
|
912
|
+
# Request message for
|
913
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#start_paid_service CloudChannelService.StartPaidService}.
|
842
914
|
# @!attribute [rw] name
|
843
915
|
# @return [::String]
|
844
916
|
# Required. The name of the entitlement to start a paid service for.
|
@@ -846,8 +918,9 @@ module Google
|
|
846
918
|
# accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
|
847
919
|
# @!attribute [rw] request_id
|
848
920
|
# @return [::String]
|
849
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
850
|
-
# your request, the server will know to ignore the request if it's
|
921
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
922
|
+
# retry your request, the server will know to ignore the request if it's
|
923
|
+
# complete.
|
851
924
|
#
|
852
925
|
# For example, you make an initial request and the request times out. If you
|
853
926
|
# make the request again with the same request ID, the server can check if
|
@@ -862,7 +935,8 @@ module Google
|
|
862
935
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
863
936
|
end
|
864
937
|
|
865
|
-
# Request message for
|
938
|
+
# Request message for
|
939
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#cancel_entitlement CloudChannelService.CancelEntitlement}.
|
866
940
|
# @!attribute [rw] name
|
867
941
|
# @return [::String]
|
868
942
|
# Required. The resource name of the entitlement to cancel.
|
@@ -870,8 +944,9 @@ module Google
|
|
870
944
|
# accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
|
871
945
|
# @!attribute [rw] request_id
|
872
946
|
# @return [::String]
|
873
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
874
|
-
# your request, the server will know to ignore the request if it's
|
947
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
948
|
+
# retry your request, the server will know to ignore the request if it's
|
949
|
+
# complete.
|
875
950
|
#
|
876
951
|
# For example, you make an initial request and the request times out. If you
|
877
952
|
# make the request again with the same request ID, the server can check if
|
@@ -886,7 +961,8 @@ module Google
|
|
886
961
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
887
962
|
end
|
888
963
|
|
889
|
-
# Request message for
|
964
|
+
# Request message for
|
965
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#suspend_entitlement CloudChannelService.SuspendEntitlement}.
|
890
966
|
# @!attribute [rw] name
|
891
967
|
# @return [::String]
|
892
968
|
# Required. The resource name of the entitlement to suspend.
|
@@ -894,8 +970,9 @@ module Google
|
|
894
970
|
# accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
|
895
971
|
# @!attribute [rw] request_id
|
896
972
|
# @return [::String]
|
897
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
898
|
-
# your request, the server will know to ignore the request if it's
|
973
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
974
|
+
# retry your request, the server will know to ignore the request if it's
|
975
|
+
# complete.
|
899
976
|
#
|
900
977
|
# For example, you make an initial request and the request times out. If you
|
901
978
|
# make the request again with the same request ID, the server can check if
|
@@ -910,7 +987,8 @@ module Google
|
|
910
987
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
911
988
|
end
|
912
989
|
|
913
|
-
# Request message for
|
990
|
+
# Request message for
|
991
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#activate_entitlement CloudChannelService.ActivateEntitlement}.
|
914
992
|
# @!attribute [rw] name
|
915
993
|
# @return [::String]
|
916
994
|
# Required. The resource name of the entitlement to activate.
|
@@ -918,8 +996,9 @@ module Google
|
|
918
996
|
# accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
|
919
997
|
# @!attribute [rw] request_id
|
920
998
|
# @return [::String]
|
921
|
-
# Optional. You can specify an optional unique request ID, and if you need to
|
922
|
-
# your request, the server will know to ignore the request if it's
|
999
|
+
# Optional. You can specify an optional unique request ID, and if you need to
|
1000
|
+
# retry your request, the server will know to ignore the request if it's
|
1001
|
+
# complete.
|
923
1002
|
#
|
924
1003
|
# For example, you make an initial request and the request times out. If you
|
925
1004
|
# make the request again with the same request ID, the server can check if
|
@@ -952,9 +1031,9 @@ module Google
|
|
952
1031
|
# Format: accounts/\\{account_id}.
|
953
1032
|
# @!attribute [rw] page_size
|
954
1033
|
# @return [::Integer]
|
955
|
-
# Optional. Requested page size. Server might return fewer results than
|
956
|
-
# If unspecified, returns at most 100 Products.
|
957
|
-
#
|
1034
|
+
# Optional. Requested page size. Server might return fewer results than
|
1035
|
+
# requested. If unspecified, returns at most 100 Products. The maximum value
|
1036
|
+
# is 1000; the server will coerce values above 1000.
|
958
1037
|
# @!attribute [rw] page_token
|
959
1038
|
# @return [::String]
|
960
1039
|
# Optional. A token for a page of results other than the first page.
|
@@ -992,9 +1071,9 @@ module Google
|
|
992
1071
|
# Format: accounts/\\{account_id}.
|
993
1072
|
# @!attribute [rw] page_size
|
994
1073
|
# @return [::Integer]
|
995
|
-
# Optional. Requested page size. Server might return fewer results than
|
996
|
-
# If unspecified, returns at most 100 SKUs.
|
997
|
-
#
|
1074
|
+
# Optional. Requested page size. Server might return fewer results than
|
1075
|
+
# requested. If unspecified, returns at most 100 SKUs. The maximum value is
|
1076
|
+
# 1000; the server will coerce values above 1000.
|
998
1077
|
# @!attribute [rw] page_token
|
999
1078
|
# @return [::String]
|
1000
1079
|
# Optional. A token for a page of results other than the first page.
|
@@ -1024,13 +1103,13 @@ module Google
|
|
1024
1103
|
# Request message for ListOffers.
|
1025
1104
|
# @!attribute [rw] parent
|
1026
1105
|
# @return [::String]
|
1027
|
-
# Required. The resource name of the reseller account from which to list
|
1028
|
-
# Parent uses the format: accounts/\\{account_id}.
|
1106
|
+
# Required. The resource name of the reseller account from which to list
|
1107
|
+
# Offers. Parent uses the format: accounts/\\{account_id}.
|
1029
1108
|
# @!attribute [rw] page_size
|
1030
1109
|
# @return [::Integer]
|
1031
|
-
# Optional. Requested page size. Server might return fewer results than
|
1032
|
-
# If unspecified, returns at most 500 Offers.
|
1033
|
-
#
|
1110
|
+
# Optional. Requested page size. Server might return fewer results than
|
1111
|
+
# requested. If unspecified, returns at most 500 Offers. The maximum value is
|
1112
|
+
# 1000; the server will coerce values above 1000.
|
1034
1113
|
# @!attribute [rw] page_token
|
1035
1114
|
# @return [::String]
|
1036
1115
|
# Optional. A token for a page of results other than the first page.
|
@@ -1076,9 +1155,9 @@ module Google
|
|
1076
1155
|
# Format: accounts/\\{account_id}/customers/\\{customer_id}.
|
1077
1156
|
# @!attribute [rw] page_size
|
1078
1157
|
# @return [::Integer]
|
1079
|
-
# Optional. Requested page size. Server might return fewer results than
|
1080
|
-
# If unspecified, returns at most 100 SKUs.
|
1081
|
-
#
|
1158
|
+
# Optional. Requested page size. Server might return fewer results than
|
1159
|
+
# requested. If unspecified, returns at most 100 SKUs. The maximum value is
|
1160
|
+
# 1000; the server will coerce values above 1000.
|
1082
1161
|
# @!attribute [rw] page_token
|
1083
1162
|
# @return [::String]
|
1084
1163
|
# Optional. A token for a page of results other than the first page.
|
@@ -1104,7 +1183,8 @@ module Google
|
|
1104
1183
|
end
|
1105
1184
|
|
1106
1185
|
# List SKUs for upgrading or downgrading an entitlement. Make the purchase
|
1107
|
-
# using
|
1186
|
+
# using
|
1187
|
+
# {::Google::Cloud::Channel::V1::CloudChannelService::Client#change_offer CloudChannelService.ChangeOffer}.
|
1108
1188
|
# @!attribute [rw] entitlement
|
1109
1189
|
# @return [::String]
|
1110
1190
|
# Required. Resource name of the entitlement.
|
@@ -1166,9 +1246,9 @@ module Google
|
|
1166
1246
|
# Format: accounts/\\{account_id}/customers/\\{customer_id}.
|
1167
1247
|
# @!attribute [rw] page_size
|
1168
1248
|
# @return [::Integer]
|
1169
|
-
# Optional. Requested page size. Server might return fewer results than
|
1170
|
-
# If unspecified, returns at most 100 Offers.
|
1171
|
-
#
|
1249
|
+
# Optional. Requested page size. Server might return fewer results than
|
1250
|
+
# requested. If unspecified, returns at most 100 Offers. The maximum value is
|
1251
|
+
# 1000; the server will coerce values above 1000.
|
1172
1252
|
# @!attribute [rw] page_token
|
1173
1253
|
# @return [::String]
|
1174
1254
|
# Optional. A token for a page of results other than the first page.
|
@@ -1236,7 +1316,8 @@ module Google
|
|
1236
1316
|
# Required. Resource name of the account.
|
1237
1317
|
# @!attribute [rw] service_account
|
1238
1318
|
# @return [::String]
|
1239
|
-
# Required. Service account that provides subscriber access to the registered
|
1319
|
+
# Required. Service account that provides subscriber access to the registered
|
1320
|
+
# topic.
|
1240
1321
|
class RegisterSubscriberRequest
|
1241
1322
|
include ::Google::Protobuf::MessageExts
|
1242
1323
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1257,7 +1338,8 @@ module Google
|
|
1257
1338
|
# Required. Resource name of the account.
|
1258
1339
|
# @!attribute [rw] service_account
|
1259
1340
|
# @return [::String]
|
1260
|
-
# Required. Service account to unregister from subscriber access to the
|
1341
|
+
# Required. Service account to unregister from subscriber access to the
|
1342
|
+
# topic.
|
1261
1343
|
class UnregisterSubscriberRequest
|
1262
1344
|
include ::Google::Protobuf::MessageExts
|
1263
1345
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1278,10 +1360,10 @@ module Google
|
|
1278
1360
|
# Required. Resource name of the account.
|
1279
1361
|
# @!attribute [rw] page_size
|
1280
1362
|
# @return [::Integer]
|
1281
|
-
# Optional. The maximum number of service accounts to return. The service may
|
1282
|
-
# fewer than this value.
|
1283
|
-
#
|
1284
|
-
#
|
1363
|
+
# Optional. The maximum number of service accounts to return. The service may
|
1364
|
+
# return fewer than this value. If unspecified, returns at most 100 service
|
1365
|
+
# accounts. The maximum value is 1000; the server will coerce values above
|
1366
|
+
# 1000.
|
1285
1367
|
# @!attribute [rw] page_token
|
1286
1368
|
# @return [::String]
|
1287
1369
|
# Optional. A page token, received from a previous `ListSubscribers` call.
|