google-cloud-channel-v1 0.5.0 → 0.6.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.
@@ -13,6 +13,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
13
13
  end
14
14
  add_enum "google.cloud.channel.v1.CustomerEvent.Type" do
15
15
  value :TYPE_UNSPECIFIED, 0
16
+ value :PRIMARY_DOMAIN_CHANGED, 1
17
+ value :PRIMARY_DOMAIN_VERIFIED, 2
16
18
  end
17
19
  add_message "google.cloud.channel.v1.EntitlementEvent" do
18
20
  optional :entitlement, :string, 1
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Channel
23
23
  module V1
24
- VERSION = "0.5.0"
24
+ VERSION = "0.6.0"
25
25
  end
26
26
  end
27
27
  end
@@ -82,9 +82,13 @@ module Google
82
82
  # @!attribute [r] primary_domain
83
83
  # @return [::String]
84
84
  # Output only. The primary domain name.
85
- # @!attribute [rw] is_domain_verified
85
+ # @!attribute [r] is_domain_verified
86
86
  # @return [::Boolean]
87
- # Whether the domain is verified.
87
+ # Output only. Whether the domain is verified.
88
+ # This field is not returned for a Customer's cloud_identity_info resource.
89
+ # Partners can use the domains.get() method of the Workspace SDK's
90
+ # Directory API, or listen to the PRIMARY_DOMAIN_VERIFIED Pub/Sub event in
91
+ # to track domain verification of their resolve Workspace customers.
88
92
  # @!attribute [rw] alternate_email
89
93
  # @return [::String]
90
94
  # The alternate email.
@@ -130,6 +134,9 @@ module Google
130
134
  # @!attribute [rw] proto_value
131
135
  # @return [::Google::Protobuf::Any]
132
136
  # Represents an 'Any' proto value.
137
+ # @!attribute [rw] bool_value
138
+ # @return [::Boolean]
139
+ # Represents a boolean value.
133
140
  class Value
134
141
  include ::Google::Protobuf::MessageExts
135
142
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -209,6 +209,9 @@ module Google
209
209
  # @!attribute [rw] sku
210
210
  # @return [::Google::Cloud::Channel::V1::Sku]
211
211
  # The SKU pertaining to the provisioning resource as specified in the Offer.
212
+ # @!attribute [rw] legacy_sku
213
+ # @return [::Google::Cloud::Channel::V1::Sku]
214
+ # Optional. The customer to transfer has an entitlement with the populated legacy SKU.
212
215
  class TransferableSku
213
216
  include ::Google::Protobuf::MessageExts
214
217
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -24,35 +24,34 @@ module Google
24
24
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#check_cloud_identity_accounts_exist CloudChannelService.CheckCloudIdentityAccountsExist}.
25
25
  # @!attribute [rw] parent
26
26
  # @return [::String]
27
- # Required. The resource name of the reseller account.
28
- # The parent takes the format: accounts/\\{account_id}
27
+ # Required. The reseller account's resource name.
28
+ # Parent uses the format: accounts/\\{account_id}
29
29
  # @!attribute [rw] domain
30
30
  # @return [::String]
31
- # Required. Domain for which the Cloud Identity account customer is fetched.
31
+ # Required. Domain to fetch for Cloud Identity account customer.
32
32
  class CheckCloudIdentityAccountsExistRequest
33
33
  include ::Google::Protobuf::MessageExts
34
34
  extend ::Google::Protobuf::MessageExts::ClassMethods
35
35
  end
36
36
 
37
- # Entity representing a Cloud Identity account which may or may not be
37
+ # Entity representing a Cloud Identity account that may be
38
38
  # associated with a Channel Services API partner.
39
39
  # @!attribute [rw] existing
40
40
  # @return [::Boolean]
41
- # True if a Cloud Identity account exists for a specific domain.
41
+ # Returns true if a Cloud Identity account exists for a specific domain.
42
42
  # @!attribute [rw] owned
43
43
  # @return [::Boolean]
44
- # True if the Cloud Identity account is associated with a customer
45
- # belonging to the Channel Services partner making the API call.
44
+ # Returns true if the Cloud Identity account is associated with a customer
45
+ # of the Channel Services partner.
46
46
  # @!attribute [rw] customer_name
47
47
  # @return [::String]
48
- # Name of the customer that owns the Cloud Identity account. This field is
49
- # populated ONLY if owned = true.
50
- # The customer_name takes the format:
48
+ # If owned = true, the name of the customer that owns the Cloud Identity
49
+ # account.
50
+ # Customer_name uses the format:
51
51
  # accounts/\\{account_id}/customers/\\{customer_id}
52
52
  # @!attribute [rw] customer_cloud_identity_id
53
53
  # @return [::String]
54
- # Cloud Identity ID of the customer. This field is populated ONLY if
55
- # existing = true.
54
+ # If existing = true, the Cloud Identity ID of the customer.
56
55
  class CloudIdentityCustomerAccount
57
56
  include ::Google::Protobuf::MessageExts
58
57
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -71,17 +70,17 @@ module Google
71
70
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customers CloudChannelService.ListCustomers}
72
71
  # @!attribute [rw] parent
73
72
  # @return [::String]
74
- # Required. The resource name of the reseller account from which to list customers.
75
- # The parent takes the format: accounts/\\{account_id}.
73
+ # Required. The resource name of the reseller account to list customers from.
74
+ # Parent uses the format: accounts/\\{account_id}.
76
75
  # @!attribute [rw] page_size
77
76
  # @return [::Integer]
78
77
  # Optional. The maximum number of customers to return. The service may return fewer
79
- # than this value. If unspecified, at most 10 customers will be returned. The
80
- # maximum value is 50; values about 50 will be coerced to 50.
78
+ # than this value. If unspecified, returns at most 10 customers. The
79
+ # maximum value is 50.
81
80
  # @!attribute [rw] page_token
82
81
  # @return [::String]
83
- # Optional. A token identifying a page of results, if other than the first one.
84
- # Typically obtained via
82
+ # Optional. A token identifying a page of results other than the first page.
83
+ # Obtained through
85
84
  # {::Google::Cloud::Channel::V1::ListCustomersResponse#next_page_token ListCustomersResponse.next_page_token} of the previous
86
85
  # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customers CloudChannelService.ListCustomers} call.
87
86
  class ListCustomersRequest
@@ -92,7 +91,7 @@ module Google
92
91
  # Response message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_customers CloudChannelService.ListCustomers}.
93
92
  # @!attribute [rw] customers
94
93
  # @return [::Array<::Google::Cloud::Channel::V1::Customer>]
95
- # The customers belonging to the reseller or distributor.
94
+ # The customers belonging to a reseller or distributor.
96
95
  # @!attribute [rw] next_page_token
97
96
  # @return [::String]
98
97
  # A token to retrieve the next page of results.
@@ -106,7 +105,7 @@ module Google
106
105
  # @!attribute [rw] name
107
106
  # @return [::String]
108
107
  # Required. The resource name of the customer to retrieve.
109
- # The name takes the format: accounts/\\{account_id}/customers/\\{customer_id}
108
+ # Name uses the format: accounts/\\{account_id}/customers/\\{customer_id}
110
109
  class GetCustomerRequest
111
110
  include ::Google::Protobuf::MessageExts
112
111
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -116,7 +115,7 @@ module Google
116
115
  # @!attribute [rw] parent
117
116
  # @return [::String]
118
117
  # Required. The resource name of reseller account in which to create the customer.
119
- # The parent takes the format: accounts/\\{account_id}
118
+ # Parent uses the format: accounts/\\{account_id}
120
119
  # @!attribute [rw] customer
121
120
  # @return [::Google::Cloud::Channel::V1::Customer]
122
121
  # Required. The customer to create.
@@ -160,8 +159,7 @@ module Google
160
159
  # Admin user information.
161
160
  # @!attribute [rw] validate_only
162
161
  # @return [::Boolean]
163
- # If set, validate the request and preview the review, but do not actually
164
- # post it.
162
+ # Validate the request and preview the review, but do not post it.
165
163
  class ProvisionCloudIdentityRequest
166
164
  include ::Google::Protobuf::MessageExts
167
165
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -170,18 +168,18 @@ module Google
170
168
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_entitlements CloudChannelService.ListEntitlements}
171
169
  # @!attribute [rw] parent
172
170
  # @return [::String]
173
- # Required. The resource name of the reseller's customer account for which to list
174
- # entitlements.
175
- # The parent takes the format: accounts/\\{account_id}/customers/\\{customer_id}
171
+ # Required. The resource name of the reseller's customer account to list
172
+ # entitlements for.
173
+ # Parent uses the format: accounts/\\{account_id}/customers/\\{customer_id}
176
174
  # @!attribute [rw] page_size
177
175
  # @return [::Integer]
178
176
  # Optional. Requested page size. Server might return fewer results than requested.
179
- # If unspecified, at most 50 entitlements will be returned.
180
- # The maximum value is 100; values above 100 will be coerced to 100.
177
+ # If unspecified, return at most 50 entitlements.
178
+ # The maximum value is 100; the server will coerce values above 100.
181
179
  # @!attribute [rw] page_token
182
180
  # @return [::String]
183
- # Optional. A token identifying a page of results, if other than the first one.
184
- # Typically obtained via
181
+ # Optional. A token for a page of results other than the first page.
182
+ # Obtained using
185
183
  # {::Google::Cloud::Channel::V1::ListEntitlementsResponse#next_page_token ListEntitlementsResponse.next_page_token} of the previous
186
184
  # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_entitlements CloudChannelService.ListEntitlements} call.
187
185
  class ListEntitlementsRequest
@@ -192,10 +190,10 @@ module Google
192
190
  # Response message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_entitlements CloudChannelService.ListEntitlements}.
193
191
  # @!attribute [rw] entitlements
194
192
  # @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
195
- # The entitlements belonging to the reseller's customer.
193
+ # The reseller customer's entitlements.
196
194
  # @!attribute [rw] next_page_token
197
195
  # @return [::String]
198
- # A token to List next page of results.
196
+ # A token to list the next page of results.
199
197
  # Pass to {::Google::Cloud::Channel::V1::ListEntitlementsRequest#page_token ListEntitlementsRequest.page_token} to obtain that page.
200
198
  class ListEntitlementsResponse
201
199
  include ::Google::Protobuf::MessageExts
@@ -210,37 +208,36 @@ module Google
210
208
  # @return [::String]
211
209
  # A reseller is required to create a customer and use the resource name of
212
210
  # the created customer here.
213
- # The customer_name takes the format:
211
+ # Customer_name uses the format:
214
212
  # accounts/\\{account_id}/customers/\\{customer_id}
215
213
  # @!attribute [rw] parent
216
214
  # @return [::String]
217
- # Required. The resource name of the reseller's account.
218
- # The parent takes the format: accounts/\\{account_id}
215
+ # Required. The reseller account's resource name.
216
+ # Parent uses the format: accounts/\\{account_id}
219
217
  # @!attribute [rw] page_size
220
218
  # @return [::Integer]
221
- # Requested page size. Server might return fewer results than requested.
222
- # If unspecified, at most 100 SKUs will be returned.
223
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
219
+ # The requested page size. Server might return fewer results than requested.
220
+ # If unspecified, returns at most 100 SKUs.
221
+ # The maximum value is 1000; the server will coerce values above 1000.
224
222
  # Optional.
225
223
  # @!attribute [rw] page_token
226
224
  # @return [::String]
227
- # A token identifying a page of results, if other than the first one.
228
- # Typically obtained via
225
+ # A token for a page of results other than the first page.
226
+ # Obtained using
229
227
  # {::Google::Cloud::Channel::V1::ListTransferableSkusResponse#next_page_token ListTransferableSkusResponse.next_page_token} of the previous
230
228
  # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_skus CloudChannelService.ListTransferableSkus} call.
231
229
  # Optional.
232
230
  # @!attribute [rw] auth_token
233
231
  # @return [::String]
234
- # This token is generated by the Super Admin of the resold customer to
232
+ # The super admin of the resold customer generates this token to
235
233
  # authorize a reseller to access their Cloud Identity and purchase
236
- # entitlements on their behalf. This token can be omitted once the
237
- # authorization is generated. See https://support.google.com/a/answer/7643790
238
- # for more details.
234
+ # entitlements on their behalf. You can omit this token after authorization.
235
+ # See https://support.google.com/a/answer/7643790 for more details.
239
236
  # @!attribute [rw] language_code
240
237
  # @return [::String]
241
- # The BCP-47 language code, such as "en-US". If specified, the
242
- # response will be localized to the corresponding language code. Default is
243
- # "en-US".
238
+ # The BCP-47 language code. For example, "en-US". The
239
+ # response will localize in the corresponding language code, if specified.
240
+ # The default value is "en-US".
244
241
  # Optional.
245
242
  class ListTransferableSkusRequest
246
243
  include ::Google::Protobuf::MessageExts
@@ -250,8 +247,7 @@ module Google
250
247
  # Response message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_skus CloudChannelService.ListTransferableSkus}.
251
248
  # @!attribute [rw] transferable_skus
252
249
  # @return [::Array<::Google::Cloud::Channel::V1::TransferableSku>]
253
- # Information about existing SKUs for a customer that would need to be
254
- # transferred.
250
+ # Information about existing SKUs for a customer that needs a transfer.
255
251
  # @!attribute [rw] next_page_token
256
252
  # @return [::String]
257
253
  # A token to retrieve the next page of results.
@@ -269,29 +265,29 @@ module Google
269
265
  # @!attribute [rw] customer_name
270
266
  # @return [::String]
271
267
  # A reseller should create a customer and use the resource name of
272
- # the created customer here.
268
+ # that customer here.
273
269
  # @!attribute [rw] parent
274
270
  # @return [::String]
275
271
  # Required. The resource name of the reseller's account.
276
272
  # @!attribute [rw] page_size
277
273
  # @return [::Integer]
278
274
  # Requested page size. Server might return fewer results than requested.
279
- # If unspecified, at most 100 Offers will be returned.
280
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
275
+ # If unspecified, returns at most 100 offers.
276
+ # The maximum value is 1000; the server will coerce values above 1000.
281
277
  # @!attribute [rw] page_token
282
278
  # @return [::String]
283
- # A token identifying a page of results, if other than the first one.
284
- # Typically obtained via
279
+ # A token for a page of results other than the first page.
280
+ # Obtained using
285
281
  # {::Google::Cloud::Channel::V1::ListTransferableOffersResponse#next_page_token ListTransferableOffersResponse.next_page_token} of the previous
286
282
  # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_transferable_offers CloudChannelService.ListTransferableOffers} call.
287
283
  # @!attribute [rw] sku
288
284
  # @return [::String]
289
- # Required. SKU for which the Offers are being looked up.
285
+ # Required. The SKU to look up Offers for.
290
286
  # @!attribute [rw] language_code
291
287
  # @return [::String]
292
- # The BCP-47 language code, such as "en-US". If specified, the
293
- # response will be localized to the corresponding language code. Default is
294
- # "en-US".
288
+ # The BCP-47 language code. For example, "en-US". The
289
+ # response will localize in the corresponding language code, if specified.
290
+ # The default value is "en-US".
295
291
  class ListTransferableOffersRequest
296
292
  include ::Google::Protobuf::MessageExts
297
293
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -326,8 +322,8 @@ module Google
326
322
  # @!attribute [rw] name
327
323
  # @return [::String]
328
324
  # Required. The resource name of the entitlement to retrieve.
329
- # The name takes the format:
330
- # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{id}
325
+ # Name uses the format:
326
+ # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
331
327
  class GetEntitlementRequest
332
328
  include ::Google::Protobuf::MessageExts
333
329
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -338,16 +334,16 @@ module Google
338
334
  # @return [::String]
339
335
  # Required. The resource name of the reseller account for listing channel partner
340
336
  # links.
341
- # The parent takes the format: accounts/\\{account_id}
337
+ # Parent uses the format: accounts/\\{account_id}
342
338
  # @!attribute [rw] page_size
343
339
  # @return [::Integer]
344
340
  # Optional. Requested page size. Server might return fewer results than requested.
345
341
  # If unspecified, server will pick a default size (25).
346
- # The maximum value is 200, values above 200 will be coerced to 200.
342
+ # The maximum value is 200; the server will coerce values above 200.
347
343
  # @!attribute [rw] page_token
348
344
  # @return [::String]
349
- # Optional. A token identifying a page of results, if other than the first one.
350
- # Typically obtained via
345
+ # Optional. A token for a page of results other than the first page.
346
+ # Obtained using
351
347
  # {::Google::Cloud::Channel::V1::ListChannelPartnerLinksResponse#next_page_token ListChannelPartnerLinksResponse.next_page_token} of the previous
352
348
  # {::Google::Cloud::Channel::V1::CloudChannelService::Client#list_channel_partner_links CloudChannelService.ListChannelPartnerLinks} call.
353
349
  # @!attribute [rw] view
@@ -375,7 +371,7 @@ module Google
375
371
  # @!attribute [rw] name
376
372
  # @return [::String]
377
373
  # Required. The resource name of the channel partner link to retrieve.
378
- # The name takes the format: accounts/\\{account_id}/channelPartnerLinks/\\{id}
374
+ # Name uses the format: accounts/\\{account_id}/channelPartnerLinks/\\{id}
379
375
  # where \\{id} is the Cloud Identity ID of the partner.
380
376
  # @!attribute [rw] view
381
377
  # @return [::Google::Cloud::Channel::V1::ChannelPartnerLinkView]
@@ -388,9 +384,9 @@ module Google
388
384
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_channel_partner_link CloudChannelService.CreateChannelPartnerLink}
389
385
  # @!attribute [rw] parent
390
386
  # @return [::String]
391
- # Required. The resource name of reseller's account for which to create a channel
392
- # partner link.
393
- # The parent takes the format: accounts/\\{account_id}
387
+ # Required. Create a channel partner link for the provided reseller account's
388
+ # resource name.
389
+ # Parent uses the format: accounts/\\{account_id}
394
390
  # @!attribute [rw] channel_partner_link
395
391
  # @return [::Google::Cloud::Channel::V1::ChannelPartnerLink]
396
392
  # Required. The channel partner link to create.
@@ -405,16 +401,16 @@ module Google
405
401
  # @!attribute [rw] name
406
402
  # @return [::String]
407
403
  # Required. The resource name of the channel partner link to cancel.
408
- # The name takes the format: accounts/\\{account_id}/channelPartnerLinks/\\{id}
404
+ # Name uses the format: accounts/\\{account_id}/channelPartnerLinks/\\{id}
409
405
  # where \\{id} is the Cloud Identity ID of the partner.
410
406
  # @!attribute [rw] channel_partner_link
411
407
  # @return [::Google::Cloud::Channel::V1::ChannelPartnerLink]
412
- # Required. The channel partner link to update. Only field
413
- # channel_partner_link.link_state is allowed to be updated.
408
+ # Required. The channel partner link to update. Only channel_partner_link.link_state
409
+ # is allowed for updates.
414
410
  # @!attribute [rw] update_mask
415
411
  # @return [::Google::Protobuf::FieldMask]
416
412
  # Required. The update mask that applies to the resource.
417
- # The only allowable value for update mask is
413
+ # The only allowable value for an update mask is
418
414
  # channel_partner_link.link_state.
419
415
  class UpdateChannelPartnerLinkRequest
420
416
  include ::Google::Protobuf::MessageExts
@@ -424,22 +420,21 @@ module Google
424
420
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#create_entitlement CloudChannelService.CreateEntitlement}
425
421
  # @!attribute [rw] parent
426
422
  # @return [::String]
427
- # Required. The resource name of reseller's customer account in which to create the
423
+ # Required. The resource name of the reseller's customer account in which to create the
428
424
  # entitlement.
429
- # The parent takes the format: accounts/\\{account_id}/customers/\\{customer_id}
425
+ # Parent uses the format: accounts/\\{account_id}/customers/\\{customer_id}
430
426
  # @!attribute [rw] entitlement
431
427
  # @return [::Google::Cloud::Channel::V1::Entitlement]
432
428
  # Required. The entitlement to create.
433
429
  # @!attribute [rw] request_id
434
430
  # @return [::String]
435
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
436
- # that if you must retry your request, the server will know to ignore the
437
- # request if it has already been completed.
431
+ # Optional. You can specify an optional unique request ID, and if you need to retry
432
+ # your request, the server will know to ignore the request if it's complete.
438
433
  #
439
- # For example, consider a situation where you make an initial request and
440
- # the request times out. If you make the request again with the same
441
- # request ID, the server can check if the original operation with the same
442
- # request ID was received, and if so, will ignore the second request.
434
+ # For example, you make an initial request and the request times out. If you
435
+ # make the request again with the same request ID, the server can check if
436
+ # it received the original operation with the same request ID. If it did, it
437
+ # will ignore the second request.
443
438
  #
444
439
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
445
440
  # with the exception that zero UUID is not supported
@@ -452,29 +447,27 @@ module Google
452
447
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#transfer_entitlements CloudChannelService.TransferEntitlements}.
453
448
  # @!attribute [rw] parent
454
449
  # @return [::String]
455
- # Required. The resource name of reseller's customer account where the entitlements
456
- # transfer to.
457
- # The parent takes the format: accounts/\\{account_id}/customers/\\{customer_id}
450
+ # Required. The resource name of the reseller's customer account that will receive
451
+ # transferred entitlements.
452
+ # Parent uses the format: accounts/\\{account_id}/customers/\\{customer_id}
458
453
  # @!attribute [rw] entitlements
459
454
  # @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
460
- # Required. The new entitlements to be created or transferred.
455
+ # Required. The new entitlements to create or transfer.
461
456
  # @!attribute [rw] auth_token
462
457
  # @return [::String]
463
- # This token is generated by the Super Admin of the resold customer to
458
+ # The super admin of the resold customer generates this token to
464
459
  # authorize a reseller to access their Cloud Identity and purchase
465
- # entitlements on their behalf. This token can be omitted once the
466
- # authorization is generated. See https://support.google.com/a/answer/7643790
467
- # for more details.
460
+ # entitlements on their behalf. You can omit this token after authorization.
461
+ # See https://support.google.com/a/answer/7643790 for more details.
468
462
  # @!attribute [rw] request_id
469
463
  # @return [::String]
470
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
471
- # that if you must retry your request, the server will know to ignore the
472
- # request if it has already been completed.
464
+ # Optional. You can specify an optional unique request ID, and if you need to retry
465
+ # your request, the server will know to ignore the request if it's complete.
473
466
  #
474
- # For example, consider a situation where you make an initial request and
475
- # the request times out. If you make the request again with the same
476
- # request ID, the server can check if the original operation with the same
477
- # request ID was received, and if so, will ignore the second request.
467
+ # For example, you make an initial request and the request times out. If you
468
+ # make the request again with the same request ID, the server can check if
469
+ # it received the original operation with the same request ID. If it did, it
470
+ # will ignore the second request.
478
471
  #
479
472
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
480
473
  # with the exception that zero UUID is not supported
@@ -485,10 +478,10 @@ module Google
485
478
  end
486
479
 
487
480
  # Response message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#transfer_entitlements CloudChannelService.TransferEntitlements}.
488
- # This will be put into the response field of google.longrunning.Operation.
481
+ # This is put in the response field of google.longrunning.Operation.
489
482
  # @!attribute [rw] entitlements
490
483
  # @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
491
- # The entitlements that have been transferred.
484
+ # The transferred entitlements.
492
485
  class TransferEntitlementsResponse
493
486
  include ::Google::Protobuf::MessageExts
494
487
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -497,22 +490,21 @@ module Google
497
490
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#transfer_entitlements_to_google CloudChannelService.TransferEntitlementsToGoogle}.
498
491
  # @!attribute [rw] parent
499
492
  # @return [::String]
500
- # Required. The resource name of reseller's customer account where the entitlements
493
+ # Required. The resource name of the reseller's customer account where the entitlements
501
494
  # transfer from.
502
- # The parent takes the format: accounts/\\{account_id}/customers/\\{customer_id}
495
+ # Parent uses the format: accounts/\\{account_id}/customers/\\{customer_id}
503
496
  # @!attribute [rw] entitlements
504
497
  # @return [::Array<::Google::Cloud::Channel::V1::Entitlement>]
505
- # Required. The entitlements to be transferred to Google.
498
+ # Required. The entitlements to transfer to Google.
506
499
  # @!attribute [rw] request_id
507
500
  # @return [::String]
508
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
509
- # that if you must retry your request, the server will know to ignore the
510
- # request if it has already been completed.
501
+ # Optional. You can specify an optional unique request ID, and if you need to retry
502
+ # your request, the server will know to ignore the request if it's complete.
511
503
  #
512
- # For example, consider a situation where you make an initial request and
513
- # the request times out. If you make the request again with the same
514
- # request ID, the server can check if the original operation with the same
515
- # request ID was received, and if so, will ignore the second request.
504
+ # For example, you make an initial request and the request times out. If you
505
+ # make the request again with the same request ID, the server can check if
506
+ # it received the original operation with the same request ID. If it did, it
507
+ # will ignore the second request.
516
508
  #
517
509
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
518
510
  # with the exception that zero UUID is not supported
@@ -526,26 +518,23 @@ module Google
526
518
  # @!attribute [rw] name
527
519
  # @return [::String]
528
520
  # Required. The name of the entitlement to update.
529
- # The name takes the format:
521
+ # Name uses the format:
530
522
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
531
523
  # @!attribute [rw] parameters
532
524
  # @return [::Array<::Google::Cloud::Channel::V1::Parameter>]
533
- # Required. Entitlement parameters to update. Only editable parameters are allowed to
534
- # be changed.
525
+ # Required. Entitlement parameters to update. You can only change editable parameters.
535
526
  # @!attribute [rw] request_id
536
527
  # @return [::String]
537
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
538
- # that if you must retry your request, the server will know to ignore the
539
- # request if it has already been completed.
528
+ # Optional. You can specify an optional unique request ID, and if you need to retry
529
+ # your request, the server will know to ignore the request if it's complete.
540
530
  #
541
- # For example, consider a situation where you make an initial request and
542
- # the request times out. If you make the request again with the same
543
- # request ID, the server can check if the original operation with the same
544
- # request ID was received, and if so, will ignore the second request.
531
+ # For example, you make an initial request and the request times out. If you
532
+ # make the request again with the same request ID, the server can check if
533
+ # it received the original operation with the same request ID. If it did, it
534
+ # will ignore the second request.
545
535
  #
546
- # The request ID must be
547
- # a valid [UUID](https://tools.ietf.org/html/rfc4122) with the exception that
548
- # zero UUID is not supported
536
+ # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
537
+ # with the exception that zero UUID is not supported
549
538
  # (`00000000-0000-0000-0000-000000000000`).
550
539
  # @!attribute [rw] purchase_order_id
551
540
  # @return [::String]
@@ -559,21 +548,20 @@ module Google
559
548
  # @!attribute [rw] name
560
549
  # @return [::String]
561
550
  # Required. The name of the entitlement to update.
562
- # The name takes the format:
551
+ # Name uses the format:
563
552
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
564
553
  # @!attribute [rw] renewal_settings
565
554
  # @return [::Google::Cloud::Channel::V1::RenewalSettings]
566
555
  # Required. New renewal settings.
567
556
  # @!attribute [rw] request_id
568
557
  # @return [::String]
569
- # Optional. A request ID to identify requests. Specify a unique request ID so
570
- # that if you must retry your request, the server will know to ignore the
571
- # request if it has already been completed.
558
+ # Optional. You can specify an optional unique request ID, and if you need to retry
559
+ # your request, the server will know to ignore the request if it's complete.
572
560
  #
573
- # For example, consider a situation where you make an initial request and
574
- # the request times out. If you make the request again with the same
575
- # request ID, the server can check if the original operation with the same
576
- # request ID was received, and if so, will ignore the second request.
561
+ # For example, you make an initial request and the request times out. If you
562
+ # make the request again with the same request ID, the server can check if
563
+ # it received the original operation with the same request ID. If it did, it
564
+ # will ignore the second request.
577
565
  #
578
566
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
579
567
  # with the exception that zero UUID is not supported
@@ -586,8 +574,8 @@ module Google
586
574
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#change_offer CloudChannelService.ChangeOffer}.
587
575
  # @!attribute [rw] name
588
576
  # @return [::String]
589
- # Required. The name of the entitlement to update.
590
- # Format:
577
+ # Required. The resource name of the entitlement to update.
578
+ # Name uses the format:
591
579
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
592
580
  # @!attribute [rw] offer
593
581
  # @return [::String]
@@ -601,14 +589,13 @@ module Google
601
589
  # Optional. Purchase order id provided by the reseller.
602
590
  # @!attribute [rw] request_id
603
591
  # @return [::String]
604
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
605
- # that if you must retry your request, the server will know to ignore the
606
- # request if it has already been completed.
592
+ # Optional. You can specify an optional unique request ID, and if you need to retry
593
+ # your request, the server will know to ignore the request if it's complete.
607
594
  #
608
- # For example, consider a situation where you make an initial request and
609
- # the request times out. If you make the request again with the same
610
- # request ID, the server can check if the original operation with the same
611
- # request ID was received, and if so, will ignore the second request.
595
+ # For example, you make an initial request and the request times out. If you
596
+ # make the request again with the same request ID, the server can check if
597
+ # it received the original operation with the same request ID. If it did, it
598
+ # will ignore the second request.
612
599
  #
613
600
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
614
601
  # with the exception that zero UUID is not supported
@@ -621,19 +608,18 @@ module Google
621
608
  # Request message for {::Google::Cloud::Channel::V1::CloudChannelService::Client#start_paid_service CloudChannelService.StartPaidService}.
622
609
  # @!attribute [rw] name
623
610
  # @return [::String]
624
- # Required. The name of the entitlement for which paid service is being started.
625
- # The name takes the format:
611
+ # Required. The name of the entitlement to start a paid service for.
612
+ # Name uses the format:
626
613
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
627
614
  # @!attribute [rw] request_id
628
615
  # @return [::String]
629
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
630
- # that if you must retry your request, the server will know to ignore the
631
- # request if it has already been completed.
616
+ # Optional. You can specify an optional unique request ID, and if you need to retry
617
+ # your request, the server will know to ignore the request if it's complete.
632
618
  #
633
- # For example, consider a situation where you make an initial request and
634
- # the request times out. If you make the request again with the same
635
- # request ID, the server can check if the original operation with the same
636
- # request ID was received, and if so, will ignore the second request.
619
+ # For example, you make an initial request and the request times out. If you
620
+ # make the request again with the same request ID, the server can check if
621
+ # it received the original operation with the same request ID. If it did, it
622
+ # will ignore the second request.
637
623
  #
638
624
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
639
625
  # with the exception that zero UUID is not supported
@@ -647,18 +633,17 @@ module Google
647
633
  # @!attribute [rw] name
648
634
  # @return [::String]
649
635
  # Required. The resource name of the entitlement to cancel.
650
- # The name takes the format:
636
+ # Name uses the format:
651
637
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
652
638
  # @!attribute [rw] request_id
653
639
  # @return [::String]
654
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
655
- # that if you must retry your request, the server will know to ignore the
656
- # request if it has already been completed.
640
+ # Optional. You can specify an optional unique request ID, and if you need to retry
641
+ # your request, the server will know to ignore the request if it's complete.
657
642
  #
658
- # For example, consider a situation where you make an initial request and
659
- # the request times out. If you make the request again with the same
660
- # request ID, the server can check if the original operation with the same
661
- # request ID was received, and if so, will ignore the second request.
643
+ # For example, you make an initial request and the request times out. If you
644
+ # make the request again with the same request ID, the server can check if
645
+ # it received the original operation with the same request ID. If it did, it
646
+ # will ignore the second request.
662
647
  #
663
648
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
664
649
  # with the exception that zero UUID is not supported
@@ -672,18 +657,17 @@ module Google
672
657
  # @!attribute [rw] name
673
658
  # @return [::String]
674
659
  # Required. The resource name of the entitlement to suspend.
675
- # The name takes the format:
660
+ # Name uses the format:
676
661
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
677
662
  # @!attribute [rw] request_id
678
663
  # @return [::String]
679
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
680
- # that if you must retry your request, the server will know to ignore the
681
- # request if it has already been completed.
664
+ # Optional. You can specify an optional unique request ID, and if you need to retry
665
+ # your request, the server will know to ignore the request if it's complete.
682
666
  #
683
- # For example, consider a situation where you make an initial request and
684
- # the request times out. If you make the request again with the same
685
- # request ID, the server can check if the original operation with the same
686
- # request ID was received, and if so, will ignore the second request.
667
+ # For example, you make an initial request and the request times out. If you
668
+ # make the request again with the same request ID, the server can check if
669
+ # it received the original operation with the same request ID. If it did, it
670
+ # will ignore the second request.
687
671
  #
688
672
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
689
673
  # with the exception that zero UUID is not supported
@@ -697,18 +681,17 @@ module Google
697
681
  # @!attribute [rw] name
698
682
  # @return [::String]
699
683
  # Required. The resource name of the entitlement to activate.
700
- # The name takes the format:
684
+ # Name uses the format:
701
685
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
702
686
  # @!attribute [rw] request_id
703
687
  # @return [::String]
704
- # Optional. An optional request ID to identify requests. Specify a unique request ID so
705
- # that if you must retry your request, the server will know to ignore the
706
- # request if it has already been completed.
688
+ # Optional. You can specify an optional unique request ID, and if you need to retry
689
+ # your request, the server will know to ignore the request if it's complete.
707
690
  #
708
- # For example, consider a situation where you make an initial request and
709
- # the request times out. If you make the request again with the same
710
- # request ID, the server can check if the original operation with the same
711
- # request ID was received, and if so, will ignore the second request.
691
+ # For example, you make an initial request and the request times out. If you
692
+ # make the request again with the same request ID, the server can check if
693
+ # it received the original operation with the same request ID. If it did, it
694
+ # will ignore the second request.
712
695
  #
713
696
  # The request ID must be a valid [UUID](https://tools.ietf.org/html/rfc4122)
714
697
  # with the exception that zero UUID is not supported
@@ -726,16 +709,16 @@ module Google
726
709
  # @!attribute [rw] page_size
727
710
  # @return [::Integer]
728
711
  # Optional. Requested page size. Server might return fewer results than requested.
729
- # If unspecified, at most 100 Products will be returned.
730
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
712
+ # If unspecified, returns at most 100 Products.
713
+ # The maximum value is 1000; the server will coerce values above 1000.
731
714
  # @!attribute [rw] page_token
732
715
  # @return [::String]
733
- # Optional. A token identifying a page of results, if other than the first one.
716
+ # Optional. A token for a page of results other than the first page.
734
717
  # @!attribute [rw] language_code
735
718
  # @return [::String]
736
- # Optional. The BCP-47 language code, such as "en-US". If specified, the
737
- # response will be localized to the corresponding language code. Default is
738
- # "en-US".
719
+ # Optional. The BCP-47 language code. For example, "en-US". The
720
+ # response will localize in the corresponding language code, if specified.
721
+ # The default value is "en-US".
739
722
  class ListProductsRequest
740
723
  include ::Google::Protobuf::MessageExts
741
724
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -756,8 +739,8 @@ module Google
756
739
  # Request message for ListSkus.
757
740
  # @!attribute [rw] parent
758
741
  # @return [::String]
759
- # Required. The resource name of the Product for which to list SKUs.
760
- # The parent takes the format: products/\\{product_id}.
742
+ # Required. The resource name of the Product to list SKUs for.
743
+ # Parent uses the format: products/\\{product_id}.
761
744
  # Supports products/- to retrieve SKUs for all products.
762
745
  # @!attribute [rw] account
763
746
  # @return [::String]
@@ -766,17 +749,17 @@ module Google
766
749
  # @!attribute [rw] page_size
767
750
  # @return [::Integer]
768
751
  # Optional. Requested page size. Server might return fewer results than requested.
769
- # If unspecified, at most 100 SKUs will be returned.
770
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
752
+ # If unspecified, returns at most 100 SKUs.
753
+ # The maximum value is 1000; the server will coerce values above 1000.
771
754
  # @!attribute [rw] page_token
772
755
  # @return [::String]
773
- # Optional. A token identifying a page of results, if other than the first one.
756
+ # Optional. A token for a page of results other than the first page.
774
757
  # Optional.
775
758
  # @!attribute [rw] language_code
776
759
  # @return [::String]
777
- # Optional. The BCP-47 language code, such as "en-US". If specified, the
778
- # response will be localized to the corresponding language code. Default is
779
- # "en-US".
760
+ # Optional. The BCP-47 language code. For example, "en-US". The
761
+ # response will localize in the corresponding language code, if specified.
762
+ # The default value is "en-US".
780
763
  class ListSkusRequest
781
764
  include ::Google::Protobuf::MessageExts
782
765
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -798,27 +781,27 @@ module Google
798
781
  # @!attribute [rw] parent
799
782
  # @return [::String]
800
783
  # Required. The resource name of the reseller account from which to list Offers.
801
- # The parent takes the format: accounts/\\{account_id}.
784
+ # Parent uses the format: accounts/\\{account_id}.
802
785
  # @!attribute [rw] page_size
803
786
  # @return [::Integer]
804
787
  # Optional. Requested page size. Server might return fewer results than requested.
805
- # If unspecified, at most 500 Offers will be returned.
806
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
788
+ # If unspecified, returns at most 500 Offers.
789
+ # The maximum value is 1000; the server will coerce values above 1000.
807
790
  # @!attribute [rw] page_token
808
791
  # @return [::String]
809
- # Optional. A token identifying a page of results, if other than the first one.
792
+ # Optional. A token for a page of results other than the first page.
810
793
  # @!attribute [rw] filter
811
794
  # @return [::String]
812
795
  # Optional. The expression to filter results by name (name of
813
- # the Offer), sku.name (name of the SKU) or sku.product.name (name of the
796
+ # the Offer), sku.name (name of the SKU), or sku.product.name (name of the
814
797
  # Product).
815
798
  # Example 1: sku.product.name=products/p1 AND sku.name!=products/p1/skus/s1
816
799
  # Example 2: name=accounts/a1/offers/o1
817
800
  # @!attribute [rw] language_code
818
801
  # @return [::String]
819
- # Optional. The BCP-47 language code, such as "en-US". If specified, the
820
- # response will be localized to the corresponding language code. Default is
821
- # "en-US".
802
+ # Optional. The BCP-47 language code. For example, "en-US". The
803
+ # response will localize in the corresponding language code, if specified.
804
+ # The default value is "en-US".
822
805
  class ListOffersRequest
823
806
  include ::Google::Protobuf::MessageExts
824
807
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -845,21 +828,21 @@ module Google
845
828
  # List SKUs for ChangeOffer purchase with a new SKU.
846
829
  # @!attribute [rw] customer
847
830
  # @return [::String]
848
- # Required. The resource name of the customer for which to list SKUs.
831
+ # Required. The resource name of the customer to list SKUs for.
849
832
  # Format: accounts/\\{account_id}/customers/\\{customer_id}.
850
833
  # @!attribute [rw] page_size
851
834
  # @return [::Integer]
852
835
  # Optional. Requested page size. Server might return fewer results than requested.
853
- # If unspecified, at most 100 SKUs will be returned.
854
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
836
+ # If unspecified, returns at most 100 SKUs.
837
+ # The maximum value is 1000; the server will coerce values above 1000.
855
838
  # @!attribute [rw] page_token
856
839
  # @return [::String]
857
- # Optional. A token identifying a page of results, if other than the first one.
840
+ # Optional. A token for a page of results other than the first page.
858
841
  # @!attribute [rw] language_code
859
842
  # @return [::String]
860
- # Optional. The BCP-47 language code, such as "en-US". If specified, the
861
- # response will be localized to the corresponding language code. Default is
862
- # "en-US".
843
+ # Optional. The BCP-47 language code. For example, "en-US". The
844
+ # response will localize in the corresponding language code, if specified.
845
+ # The default value is "en-US".
863
846
  class ListPurchasableSkusRequest
864
847
  include ::Google::Protobuf::MessageExts
865
848
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -916,7 +899,7 @@ module Google
916
899
  extend ::Google::Protobuf::MessageExts::ClassMethods
917
900
  end
918
901
 
919
- # SKU that can be used for a puchase. This is used in ListPurchasableSku API
902
+ # SKU that you can purchase. This is used in ListPurchasableSku API
920
903
  # response.
921
904
  # @!attribute [rw] sku
922
905
  # @return [::Google::Cloud::Channel::V1::Sku]
@@ -935,21 +918,21 @@ module Google
935
918
  # List Offers for ChangeOffer purchase.
936
919
  # @!attribute [rw] customer
937
920
  # @return [::String]
938
- # Required. The resource name of the customer for which to list Offers.
921
+ # Required. The resource name of the customer to list Offers for.
939
922
  # Format: accounts/\\{account_id}/customers/\\{customer_id}.
940
923
  # @!attribute [rw] page_size
941
924
  # @return [::Integer]
942
925
  # Optional. Requested page size. Server might return fewer results than requested.
943
- # If unspecified, at most 100 Offers will be returned.
944
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
926
+ # If unspecified, returns at most 100 Offers.
927
+ # The maximum value is 1000; the server will coerce values above 1000.
945
928
  # @!attribute [rw] page_token
946
929
  # @return [::String]
947
- # Optional. A token identifying a page of results, if other than the first one.
930
+ # Optional. A token for a page of results other than the first page.
948
931
  # @!attribute [rw] language_code
949
932
  # @return [::String]
950
- # Optional. The BCP-47 language code, such as "en-US". If specified, the
951
- # response will be localized to the corresponding language code. Default is
952
- # "en-US".
933
+ # Optional. The BCP-47 language code. For example, "en-US". The
934
+ # response will localize in the corresponding language code, if specified.
935
+ # The default value is "en-US".
953
936
  class ListPurchasableOffersRequest
954
937
  include ::Google::Protobuf::MessageExts
955
938
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -972,7 +955,7 @@ module Google
972
955
  # accounts/\\{account_id}/customers/\\{customer_id}/entitlements/\\{entitlement_id}
973
956
  # @!attribute [rw] new_sku
974
957
  # @return [::String]
975
- # Optional. Resource name of the SKU that is being changed to. Should be provided if
958
+ # Optional. Resource name of the new target SKU. Provide this SKU when
976
959
  # upgrading or downgrading an entitlement. Format:
977
960
  # products/\\{product_id}/skus/\\{sku_id}
978
961
  class ChangeOfferPurchase
@@ -993,7 +976,7 @@ module Google
993
976
  extend ::Google::Protobuf::MessageExts::ClassMethods
994
977
  end
995
978
 
996
- # Offer that can be puchased for a customer. This is used in
979
+ # Offer that you can purchase for a customer. This is used in the
997
980
  # ListPurchasableOffer API response.
998
981
  # @!attribute [rw] offer
999
982
  # @return [::Google::Cloud::Channel::V1::Offer]
@@ -1009,8 +992,7 @@ module Google
1009
992
  # Required. Resource name of the account.
1010
993
  # @!attribute [rw] service_account
1011
994
  # @return [::String]
1012
- # Required. Service account which will provide subscriber access to the
1013
- # registered topic.
995
+ # Required. Service account that provides subscriber access to the registered topic.
1014
996
  class RegisterSubscriberRequest
1015
997
  include ::Google::Protobuf::MessageExts
1016
998
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1019,7 +1001,7 @@ module Google
1019
1001
  # Response Message for RegisterSubscriber.
1020
1002
  # @!attribute [rw] topic
1021
1003
  # @return [::String]
1022
- # Name of the topic to which the subscriber will listen to.
1004
+ # Name of the topic the subscriber will listen to.
1023
1005
  class RegisterSubscriberResponse
1024
1006
  include ::Google::Protobuf::MessageExts
1025
1007
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1031,8 +1013,7 @@ module Google
1031
1013
  # Required. Resource name of the account.
1032
1014
  # @!attribute [rw] service_account
1033
1015
  # @return [::String]
1034
- # Required. Service account which will be unregistered from getting subscriber access
1035
- # to the topic.
1016
+ # Required. Service account to unregister from subscriber access to the topic.
1036
1017
  class UnregisterSubscriberRequest
1037
1018
  include ::Google::Protobuf::MessageExts
1038
1019
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1041,8 +1022,7 @@ module Google
1041
1022
  # Response Message for UnregisterSubscriber.
1042
1023
  # @!attribute [rw] topic
1043
1024
  # @return [::String]
1044
- # Name of the topic from which the service account subscriber access has been
1045
- # removed.
1025
+ # Name of the topic the service account subscriber access was removed from.
1046
1026
  class UnregisterSubscriberResponse
1047
1027
  include ::Google::Protobuf::MessageExts
1048
1028
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1056,15 +1036,15 @@ module Google
1056
1036
  # @return [::Integer]
1057
1037
  # Optional. The maximum number of service accounts to return. The service may return
1058
1038
  # fewer than this value.
1059
- # If unspecified, at most 100 service accounts will be returned.
1060
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
1039
+ # If unspecified, returns at most 100 service accounts.
1040
+ # The maximum value is 1000; the server will coerce values above 1000.
1061
1041
  # @!attribute [rw] page_token
1062
1042
  # @return [::String]
1063
1043
  # Optional. A page token, received from a previous `ListSubscribers` call.
1064
1044
  # Provide this to retrieve the subsequent page.
1065
1045
  #
1066
1046
  # When paginating, all other parameters provided to `ListSubscribers` must
1067
- # match the call that provided the page token.
1047
+ # match the call that provided the page token.
1068
1048
  class ListSubscribersRequest
1069
1049
  include ::Google::Protobuf::MessageExts
1070
1050
  extend ::Google::Protobuf::MessageExts::ClassMethods