google-apis-cloudbilling_v1beta 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/cloudbilling_v1beta/classes.rb +1533 -0
- data/lib/google/apis/cloudbilling_v1beta/gem_version.rb +2 -2
- data/lib/google/apis/cloudbilling_v1beta/representations.rb +976 -167
- data/lib/google/apis/cloudbilling_v1beta/service.rb +492 -0
- metadata +3 -3
@@ -87,6 +87,498 @@ module Google
|
|
87
87
|
execute_or_queue_command(command, &block)
|
88
88
|
end
|
89
89
|
|
90
|
+
# Gets a Google Cloud service visible to a billing account.
|
91
|
+
# @param [String] name
|
92
|
+
# Required. The name of the billing account service to retrieve. Format:
|
93
|
+
# billingAccounts/`billing_account`/services/`service`
|
94
|
+
# @param [String] fields
|
95
|
+
# Selector specifying which fields to include in a partial response.
|
96
|
+
# @param [String] quota_user
|
97
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
98
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
99
|
+
# @param [Google::Apis::RequestOptions] options
|
100
|
+
# Request-specific options
|
101
|
+
#
|
102
|
+
# @yield [result, err] Result & error if block supplied
|
103
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaBillingAccountService] parsed result object
|
104
|
+
# @yieldparam err [StandardError] error object if request failed
|
105
|
+
#
|
106
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaBillingAccountService]
|
107
|
+
#
|
108
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
109
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
110
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
111
|
+
def get_billing_account_service(name, fields: nil, quota_user: nil, options: nil, &block)
|
112
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
113
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaBillingAccountService::Representation
|
114
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaBillingAccountService
|
115
|
+
command.params['name'] = name unless name.nil?
|
116
|
+
command.query['fields'] = fields unless fields.nil?
|
117
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
118
|
+
execute_or_queue_command(command, &block)
|
119
|
+
end
|
120
|
+
|
121
|
+
# Lists services visible to a billing account.
|
122
|
+
# @param [String] parent
|
123
|
+
# Required. The billing account to list billing account service from. Format:
|
124
|
+
# billingAccounts/`billing_account`
|
125
|
+
# @param [Fixnum] page_size
|
126
|
+
# Maximum number of billing account service to return. Results may return fewer
|
127
|
+
# than this value. Default value is 50 and maximum value is 5000.
|
128
|
+
# @param [String] page_token
|
129
|
+
# Page token received from a previous ListBillingAccountServices call to
|
130
|
+
# retrieve the next page of results. If this field is empty, the first page is
|
131
|
+
# returned.
|
132
|
+
# @param [String] fields
|
133
|
+
# Selector specifying which fields to include in a partial response.
|
134
|
+
# @param [String] quota_user
|
135
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
136
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
137
|
+
# @param [Google::Apis::RequestOptions] options
|
138
|
+
# Request-specific options
|
139
|
+
#
|
140
|
+
# @yield [result, err] Result & error if block supplied
|
141
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse] parsed result object
|
142
|
+
# @yieldparam err [StandardError] error object if request failed
|
143
|
+
#
|
144
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse]
|
145
|
+
#
|
146
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
147
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
148
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
149
|
+
def list_billing_account_services(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
150
|
+
command = make_simple_command(:get, 'v1beta/{+parent}/services', options)
|
151
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse::Representation
|
152
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountservicesV1betaListBillingAccountServicesResponse
|
153
|
+
command.params['parent'] = parent unless parent.nil?
|
154
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
155
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
156
|
+
command.query['fields'] = fields unless fields.nil?
|
157
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
158
|
+
execute_or_queue_command(command, &block)
|
159
|
+
end
|
160
|
+
|
161
|
+
# Gets a SKU group visible to a billing account.
|
162
|
+
# @param [String] name
|
163
|
+
# Required. The name of the BillingAccountSkuGroup to retrieve. Format:
|
164
|
+
# billingAccounts/`billing_account`/skuGroups/`sku_group`
|
165
|
+
# @param [String] fields
|
166
|
+
# Selector specifying which fields to include in a partial response.
|
167
|
+
# @param [String] quota_user
|
168
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
169
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
170
|
+
# @param [Google::Apis::RequestOptions] options
|
171
|
+
# Request-specific options
|
172
|
+
#
|
173
|
+
# @yield [result, err] Result & error if block supplied
|
174
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaBillingAccountSkuGroup] parsed result object
|
175
|
+
# @yieldparam err [StandardError] error object if request failed
|
176
|
+
#
|
177
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaBillingAccountSkuGroup]
|
178
|
+
#
|
179
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
180
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
181
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
182
|
+
def get_billing_account_sku_group(name, fields: nil, quota_user: nil, options: nil, &block)
|
183
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
184
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaBillingAccountSkuGroup::Representation
|
185
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaBillingAccountSkuGroup
|
186
|
+
command.params['name'] = name unless name.nil?
|
187
|
+
command.query['fields'] = fields unless fields.nil?
|
188
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
189
|
+
execute_or_queue_command(command, &block)
|
190
|
+
end
|
191
|
+
|
192
|
+
# Lists SKU groups visible to a billing account.
|
193
|
+
# @param [String] parent
|
194
|
+
# Required. The billing account to list billing account SKU groups from. Format:
|
195
|
+
# billingAccounts/`billing_account`
|
196
|
+
# @param [Fixnum] page_size
|
197
|
+
# Maximum number of billing account SKU groups to return. Results may return
|
198
|
+
# fewer than this value. Default value is 50 and maximum value is 5000.
|
199
|
+
# @param [String] page_token
|
200
|
+
# Page token received from a previous ListBillingAccountSkuGroups call to
|
201
|
+
# retrieve the next page of results. If this field is empty, the first page is
|
202
|
+
# returned.
|
203
|
+
# @param [String] fields
|
204
|
+
# Selector specifying which fields to include in a partial response.
|
205
|
+
# @param [String] quota_user
|
206
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
207
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
208
|
+
# @param [Google::Apis::RequestOptions] options
|
209
|
+
# Request-specific options
|
210
|
+
#
|
211
|
+
# @yield [result, err] Result & error if block supplied
|
212
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaListBillingAccountSkuGroupsResponse] parsed result object
|
213
|
+
# @yieldparam err [StandardError] error object if request failed
|
214
|
+
#
|
215
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaListBillingAccountSkuGroupsResponse]
|
216
|
+
#
|
217
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
218
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
219
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
220
|
+
def list_billing_account_sku_groups(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
221
|
+
command = make_simple_command(:get, 'v1beta/{+parent}/skuGroups', options)
|
222
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaListBillingAccountSkuGroupsResponse::Representation
|
223
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupsV1betaListBillingAccountSkuGroupsResponse
|
224
|
+
command.params['parent'] = parent unless parent.nil?
|
225
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
226
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
227
|
+
command.query['fields'] = fields unless fields.nil?
|
228
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
229
|
+
execute_or_queue_command(command, &block)
|
230
|
+
end
|
231
|
+
|
232
|
+
# Gets a SKU that is part of a billing account SKU group.
|
233
|
+
# @param [String] name
|
234
|
+
# Required. The name of the billing account SKU group SKU to retrieve. Format:
|
235
|
+
# billingAccounts/`billing_account`/skuGroups/`sku_group`/skus/`sku`
|
236
|
+
# @param [String] fields
|
237
|
+
# Selector specifying which fields to include in a partial response.
|
238
|
+
# @param [String] quota_user
|
239
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
240
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
241
|
+
# @param [Google::Apis::RequestOptions] options
|
242
|
+
# Request-specific options
|
243
|
+
#
|
244
|
+
# @yield [result, err] Result & error if block supplied
|
245
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaBillingAccountSkuGroupSku] parsed result object
|
246
|
+
# @yieldparam err [StandardError] error object if request failed
|
247
|
+
#
|
248
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaBillingAccountSkuGroupSku]
|
249
|
+
#
|
250
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
251
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
252
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
253
|
+
def get_billing_account_sku_group_sku(name, fields: nil, quota_user: nil, options: nil, &block)
|
254
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
255
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaBillingAccountSkuGroupSku::Representation
|
256
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaBillingAccountSkuGroupSku
|
257
|
+
command.params['name'] = name unless name.nil?
|
258
|
+
command.query['fields'] = fields unless fields.nil?
|
259
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
260
|
+
execute_or_queue_command(command, &block)
|
261
|
+
end
|
262
|
+
|
263
|
+
# Lists SKUs that is part of billing account SKU groups.
|
264
|
+
# @param [String] parent
|
265
|
+
# Required. The billing account SKU group to list billing account SKU group SKUs
|
266
|
+
# from. Format: billingAccounts/`billing_account`/skuGroups/`sku_group`
|
267
|
+
# @param [Fixnum] page_size
|
268
|
+
# Maximum number of billing account SKU group SKUs to return. Results may return
|
269
|
+
# fewer than this value. Default value is 50 and maximum value is 5000.
|
270
|
+
# @param [String] page_token
|
271
|
+
# Page token received from a previous ListBillingAccountSkuGroupSkus call to
|
272
|
+
# retrieve the next page of results. If this field is empty, the first page is
|
273
|
+
# returned.
|
274
|
+
# @param [String] fields
|
275
|
+
# Selector specifying which fields to include in a partial response.
|
276
|
+
# @param [String] quota_user
|
277
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
278
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
279
|
+
# @param [Google::Apis::RequestOptions] options
|
280
|
+
# Request-specific options
|
281
|
+
#
|
282
|
+
# @yield [result, err] Result & error if block supplied
|
283
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaListBillingAccountSkuGroupSkusResponse] parsed result object
|
284
|
+
# @yieldparam err [StandardError] error object if request failed
|
285
|
+
#
|
286
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaListBillingAccountSkuGroupSkusResponse]
|
287
|
+
#
|
288
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
289
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
290
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
291
|
+
def list_billing_account_sku_group_skus(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
292
|
+
command = make_simple_command(:get, 'v1beta/{+parent}/skus', options)
|
293
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaListBillingAccountSkuGroupSkusResponse::Representation
|
294
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskugroupskusV1betaListBillingAccountSkuGroupSkusResponse
|
295
|
+
command.params['parent'] = parent unless parent.nil?
|
296
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
297
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
298
|
+
command.query['fields'] = fields unless fields.nil?
|
299
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
300
|
+
execute_or_queue_command(command, &block)
|
301
|
+
end
|
302
|
+
|
303
|
+
# Gets a SKU visible to a billing account.
|
304
|
+
# @param [String] name
|
305
|
+
# Required. The name of the billing account SKU to retrieve. Format:
|
306
|
+
# billingAccounts/`billing_account`/skus/`sku`
|
307
|
+
# @param [String] fields
|
308
|
+
# Selector specifying which fields to include in a partial response.
|
309
|
+
# @param [String] quota_user
|
310
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
311
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
312
|
+
# @param [Google::Apis::RequestOptions] options
|
313
|
+
# Request-specific options
|
314
|
+
#
|
315
|
+
# @yield [result, err] Result & error if block supplied
|
316
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaBillingAccountSku] parsed result object
|
317
|
+
# @yieldparam err [StandardError] error object if request failed
|
318
|
+
#
|
319
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaBillingAccountSku]
|
320
|
+
#
|
321
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
322
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
323
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
324
|
+
def get_billing_account_sku(name, fields: nil, quota_user: nil, options: nil, &block)
|
325
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
326
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaBillingAccountSku::Representation
|
327
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaBillingAccountSku
|
328
|
+
command.params['name'] = name unless name.nil?
|
329
|
+
command.query['fields'] = fields unless fields.nil?
|
330
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
331
|
+
execute_or_queue_command(command, &block)
|
332
|
+
end
|
333
|
+
|
334
|
+
# Lists SKUs visible to a billing account.
|
335
|
+
# @param [String] parent
|
336
|
+
# Required. The billing account to list billing account SKU from. Format:
|
337
|
+
# billingAccounts/`billing_account`
|
338
|
+
# @param [String] filter
|
339
|
+
# Options for how to filter the billing account SKUs. Currently, only filter on `
|
340
|
+
# billing_account_service` is supported. Only !=, = operators are supported.
|
341
|
+
# Examples: - billing_account_service = "billingAccounts/012345-567890-ABCDEF/
|
342
|
+
# services/DA34-426B-A397"
|
343
|
+
# @param [Fixnum] page_size
|
344
|
+
# Maximum number of billing account SKUs to return. Results may return fewer
|
345
|
+
# than this value. Default value is 50 and maximum value is 5000.
|
346
|
+
# @param [String] page_token
|
347
|
+
# Page token received from a previous ListBillingAccountSkus call to retrieve
|
348
|
+
# the next page of results. If this field is empty, the first page is returned.
|
349
|
+
# @param [String] fields
|
350
|
+
# Selector specifying which fields to include in a partial response.
|
351
|
+
# @param [String] quota_user
|
352
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
353
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
354
|
+
# @param [Google::Apis::RequestOptions] options
|
355
|
+
# Request-specific options
|
356
|
+
#
|
357
|
+
# @yield [result, err] Result & error if block supplied
|
358
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaListBillingAccountSkusResponse] parsed result object
|
359
|
+
# @yieldparam err [StandardError] error object if request failed
|
360
|
+
#
|
361
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaListBillingAccountSkusResponse]
|
362
|
+
#
|
363
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
364
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
365
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
366
|
+
def list_billing_account_skus(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
367
|
+
command = make_simple_command(:get, 'v1beta/{+parent}/skus', options)
|
368
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaListBillingAccountSkusResponse::Representation
|
369
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountskusV1betaListBillingAccountSkusResponse
|
370
|
+
command.params['parent'] = parent unless parent.nil?
|
371
|
+
command.query['filter'] = filter unless filter.nil?
|
372
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
373
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
374
|
+
command.query['fields'] = fields unless fields.nil?
|
375
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
376
|
+
execute_or_queue_command(command, &block)
|
377
|
+
end
|
378
|
+
|
379
|
+
# Gets the latest price for the given billing account SKU.
|
380
|
+
# @param [String] name
|
381
|
+
# Required. Name of the latest billing account price to retrieve. Format:
|
382
|
+
# billingAccounts/`billing_account`/skus/`sku`/price
|
383
|
+
# @param [String] currency_code
|
384
|
+
# Optional. ISO-4217 currency code for the price. If not specified, currency of
|
385
|
+
# billing account will be used.
|
386
|
+
# @param [String] fields
|
387
|
+
# Selector specifying which fields to include in a partial response.
|
388
|
+
# @param [String] quota_user
|
389
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
390
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
391
|
+
# @param [Google::Apis::RequestOptions] options
|
392
|
+
# Request-specific options
|
393
|
+
#
|
394
|
+
# @yield [result, err] Result & error if block supplied
|
395
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountpricesV1betaBillingAccountPrice] parsed result object
|
396
|
+
# @yieldparam err [StandardError] error object if request failed
|
397
|
+
#
|
398
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountpricesV1betaBillingAccountPrice]
|
399
|
+
#
|
400
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
401
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
402
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
403
|
+
def get_billing_account_sku_price(name, currency_code: nil, fields: nil, quota_user: nil, options: nil, &block)
|
404
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
405
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountpricesV1betaBillingAccountPrice::Representation
|
406
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingBillingaccountpricesV1betaBillingAccountPrice
|
407
|
+
command.params['name'] = name unless name.nil?
|
408
|
+
command.query['currencyCode'] = currency_code unless currency_code.nil?
|
409
|
+
command.query['fields'] = fields unless fields.nil?
|
410
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
411
|
+
execute_or_queue_command(command, &block)
|
412
|
+
end
|
413
|
+
|
414
|
+
# Gets a publicly listed SKU group.
|
415
|
+
# @param [String] name
|
416
|
+
# Required. The name of the SKU group to retrieve. Format: skuGroups/`sku_group`
|
417
|
+
# @param [String] fields
|
418
|
+
# Selector specifying which fields to include in a partial response.
|
419
|
+
# @param [String] quota_user
|
420
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
421
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
422
|
+
# @param [Google::Apis::RequestOptions] options
|
423
|
+
# Request-specific options
|
424
|
+
#
|
425
|
+
# @yield [result, err] Result & error if block supplied
|
426
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaSkuGroup] parsed result object
|
427
|
+
# @yieldparam err [StandardError] error object if request failed
|
428
|
+
#
|
429
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaSkuGroup]
|
430
|
+
#
|
431
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
432
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
433
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
434
|
+
def get_sku_group(name, fields: nil, quota_user: nil, options: nil, &block)
|
435
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
436
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaSkuGroup::Representation
|
437
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaSkuGroup
|
438
|
+
command.params['name'] = name unless name.nil?
|
439
|
+
command.query['fields'] = fields unless fields.nil?
|
440
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
441
|
+
execute_or_queue_command(command, &block)
|
442
|
+
end
|
443
|
+
|
444
|
+
# Lists all publicly listed SKU groups.
|
445
|
+
# @param [Fixnum] page_size
|
446
|
+
# Maximum number of SKU groups to return. Results may return fewer than this
|
447
|
+
# value. Default value is 50 and maximum value is 5000.
|
448
|
+
# @param [String] page_token
|
449
|
+
# Page token received from a previous ListSkuGroups call to retrieve the next
|
450
|
+
# page of results. If this field is empty, the first page is returned.
|
451
|
+
# @param [String] fields
|
452
|
+
# Selector specifying which fields to include in a partial response.
|
453
|
+
# @param [String] quota_user
|
454
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
455
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
456
|
+
# @param [Google::Apis::RequestOptions] options
|
457
|
+
# Request-specific options
|
458
|
+
#
|
459
|
+
# @yield [result, err] Result & error if block supplied
|
460
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaListSkuGroupsResponse] parsed result object
|
461
|
+
# @yieldparam err [StandardError] error object if request failed
|
462
|
+
#
|
463
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaListSkuGroupsResponse]
|
464
|
+
#
|
465
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
466
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
467
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
468
|
+
def list_sku_groups(page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
469
|
+
command = make_simple_command(:get, 'v1beta/skuGroups', options)
|
470
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaListSkuGroupsResponse::Representation
|
471
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupsV1betaListSkuGroupsResponse
|
472
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
473
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
474
|
+
command.query['fields'] = fields unless fields.nil?
|
475
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
476
|
+
execute_or_queue_command(command, &block)
|
477
|
+
end
|
478
|
+
|
479
|
+
# Gets a publicly listed SKU that is part of a publicly listed SKU group.
|
480
|
+
# @param [String] name
|
481
|
+
# Required. The name of the SKU group SKU to retrieve. Format: skuGroups/`
|
482
|
+
# sku_group`/skus/`sku`
|
483
|
+
# @param [String] fields
|
484
|
+
# Selector specifying which fields to include in a partial response.
|
485
|
+
# @param [String] quota_user
|
486
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
487
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
488
|
+
# @param [Google::Apis::RequestOptions] options
|
489
|
+
# Request-specific options
|
490
|
+
#
|
491
|
+
# @yield [result, err] Result & error if block supplied
|
492
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaSkuGroupSku] parsed result object
|
493
|
+
# @yieldparam err [StandardError] error object if request failed
|
494
|
+
#
|
495
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaSkuGroupSku]
|
496
|
+
#
|
497
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
498
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
499
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
500
|
+
def get_sku_group_sku(name, fields: nil, quota_user: nil, options: nil, &block)
|
501
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
502
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaSkuGroupSku::Representation
|
503
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaSkuGroupSku
|
504
|
+
command.params['name'] = name unless name.nil?
|
505
|
+
command.query['fields'] = fields unless fields.nil?
|
506
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
507
|
+
execute_or_queue_command(command, &block)
|
508
|
+
end
|
509
|
+
|
510
|
+
# Lists all publicly listed SKUs contained by a publicly listed SKU group.
|
511
|
+
# @param [String] parent
|
512
|
+
# Required. The SkuGroup to list SkuGroupSku from. Format: skuGroups/`sku_group`
|
513
|
+
# @param [Fixnum] page_size
|
514
|
+
# Maximum number of SKU group SKUs to return. Results may return fewer than this
|
515
|
+
# value. Default value is 50 and maximum value is 5000.
|
516
|
+
# @param [String] page_token
|
517
|
+
# Page token received from a previous ListSkuGroupSkus call to retrieve the next
|
518
|
+
# page of results. If this field is empty, the first page is returned.
|
519
|
+
# @param [String] fields
|
520
|
+
# Selector specifying which fields to include in a partial response.
|
521
|
+
# @param [String] quota_user
|
522
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
523
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
524
|
+
# @param [Google::Apis::RequestOptions] options
|
525
|
+
# Request-specific options
|
526
|
+
#
|
527
|
+
# @yield [result, err] Result & error if block supplied
|
528
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaListSkuGroupSkusResponse] parsed result object
|
529
|
+
# @yieldparam err [StandardError] error object if request failed
|
530
|
+
#
|
531
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaListSkuGroupSkusResponse]
|
532
|
+
#
|
533
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
534
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
535
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
536
|
+
def list_sku_group_skus(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
537
|
+
command = make_simple_command(:get, 'v1beta/{+parent}/skus', options)
|
538
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaListSkuGroupSkusResponse::Representation
|
539
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingSkugroupskusV1betaListSkuGroupSkusResponse
|
540
|
+
command.params['parent'] = parent unless parent.nil?
|
541
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
542
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
543
|
+
command.query['fields'] = fields unless fields.nil?
|
544
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
545
|
+
execute_or_queue_command(command, &block)
|
546
|
+
end
|
547
|
+
|
548
|
+
# Gets the latest price for the given SKU.
|
549
|
+
# @param [String] name
|
550
|
+
# Required. Name of the latest price to retrieve. Format: skus/`sku`/price
|
551
|
+
# @param [String] currency_code
|
552
|
+
# Optional. ISO-4217 currency code for the price. If not specified, USD will be
|
553
|
+
# used.
|
554
|
+
# @param [String] fields
|
555
|
+
# Selector specifying which fields to include in a partial response.
|
556
|
+
# @param [String] quota_user
|
557
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
558
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
559
|
+
# @param [Google::Apis::RequestOptions] options
|
560
|
+
# Request-specific options
|
561
|
+
#
|
562
|
+
# @yield [result, err] Result & error if block supplied
|
563
|
+
# @yieldparam result [Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaPrice] parsed result object
|
564
|
+
# @yieldparam err [StandardError] error object if request failed
|
565
|
+
#
|
566
|
+
# @return [Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaPrice]
|
567
|
+
#
|
568
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
569
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
570
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
571
|
+
def get_sku_price(name, currency_code: nil, fields: nil, quota_user: nil, options: nil, &block)
|
572
|
+
command = make_simple_command(:get, 'v1beta/{+name}', options)
|
573
|
+
command.response_representation = Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaPrice::Representation
|
574
|
+
command.response_class = Google::Apis::CloudbillingV1beta::GoogleCloudBillingPricesV1betaPrice
|
575
|
+
command.params['name'] = name unless name.nil?
|
576
|
+
command.query['currencyCode'] = currency_code unless currency_code.nil?
|
577
|
+
command.query['fields'] = fields unless fields.nil?
|
578
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
579
|
+
execute_or_queue_command(command, &block)
|
580
|
+
end
|
581
|
+
|
90
582
|
# Estimate list prices using a `CostScenario` without a defined `billingAccount`.
|
91
583
|
# @param [Google::Apis::CloudbillingV1beta::EstimateCostScenarioWithListPriceRequest] estimate_cost_scenario_with_list_price_request_object
|
92
584
|
# @param [String] fields
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudbilling_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbilling_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbilling_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudbilling_v1beta/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudbilling_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|