Class: Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListTransferableSkusRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudchannelV1::GoogleCloudChannelV1ListTransferableSkusRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudchannel_v1/classes.rb,
lib/google/apis/cloudchannel_v1/representations.rb,
lib/google/apis/cloudchannel_v1/representations.rb
Overview
Request message for CloudChannelService.ListTransferableSkus
Instance Attribute Summary collapse
-
#auth_token ⇒ String
The super admin of the resold customer generates this token to authorize a reseller to access their Cloud Identity and purchase entitlements on their behalf.
-
#cloud_identity_id ⇒ String
Customer's Cloud Identity ID Corresponds to the JSON property
cloudIdentityId
. -
#customer_name ⇒ String
A reseller is required to create a customer and use the resource name of the created customer here.
-
#language_code ⇒ String
The BCP-47 language code.
-
#page_size ⇒ Fixnum
The requested page size.
-
#page_token ⇒ String
A token for a page of results other than the first page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudChannelV1ListTransferableSkusRequest
constructor
A new instance of GoogleCloudChannelV1ListTransferableSkusRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudChannelV1ListTransferableSkusRequest
Returns a new instance of GoogleCloudChannelV1ListTransferableSkusRequest.
1255 1256 1257 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1255 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auth_token ⇒ String
The super admin of the resold customer generates this token to authorize a
reseller to access their Cloud Identity and purchase entitlements on their
behalf. You can omit this token after authorization. See https://support.
google.com/a/answer/7643790 for more details.
Corresponds to the JSON property authToken
1220 1221 1222 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1220 def auth_token @auth_token end |
#cloud_identity_id ⇒ String
Customer's Cloud Identity ID
Corresponds to the JSON property cloudIdentityId
1225 1226 1227 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1225 def cloud_identity_id @cloud_identity_id end |
#customer_name ⇒ String
A reseller is required to create a customer and use the resource name of the
created customer here. Customer_name uses the format: accounts/account_id
/
customers/customer_id
Corresponds to the JSON property customerName
1232 1233 1234 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1232 def customer_name @customer_name end |
#language_code ⇒ String
The BCP-47 language code. For example, "en-US". The response will localize in
the corresponding language code, if specified. The default value is "en-US".
Optional.
Corresponds to the JSON property languageCode
1239 1240 1241 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1239 def language_code @language_code end |
#page_size ⇒ Fixnum
The requested page size. Server might return fewer results than requested. If
unspecified, returns at most 100 SKUs. The maximum value is 1000; the server
will coerce values above 1000. Optional.
Corresponds to the JSON property pageSize
1246 1247 1248 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1246 def page_size @page_size end |
#page_token ⇒ String
A token for a page of results other than the first page. Obtained using
ListTransferableSkusResponse.next_page_token of the previous
CloudChannelService.ListTransferableSkus call. Optional.
Corresponds to the JSON property pageToken
1253 1254 1255 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1253 def page_token @page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1260 1261 1262 1263 1264 1265 1266 1267 |
# File 'lib/google/apis/cloudchannel_v1/classes.rb', line 1260 def update!(**args) @auth_token = args[:auth_token] if args.key?(:auth_token) @cloud_identity_id = args[:cloud_identity_id] if args.key?(:cloud_identity_id) @customer_name = args[:customer_name] if args.key?(:customer_name) @language_code = args[:language_code] if args.key?(:language_code) @page_size = args[:page_size] if args.key?(:page_size) @page_token = args[:page_token] if args.key?(:page_token) end |