google-apis-deploymentmanager_alpha 0.30.0 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/deploymentmanager_alpha/classes.rb +360 -2
- data/lib/google/apis/deploymentmanager_alpha/gem_version.rb +3 -3
- data/lib/google/apis/deploymentmanager_alpha/representations.rb +141 -0
- data/lib/google/apis/deploymentmanager_alpha/service.rb +66 -22
- metadata +6 -6
@@ -58,6 +58,7 @@ module Google
|
|
58
58
|
# The project ID for this request.
|
59
59
|
# @param [String] composite_type
|
60
60
|
# The name of the type for this request.
|
61
|
+
# @param [Boolean] header_bypass_billing_filter
|
61
62
|
# @param [String] fields
|
62
63
|
# Selector specifying which fields to include in a partial response.
|
63
64
|
# @param [String] quota_user
|
@@ -75,12 +76,13 @@ module Google
|
|
75
76
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
76
77
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
77
78
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
78
|
-
def delete_composite_type(project, composite_type, fields: nil, quota_user: nil, options: nil, &block)
|
79
|
+
def delete_composite_type(project, composite_type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
79
80
|
command = make_simple_command(:delete, 'deploymentmanager/alpha/projects/{project}/global/compositeTypes/{compositeType}', options)
|
80
81
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Operation::Representation
|
81
82
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
82
83
|
command.params['project'] = project unless project.nil?
|
83
84
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
85
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
84
86
|
command.query['fields'] = fields unless fields.nil?
|
85
87
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
86
88
|
execute_or_queue_command(command, &block)
|
@@ -91,6 +93,7 @@ module Google
|
|
91
93
|
# The project ID for this request.
|
92
94
|
# @param [String] composite_type
|
93
95
|
# The name of the composite type for this request.
|
96
|
+
# @param [Boolean] header_bypass_billing_filter
|
94
97
|
# @param [String] fields
|
95
98
|
# Selector specifying which fields to include in a partial response.
|
96
99
|
# @param [String] quota_user
|
@@ -108,12 +111,13 @@ module Google
|
|
108
111
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
109
112
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
110
113
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
111
|
-
def get_composite_type(project, composite_type, fields: nil, quota_user: nil, options: nil, &block)
|
114
|
+
def get_composite_type(project, composite_type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
112
115
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/compositeTypes/{compositeType}', options)
|
113
116
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::CompositeType::Representation
|
114
117
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::CompositeType
|
115
118
|
command.params['project'] = project unless project.nil?
|
116
119
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
120
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
117
121
|
command.query['fields'] = fields unless fields.nil?
|
118
122
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
119
123
|
execute_or_queue_command(command, &block)
|
@@ -123,6 +127,7 @@ module Google
|
|
123
127
|
# @param [String] project
|
124
128
|
# The project ID for this request.
|
125
129
|
# @param [Google::Apis::DeploymentmanagerAlpha::CompositeType] composite_type_object
|
130
|
+
# @param [Boolean] header_bypass_billing_filter
|
126
131
|
# @param [String] fields
|
127
132
|
# Selector specifying which fields to include in a partial response.
|
128
133
|
# @param [String] quota_user
|
@@ -140,13 +145,14 @@ module Google
|
|
140
145
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
141
146
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
142
147
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
143
|
-
def insert_composite_type(project, composite_type_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
148
|
+
def insert_composite_type(project, composite_type_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
144
149
|
command = make_simple_command(:post, 'deploymentmanager/alpha/projects/{project}/global/compositeTypes', options)
|
145
150
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::CompositeType::Representation
|
146
151
|
command.request_object = composite_type_object
|
147
152
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Operation::Representation
|
148
153
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
149
154
|
command.params['project'] = project unless project.nil?
|
155
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
150
156
|
command.query['fields'] = fields unless fields.nil?
|
151
157
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
152
158
|
execute_or_queue_command(command, &block)
|
@@ -240,6 +246,7 @@ module Google
|
|
240
246
|
# @param [String] composite_type
|
241
247
|
# The name of the composite type for this request.
|
242
248
|
# @param [Google::Apis::DeploymentmanagerAlpha::CompositeType] composite_type_object
|
249
|
+
# @param [Boolean] header_bypass_billing_filter
|
243
250
|
# @param [String] fields
|
244
251
|
# Selector specifying which fields to include in a partial response.
|
245
252
|
# @param [String] quota_user
|
@@ -257,7 +264,7 @@ module Google
|
|
257
264
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
258
265
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
259
266
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
260
|
-
def patch_composite_type(project, composite_type, composite_type_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
267
|
+
def patch_composite_type(project, composite_type, composite_type_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
261
268
|
command = make_simple_command(:patch, 'deploymentmanager/alpha/projects/{project}/global/compositeTypes/{compositeType}', options)
|
262
269
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::CompositeType::Representation
|
263
270
|
command.request_object = composite_type_object
|
@@ -265,6 +272,7 @@ module Google
|
|
265
272
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
266
273
|
command.params['project'] = project unless project.nil?
|
267
274
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
275
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
268
276
|
command.query['fields'] = fields unless fields.nil?
|
269
277
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
270
278
|
execute_or_queue_command(command, &block)
|
@@ -276,6 +284,7 @@ module Google
|
|
276
284
|
# @param [String] composite_type
|
277
285
|
# The name of the composite type for this request.
|
278
286
|
# @param [Google::Apis::DeploymentmanagerAlpha::CompositeType] composite_type_object
|
287
|
+
# @param [Boolean] header_bypass_billing_filter
|
279
288
|
# @param [String] fields
|
280
289
|
# Selector specifying which fields to include in a partial response.
|
281
290
|
# @param [String] quota_user
|
@@ -293,7 +302,7 @@ module Google
|
|
293
302
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
294
303
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
295
304
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
296
|
-
def update_composite_type(project, composite_type, composite_type_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
305
|
+
def update_composite_type(project, composite_type, composite_type_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
297
306
|
command = make_simple_command(:put, 'deploymentmanager/alpha/projects/{project}/global/compositeTypes/{compositeType}', options)
|
298
307
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::CompositeType::Representation
|
299
308
|
command.request_object = composite_type_object
|
@@ -301,6 +310,7 @@ module Google
|
|
301
310
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
302
311
|
command.params['project'] = project unless project.nil?
|
303
312
|
command.params['compositeType'] = composite_type unless composite_type.nil?
|
313
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
304
314
|
command.query['fields'] = fields unless fields.nil?
|
305
315
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
306
316
|
execute_or_queue_command(command, &block)
|
@@ -349,6 +359,7 @@ module Google
|
|
349
359
|
# The name of the deployment for this request.
|
350
360
|
# @param [String] delete_policy
|
351
361
|
# Sets the policy to use for deleting resources.
|
362
|
+
# @param [Boolean] header_bypass_billing_filter
|
352
363
|
# @param [String] fields
|
353
364
|
# Selector specifying which fields to include in a partial response.
|
354
365
|
# @param [String] quota_user
|
@@ -366,13 +377,14 @@ module Google
|
|
366
377
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
367
378
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
368
379
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
369
|
-
def delete_deployment(project, deployment, delete_policy: nil, fields: nil, quota_user: nil, options: nil, &block)
|
380
|
+
def delete_deployment(project, deployment, delete_policy: nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
370
381
|
command = make_simple_command(:delete, 'deploymentmanager/alpha/projects/{project}/global/deployments/{deployment}', options)
|
371
382
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Operation::Representation
|
372
383
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
373
384
|
command.params['project'] = project unless project.nil?
|
374
385
|
command.params['deployment'] = deployment unless deployment.nil?
|
375
386
|
command.query['deletePolicy'] = delete_policy unless delete_policy.nil?
|
387
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
376
388
|
command.query['fields'] = fields unless fields.nil?
|
377
389
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
378
390
|
execute_or_queue_command(command, &block)
|
@@ -383,6 +395,7 @@ module Google
|
|
383
395
|
# The project ID for this request.
|
384
396
|
# @param [String] deployment
|
385
397
|
# The name of the deployment for this request.
|
398
|
+
# @param [Boolean] header_bypass_billing_filter
|
386
399
|
# @param [String] fields
|
387
400
|
# Selector specifying which fields to include in a partial response.
|
388
401
|
# @param [String] quota_user
|
@@ -400,12 +413,13 @@ module Google
|
|
400
413
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
401
414
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
402
415
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
403
|
-
def get_deployment(project, deployment, fields: nil, quota_user: nil, options: nil, &block)
|
416
|
+
def get_deployment(project, deployment, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
404
417
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/deployments/{deployment}', options)
|
405
418
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Deployment::Representation
|
406
419
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Deployment
|
407
420
|
command.params['project'] = project unless project.nil?
|
408
421
|
command.params['deployment'] = deployment unless deployment.nil?
|
422
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
409
423
|
command.query['fields'] = fields unless fields.nil?
|
410
424
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
411
425
|
execute_or_queue_command(command, &block)
|
@@ -417,6 +431,7 @@ module Google
|
|
417
431
|
# Project ID for this request.
|
418
432
|
# @param [String] resource
|
419
433
|
# Name or id of the resource for this request.
|
434
|
+
# @param [Boolean] header_bypass_billing_filter
|
420
435
|
# @param [Fixnum] options_requested_policy_version
|
421
436
|
# Requested IAM Policy version.
|
422
437
|
# @param [String] fields
|
@@ -436,12 +451,13 @@ module Google
|
|
436
451
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
437
452
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
438
453
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
439
|
-
def get_deployment_iam_policy(project, resource, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
454
|
+
def get_deployment_iam_policy(project, resource, header_bypass_billing_filter: nil, options_requested_policy_version: nil, fields: nil, quota_user: nil, options: nil, &block)
|
440
455
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/deployments/{resource}/getIamPolicy', options)
|
441
456
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Policy::Representation
|
442
457
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Policy
|
443
458
|
command.params['project'] = project unless project.nil?
|
444
459
|
command.params['resource'] = resource unless resource.nil?
|
460
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
445
461
|
command.query['optionsRequestedPolicyVersion'] = options_requested_policy_version unless options_requested_policy_version.nil?
|
446
462
|
command.query['fields'] = fields unless fields.nil?
|
447
463
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -455,6 +471,7 @@ module Google
|
|
455
471
|
# @param [Google::Apis::DeploymentmanagerAlpha::Deployment] deployment_object
|
456
472
|
# @param [String] create_policy
|
457
473
|
# Sets the policy to use for creating new resources.
|
474
|
+
# @param [Boolean] header_bypass_billing_filter
|
458
475
|
# @param [Boolean] preview
|
459
476
|
# If set to true, creates a deployment and creates "shell" resources but does
|
460
477
|
# not actually instantiate these resources. This allows you to preview what your
|
@@ -480,7 +497,7 @@ module Google
|
|
480
497
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
481
498
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
482
499
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
483
|
-
def insert_deployment(project, deployment_object = nil, create_policy: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
500
|
+
def insert_deployment(project, deployment_object = nil, create_policy: nil, header_bypass_billing_filter: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
484
501
|
command = make_simple_command(:post, 'deploymentmanager/alpha/projects/{project}/global/deployments', options)
|
485
502
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::Deployment::Representation
|
486
503
|
command.request_object = deployment_object
|
@@ -488,6 +505,7 @@ module Google
|
|
488
505
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
489
506
|
command.params['project'] = project unless project.nil?
|
490
507
|
command.query['createPolicy'] = create_policy unless create_policy.nil?
|
508
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
491
509
|
command.query['preview'] = preview unless preview.nil?
|
492
510
|
command.query['fields'] = fields unless fields.nil?
|
493
511
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -587,6 +605,7 @@ module Google
|
|
587
605
|
# Sets the policy to use for creating new resources.
|
588
606
|
# @param [String] delete_policy
|
589
607
|
# Sets the policy to use for deleting resources.
|
608
|
+
# @param [Boolean] header_bypass_billing_filter
|
590
609
|
# @param [Boolean] preview
|
591
610
|
# If set to true, updates the deployment and creates and updates the "shell"
|
592
611
|
# resources but does not actually alter or instantiate these resources. This
|
@@ -615,7 +634,7 @@ module Google
|
|
615
634
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
616
635
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
617
636
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
618
|
-
def patch_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
637
|
+
def patch_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, header_bypass_billing_filter: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
619
638
|
command = make_simple_command(:patch, 'deploymentmanager/alpha/projects/{project}/global/deployments/{deployment}', options)
|
620
639
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::Deployment::Representation
|
621
640
|
command.request_object = deployment_object
|
@@ -625,6 +644,7 @@ module Google
|
|
625
644
|
command.params['deployment'] = deployment unless deployment.nil?
|
626
645
|
command.query['createPolicy'] = create_policy unless create_policy.nil?
|
627
646
|
command.query['deletePolicy'] = delete_policy unless delete_policy.nil?
|
647
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
628
648
|
command.query['preview'] = preview unless preview.nil?
|
629
649
|
command.query['fields'] = fields unless fields.nil?
|
630
650
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -711,6 +731,7 @@ module Google
|
|
711
731
|
# @param [String] resource
|
712
732
|
# Name or id of the resource for this request.
|
713
733
|
# @param [Google::Apis::DeploymentmanagerAlpha::TestPermissionsRequest] test_permissions_request_object
|
734
|
+
# @param [Boolean] header_bypass_billing_filter
|
714
735
|
# @param [String] fields
|
715
736
|
# Selector specifying which fields to include in a partial response.
|
716
737
|
# @param [String] quota_user
|
@@ -728,7 +749,7 @@ module Google
|
|
728
749
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
729
750
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
730
751
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
731
|
-
def test_deployment_iam_permissions(project, resource, test_permissions_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
752
|
+
def test_deployment_iam_permissions(project, resource, test_permissions_request_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
732
753
|
command = make_simple_command(:post, 'deploymentmanager/alpha/projects/{project}/global/deployments/{resource}/testIamPermissions', options)
|
733
754
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::TestPermissionsRequest::Representation
|
734
755
|
command.request_object = test_permissions_request_object
|
@@ -736,6 +757,7 @@ module Google
|
|
736
757
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::TestPermissionsResponse
|
737
758
|
command.params['project'] = project unless project.nil?
|
738
759
|
command.params['resource'] = resource unless resource.nil?
|
760
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
739
761
|
command.query['fields'] = fields unless fields.nil?
|
740
762
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
741
763
|
execute_or_queue_command(command, &block)
|
@@ -752,6 +774,7 @@ module Google
|
|
752
774
|
# Sets the policy to use for creating new resources.
|
753
775
|
# @param [String] delete_policy
|
754
776
|
# Sets the policy to use for deleting resources.
|
777
|
+
# @param [Boolean] header_bypass_billing_filter
|
755
778
|
# @param [Boolean] preview
|
756
779
|
# If set to true, updates the deployment and creates and updates the "shell"
|
757
780
|
# resources but does not actually alter or instantiate these resources. This
|
@@ -780,7 +803,7 @@ module Google
|
|
780
803
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
781
804
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
782
805
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
783
|
-
def update_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
806
|
+
def update_deployment(project, deployment, deployment_object = nil, create_policy: nil, delete_policy: nil, header_bypass_billing_filter: nil, preview: nil, fields: nil, quota_user: nil, options: nil, &block)
|
784
807
|
command = make_simple_command(:put, 'deploymentmanager/alpha/projects/{project}/global/deployments/{deployment}', options)
|
785
808
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::Deployment::Representation
|
786
809
|
command.request_object = deployment_object
|
@@ -790,6 +813,7 @@ module Google
|
|
790
813
|
command.params['deployment'] = deployment unless deployment.nil?
|
791
814
|
command.query['createPolicy'] = create_policy unless create_policy.nil?
|
792
815
|
command.query['deletePolicy'] = delete_policy unless delete_policy.nil?
|
816
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
793
817
|
command.query['preview'] = preview unless preview.nil?
|
794
818
|
command.query['fields'] = fields unless fields.nil?
|
795
819
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
@@ -803,6 +827,7 @@ module Google
|
|
803
827
|
# The name of the deployment for this request.
|
804
828
|
# @param [String] manifest
|
805
829
|
# The name of the manifest for this request.
|
830
|
+
# @param [Boolean] header_bypass_billing_filter
|
806
831
|
# @param [String] fields
|
807
832
|
# Selector specifying which fields to include in a partial response.
|
808
833
|
# @param [String] quota_user
|
@@ -820,13 +845,14 @@ module Google
|
|
820
845
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
821
846
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
822
847
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
823
|
-
def get_manifest(project, deployment, manifest, fields: nil, quota_user: nil, options: nil, &block)
|
848
|
+
def get_manifest(project, deployment, manifest, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
824
849
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/deployments/{deployment}/manifests/{manifest}', options)
|
825
850
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Manifest::Representation
|
826
851
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Manifest
|
827
852
|
command.params['project'] = project unless project.nil?
|
828
853
|
command.params['deployment'] = deployment unless deployment.nil?
|
829
854
|
command.params['manifest'] = manifest unless manifest.nil?
|
855
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
830
856
|
command.query['fields'] = fields unless fields.nil?
|
831
857
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
832
858
|
execute_or_queue_command(command, &block)
|
@@ -922,6 +948,7 @@ module Google
|
|
922
948
|
# The project ID for this request.
|
923
949
|
# @param [String] operation
|
924
950
|
# The name of the operation for this request.
|
951
|
+
# @param [Boolean] header_bypass_billing_filter
|
925
952
|
# @param [String] fields
|
926
953
|
# Selector specifying which fields to include in a partial response.
|
927
954
|
# @param [String] quota_user
|
@@ -939,12 +966,13 @@ module Google
|
|
939
966
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
940
967
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
941
968
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
942
|
-
def get_operation(project, operation, fields: nil, quota_user: nil, options: nil, &block)
|
969
|
+
def get_operation(project, operation, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
943
970
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/operations/{operation}', options)
|
944
971
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Operation::Representation
|
945
972
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
946
973
|
command.params['project'] = project unless project.nil?
|
947
974
|
command.params['operation'] = operation unless operation.nil?
|
975
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
948
976
|
command.query['fields'] = fields unless fields.nil?
|
949
977
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
950
978
|
execute_or_queue_command(command, &block)
|
@@ -1039,6 +1067,7 @@ module Google
|
|
1039
1067
|
# The name of the deployment for this request.
|
1040
1068
|
# @param [String] resource
|
1041
1069
|
# The name of the resource for this request.
|
1070
|
+
# @param [Boolean] header_bypass_billing_filter
|
1042
1071
|
# @param [String] fields
|
1043
1072
|
# Selector specifying which fields to include in a partial response.
|
1044
1073
|
# @param [String] quota_user
|
@@ -1056,13 +1085,14 @@ module Google
|
|
1056
1085
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1057
1086
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1058
1087
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1059
|
-
def get_resource(project, deployment, resource, fields: nil, quota_user: nil, options: nil, &block)
|
1088
|
+
def get_resource(project, deployment, resource, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1060
1089
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/deployments/{deployment}/resources/{resource}', options)
|
1061
1090
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Resource::Representation
|
1062
1091
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Resource
|
1063
1092
|
command.params['project'] = project unless project.nil?
|
1064
1093
|
command.params['deployment'] = deployment unless deployment.nil?
|
1065
1094
|
command.params['resource'] = resource unless resource.nil?
|
1095
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1066
1096
|
command.query['fields'] = fields unless fields.nil?
|
1067
1097
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1068
1098
|
execute_or_queue_command(command, &block)
|
@@ -1158,6 +1188,7 @@ module Google
|
|
1158
1188
|
# The project ID for this request.
|
1159
1189
|
# @param [String] type_provider
|
1160
1190
|
# The name of the type provider for this request.
|
1191
|
+
# @param [Boolean] header_bypass_billing_filter
|
1161
1192
|
# @param [String] fields
|
1162
1193
|
# Selector specifying which fields to include in a partial response.
|
1163
1194
|
# @param [String] quota_user
|
@@ -1175,12 +1206,13 @@ module Google
|
|
1175
1206
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1176
1207
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1177
1208
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1178
|
-
def delete_type_provider(project, type_provider, fields: nil, quota_user: nil, options: nil, &block)
|
1209
|
+
def delete_type_provider(project, type_provider, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1179
1210
|
command = make_simple_command(:delete, 'deploymentmanager/alpha/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1180
1211
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Operation::Representation
|
1181
1212
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
1182
1213
|
command.params['project'] = project unless project.nil?
|
1183
1214
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1215
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1184
1216
|
command.query['fields'] = fields unless fields.nil?
|
1185
1217
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1186
1218
|
execute_or_queue_command(command, &block)
|
@@ -1191,6 +1223,7 @@ module Google
|
|
1191
1223
|
# The project ID for this request.
|
1192
1224
|
# @param [String] type_provider
|
1193
1225
|
# The name of the type provider for this request.
|
1226
|
+
# @param [Boolean] header_bypass_billing_filter
|
1194
1227
|
# @param [String] fields
|
1195
1228
|
# Selector specifying which fields to include in a partial response.
|
1196
1229
|
# @param [String] quota_user
|
@@ -1208,12 +1241,13 @@ module Google
|
|
1208
1241
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1209
1242
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1210
1243
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1211
|
-
def get_type_provider(project, type_provider, fields: nil, quota_user: nil, options: nil, &block)
|
1244
|
+
def get_type_provider(project, type_provider, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1212
1245
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1213
1246
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::TypeProvider::Representation
|
1214
1247
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::TypeProvider
|
1215
1248
|
command.params['project'] = project unless project.nil?
|
1216
1249
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1250
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1217
1251
|
command.query['fields'] = fields unless fields.nil?
|
1218
1252
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1219
1253
|
execute_or_queue_command(command, &block)
|
@@ -1226,6 +1260,7 @@ module Google
|
|
1226
1260
|
# The name of the type provider for this request.
|
1227
1261
|
# @param [String] type
|
1228
1262
|
# The name of the type provider type for this request.
|
1263
|
+
# @param [Boolean] header_bypass_billing_filter
|
1229
1264
|
# @param [String] fields
|
1230
1265
|
# Selector specifying which fields to include in a partial response.
|
1231
1266
|
# @param [String] quota_user
|
@@ -1243,13 +1278,14 @@ module Google
|
|
1243
1278
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1244
1279
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1245
1280
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1246
|
-
def get_type_provider_type(project, type_provider, type, fields: nil, quota_user: nil, options: nil, &block)
|
1281
|
+
def get_type_provider_type(project, type_provider, type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1247
1282
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/typeProviders/{typeProvider}/types/{type}', options)
|
1248
1283
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::TypeInfo::Representation
|
1249
1284
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::TypeInfo
|
1250
1285
|
command.params['project'] = project unless project.nil?
|
1251
1286
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1252
1287
|
command.params['type'] = type unless type.nil?
|
1288
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1253
1289
|
command.query['fields'] = fields unless fields.nil?
|
1254
1290
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1255
1291
|
execute_or_queue_command(command, &block)
|
@@ -1259,6 +1295,7 @@ module Google
|
|
1259
1295
|
# @param [String] project
|
1260
1296
|
# The project ID for this request.
|
1261
1297
|
# @param [Google::Apis::DeploymentmanagerAlpha::TypeProvider] type_provider_object
|
1298
|
+
# @param [Boolean] header_bypass_billing_filter
|
1262
1299
|
# @param [String] fields
|
1263
1300
|
# Selector specifying which fields to include in a partial response.
|
1264
1301
|
# @param [String] quota_user
|
@@ -1276,13 +1313,14 @@ module Google
|
|
1276
1313
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1277
1314
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1278
1315
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1279
|
-
def insert_type_provider(project, type_provider_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1316
|
+
def insert_type_provider(project, type_provider_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1280
1317
|
command = make_simple_command(:post, 'deploymentmanager/alpha/projects/{project}/global/typeProviders', options)
|
1281
1318
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::TypeProvider::Representation
|
1282
1319
|
command.request_object = type_provider_object
|
1283
1320
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Operation::Representation
|
1284
1321
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
1285
1322
|
command.params['project'] = project unless project.nil?
|
1323
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1286
1324
|
command.query['fields'] = fields unless fields.nil?
|
1287
1325
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1288
1326
|
execute_or_queue_command(command, &block)
|
@@ -1461,6 +1499,7 @@ module Google
|
|
1461
1499
|
# @param [String] type_provider
|
1462
1500
|
# The name of the type provider for this request.
|
1463
1501
|
# @param [Google::Apis::DeploymentmanagerAlpha::TypeProvider] type_provider_object
|
1502
|
+
# @param [Boolean] header_bypass_billing_filter
|
1464
1503
|
# @param [String] fields
|
1465
1504
|
# Selector specifying which fields to include in a partial response.
|
1466
1505
|
# @param [String] quota_user
|
@@ -1478,7 +1517,7 @@ module Google
|
|
1478
1517
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1479
1518
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1480
1519
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1481
|
-
def patch_type_provider(project, type_provider, type_provider_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1520
|
+
def patch_type_provider(project, type_provider, type_provider_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1482
1521
|
command = make_simple_command(:patch, 'deploymentmanager/alpha/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1483
1522
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::TypeProvider::Representation
|
1484
1523
|
command.request_object = type_provider_object
|
@@ -1486,6 +1525,7 @@ module Google
|
|
1486
1525
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
1487
1526
|
command.params['project'] = project unless project.nil?
|
1488
1527
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1528
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1489
1529
|
command.query['fields'] = fields unless fields.nil?
|
1490
1530
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1491
1531
|
execute_or_queue_command(command, &block)
|
@@ -1497,6 +1537,7 @@ module Google
|
|
1497
1537
|
# @param [String] type_provider
|
1498
1538
|
# The name of the type provider for this request.
|
1499
1539
|
# @param [Google::Apis::DeploymentmanagerAlpha::TypeProvider] type_provider_object
|
1540
|
+
# @param [Boolean] header_bypass_billing_filter
|
1500
1541
|
# @param [String] fields
|
1501
1542
|
# Selector specifying which fields to include in a partial response.
|
1502
1543
|
# @param [String] quota_user
|
@@ -1514,7 +1555,7 @@ module Google
|
|
1514
1555
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1515
1556
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1516
1557
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1517
|
-
def update_type_provider(project, type_provider, type_provider_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1558
|
+
def update_type_provider(project, type_provider, type_provider_object = nil, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1518
1559
|
command = make_simple_command(:put, 'deploymentmanager/alpha/projects/{project}/global/typeProviders/{typeProvider}', options)
|
1519
1560
|
command.request_representation = Google::Apis::DeploymentmanagerAlpha::TypeProvider::Representation
|
1520
1561
|
command.request_object = type_provider_object
|
@@ -1522,6 +1563,7 @@ module Google
|
|
1522
1563
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Operation
|
1523
1564
|
command.params['project'] = project unless project.nil?
|
1524
1565
|
command.params['typeProvider'] = type_provider unless type_provider.nil?
|
1566
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1525
1567
|
command.query['fields'] = fields unless fields.nil?
|
1526
1568
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1527
1569
|
execute_or_queue_command(command, &block)
|
@@ -1532,6 +1574,7 @@ module Google
|
|
1532
1574
|
# The project ID for this request.
|
1533
1575
|
# @param [String] type
|
1534
1576
|
# The name of the type for this request.
|
1577
|
+
# @param [Boolean] header_bypass_billing_filter
|
1535
1578
|
# @param [String] fields
|
1536
1579
|
# Selector specifying which fields to include in a partial response.
|
1537
1580
|
# @param [String] quota_user
|
@@ -1549,12 +1592,13 @@ module Google
|
|
1549
1592
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1550
1593
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1551
1594
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1552
|
-
def get_type(project, type, fields: nil, quota_user: nil, options: nil, &block)
|
1595
|
+
def get_type(project, type, header_bypass_billing_filter: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1553
1596
|
command = make_simple_command(:get, 'deploymentmanager/alpha/projects/{project}/global/types/{type}', options)
|
1554
1597
|
command.response_representation = Google::Apis::DeploymentmanagerAlpha::Type::Representation
|
1555
1598
|
command.response_class = Google::Apis::DeploymentmanagerAlpha::Type
|
1556
1599
|
command.params['project'] = project unless project.nil?
|
1557
1600
|
command.params['type'] = type unless type.nil?
|
1601
|
+
command.query['header.bypassBillingFilter'] = header_bypass_billing_filter unless header_bypass_billing_filter.nil?
|
1558
1602
|
command.query['fields'] = fields unless fields.nil?
|
1559
1603
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1560
1604
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-deploymentmanager_alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.32.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: 2024-
|
11
|
+
date: 2024-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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-deploymentmanager_alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.32.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Deployment Manager V2 API Alpha
|