google-apis-deploymentmanager_alpha 0.33.0 → 0.35.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 372a34b4a49adfdf89441edb16c5554fcc379198a318e6b09f817859d18945cc
|
4
|
+
data.tar.gz: 9bf282b4592206530b70cfb88a5265fca8938deb6c5b528bcab9d492de9e6c29
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c48b24bee9167acbbe4149f117c6e0135c808eaefcded9bfedaebecc4f846a3b1ac62124529f0023fbbca2f83e163f8b27fbf6e088f712c11ddb9306bfbc1e5
|
7
|
+
data.tar.gz: 3575d4941e07dcfc86a4b5b2f71d42a17a03d8c86cc8537f6c255764fa753fee447bc614c224bfbb22aecf5ef5a6b7706cd0e44e8050b05696a702b242314176
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-deploymentmanager_alpha
|
2
2
|
|
3
|
+
### v0.35.0 (2025-04-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250403
|
6
|
+
|
7
|
+
### v0.34.0 (2025-03-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250320
|
10
|
+
|
3
11
|
### v0.33.0 (2025-01-12)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250102
|
@@ -1213,6 +1213,12 @@ module Google
|
|
1213
1213
|
class InstancesBulkInsertOperationMetadata
|
1214
1214
|
include Google::Apis::Core::Hashable
|
1215
1215
|
|
1216
|
+
# [Output Only] The machine type of the VMs that were created used internally
|
1217
|
+
# only by KCP flex bulk insert.
|
1218
|
+
# Corresponds to the JSON property `machineType`
|
1219
|
+
# @return [String]
|
1220
|
+
attr_accessor :machine_type
|
1221
|
+
|
1216
1222
|
# Status information per location (location name is key). Example key: zones/us-
|
1217
1223
|
# central1-a
|
1218
1224
|
# Corresponds to the JSON property `perLocationStatus`
|
@@ -1225,6 +1231,7 @@ module Google
|
|
1225
1231
|
|
1226
1232
|
# Update properties of this object
|
1227
1233
|
def update!(**args)
|
1234
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1228
1235
|
@per_location_status = args[:per_location_status] if args.key?(:per_location_status)
|
1229
1236
|
end
|
1230
1237
|
end
|
@@ -1521,6 +1528,12 @@ module Google
|
|
1521
1528
|
# @return [String]
|
1522
1529
|
attr_accessor :self_link_with_id
|
1523
1530
|
|
1531
|
+
# This field is used internally by the Autoscaler team and should not be
|
1532
|
+
# promoted to "alpha/beta/v1".
|
1533
|
+
# Corresponds to the JSON property `setAutoscalerLinkOperationMetadata`
|
1534
|
+
# @return [Google::Apis::DeploymentmanagerAlpha::SetAutoscalerLinkOperationMetadata]
|
1535
|
+
attr_accessor :set_autoscaler_link_operation_metadata
|
1536
|
+
|
1524
1537
|
# [Output Only] If the operation is for projects.setCommonInstanceMetadata, this
|
1525
1538
|
# field will contain information on all underlying zonal actions and their state.
|
1526
1539
|
# Corresponds to the JSON property `setCommonInstanceMetadataOperationMetadata`
|
@@ -1600,6 +1613,7 @@ module Google
|
|
1600
1613
|
@region = args[:region] if args.key?(:region)
|
1601
1614
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1602
1615
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
1616
|
+
@set_autoscaler_link_operation_metadata = args[:set_autoscaler_link_operation_metadata] if args.key?(:set_autoscaler_link_operation_metadata)
|
1603
1617
|
@set_common_instance_metadata_operation_metadata = args[:set_common_instance_metadata_operation_metadata] if args.key?(:set_common_instance_metadata_operation_metadata)
|
1604
1618
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1605
1619
|
@status = args[:status] if args.key?(:status)
|
@@ -2558,6 +2572,25 @@ module Google
|
|
2558
2572
|
end
|
2559
2573
|
end
|
2560
2574
|
|
2575
|
+
#
|
2576
|
+
class SetAutoscalerLinkOperationMetadata
|
2577
|
+
include Google::Apis::Core::Hashable
|
2578
|
+
|
2579
|
+
# List of zonal IGM IDs part of the RMIG.
|
2580
|
+
# Corresponds to the JSON property `zonalIgmIds`
|
2581
|
+
# @return [Array<Fixnum>]
|
2582
|
+
attr_accessor :zonal_igm_ids
|
2583
|
+
|
2584
|
+
def initialize(**args)
|
2585
|
+
update!(**args)
|
2586
|
+
end
|
2587
|
+
|
2588
|
+
# Update properties of this object
|
2589
|
+
def update!(**args)
|
2590
|
+
@zonal_igm_ids = args[:zonal_igm_ids] if args.key?(:zonal_igm_ids)
|
2591
|
+
end
|
2592
|
+
end
|
2593
|
+
|
2561
2594
|
#
|
2562
2595
|
class SetCommonInstanceMetadataOperationMetadata
|
2563
2596
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DeploymentmanagerAlpha
|
18
18
|
# Version of the google-apis-deploymentmanager_alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.35.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250403"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -370,6 +370,12 @@ module Google
|
|
370
370
|
include Google::Apis::Core::JsonObjectSupport
|
371
371
|
end
|
372
372
|
|
373
|
+
class SetAutoscalerLinkOperationMetadata
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
|
+
|
376
|
+
include Google::Apis::Core::JsonObjectSupport
|
377
|
+
end
|
378
|
+
|
373
379
|
class SetCommonInstanceMetadataOperationMetadata
|
374
380
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
375
381
|
|
@@ -773,6 +779,7 @@ module Google
|
|
773
779
|
class InstancesBulkInsertOperationMetadata
|
774
780
|
# @private
|
775
781
|
class Representation < Google::Apis::Core::JsonRepresentation
|
782
|
+
property :machine_type, as: 'machineType'
|
776
783
|
hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus, decorator: Google::Apis::DeploymentmanagerAlpha::BulkInsertOperationStatus::Representation
|
777
784
|
|
778
785
|
end
|
@@ -847,6 +854,8 @@ module Google
|
|
847
854
|
property :region, as: 'region'
|
848
855
|
property :self_link, as: 'selfLink'
|
849
856
|
property :self_link_with_id, as: 'selfLinkWithId'
|
857
|
+
property :set_autoscaler_link_operation_metadata, as: 'setAutoscalerLinkOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::SetAutoscalerLinkOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::SetAutoscalerLinkOperationMetadata::Representation
|
858
|
+
|
850
859
|
property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata::Representation
|
851
860
|
|
852
861
|
property :start_time, as: 'startTime'
|
@@ -1112,6 +1121,13 @@ module Google
|
|
1112
1121
|
end
|
1113
1122
|
end
|
1114
1123
|
|
1124
|
+
class SetAutoscalerLinkOperationMetadata
|
1125
|
+
# @private
|
1126
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1127
|
+
collection :zonal_igm_ids, as: 'zonalIgmIds'
|
1128
|
+
end
|
1129
|
+
end
|
1130
|
+
|
1115
1131
|
class SetCommonInstanceMetadataOperationMetadata
|
1116
1132
|
# @private
|
1117
1133
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.35.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_alpha/v0.35.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_alpha
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Cloud Deployment Manager V2 API Alpha
|
79
79
|
test_files: []
|