google-apis-deploymentmanager_v2beta 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: 928484224f901a142818a5a04e80282f17d7f62bb067b590c1c8348bdc0ec8c2
|
4
|
+
data.tar.gz: 96088999d129bb742a43863d18cc1542480995bb34aaee32c1fbf267f77f9e1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54c575cbc2bf8f1d1a3a2e76d31af61b1e3416e8a8f08cce0de5adfabdc5979c017959ae04e0ce32239cad42856b14aad14f42879283a721533475ee8b69aac6
|
7
|
+
data.tar.gz: 55f65f753536a937f31b81024bf5ba0300db513b2a795f41d5d0c2792e5f888c92f667082db08e39aef4726a464cb3ef7eb69355d6ded257f5577aa68fa8e400
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-deploymentmanager_v2beta
|
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
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.33.0 (2025-01-08)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250102
|
@@ -1161,6 +1161,12 @@ module Google
|
|
1161
1161
|
class InstancesBulkInsertOperationMetadata
|
1162
1162
|
include Google::Apis::Core::Hashable
|
1163
1163
|
|
1164
|
+
# [Output Only] The machine type of the VMs that were created used internally
|
1165
|
+
# only by KCP flex bulk insert.
|
1166
|
+
# Corresponds to the JSON property `machineType`
|
1167
|
+
# @return [String]
|
1168
|
+
attr_accessor :machine_type
|
1169
|
+
|
1164
1170
|
# Status information per location (location name is key). Example key: zones/us-
|
1165
1171
|
# central1-a
|
1166
1172
|
# Corresponds to the JSON property `perLocationStatus`
|
@@ -1173,6 +1179,7 @@ module Google
|
|
1173
1179
|
|
1174
1180
|
# Update properties of this object
|
1175
1181
|
def update!(**args)
|
1182
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
1176
1183
|
@per_location_status = args[:per_location_status] if args.key?(:per_location_status)
|
1177
1184
|
end
|
1178
1185
|
end
|
@@ -1424,6 +1431,12 @@ module Google
|
|
1424
1431
|
# @return [String]
|
1425
1432
|
attr_accessor :self_link_with_id
|
1426
1433
|
|
1434
|
+
# This field is used internally by the Autoscaler team and should not be
|
1435
|
+
# promoted to "alpha/beta/v1".
|
1436
|
+
# Corresponds to the JSON property `setAutoscalerLinkOperationMetadata`
|
1437
|
+
# @return [Google::Apis::DeploymentmanagerV2beta::SetAutoscalerLinkOperationMetadata]
|
1438
|
+
attr_accessor :set_autoscaler_link_operation_metadata
|
1439
|
+
|
1427
1440
|
# [Output Only] If the operation is for projects.setCommonInstanceMetadata, this
|
1428
1441
|
# field will contain information on all underlying zonal actions and their state.
|
1429
1442
|
# Corresponds to the JSON property `setCommonInstanceMetadataOperationMetadata`
|
@@ -1503,6 +1516,7 @@ module Google
|
|
1503
1516
|
@region = args[:region] if args.key?(:region)
|
1504
1517
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1505
1518
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
1519
|
+
@set_autoscaler_link_operation_metadata = args[:set_autoscaler_link_operation_metadata] if args.key?(:set_autoscaler_link_operation_metadata)
|
1506
1520
|
@set_common_instance_metadata_operation_metadata = args[:set_common_instance_metadata_operation_metadata] if args.key?(:set_common_instance_metadata_operation_metadata)
|
1507
1521
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1508
1522
|
@status = args[:status] if args.key?(:status)
|
@@ -2437,6 +2451,25 @@ module Google
|
|
2437
2451
|
end
|
2438
2452
|
end
|
2439
2453
|
|
2454
|
+
#
|
2455
|
+
class SetAutoscalerLinkOperationMetadata
|
2456
|
+
include Google::Apis::Core::Hashable
|
2457
|
+
|
2458
|
+
# List of zonal IGM IDs part of the RMIG.
|
2459
|
+
# Corresponds to the JSON property `zonalIgmIds`
|
2460
|
+
# @return [Array<Fixnum>]
|
2461
|
+
attr_accessor :zonal_igm_ids
|
2462
|
+
|
2463
|
+
def initialize(**args)
|
2464
|
+
update!(**args)
|
2465
|
+
end
|
2466
|
+
|
2467
|
+
# Update properties of this object
|
2468
|
+
def update!(**args)
|
2469
|
+
@zonal_igm_ids = args[:zonal_igm_ids] if args.key?(:zonal_igm_ids)
|
2470
|
+
end
|
2471
|
+
end
|
2472
|
+
|
2440
2473
|
#
|
2441
2474
|
class SetCommonInstanceMetadataOperationMetadata
|
2442
2475
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DeploymentmanagerV2beta
|
18
18
|
# Version of the google-apis-deploymentmanager_v2beta 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
|
-
GENERATOR_VERSION = "0.
|
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
|
@@ -358,6 +358,12 @@ module Google
|
|
358
358
|
include Google::Apis::Core::JsonObjectSupport
|
359
359
|
end
|
360
360
|
|
361
|
+
class SetAutoscalerLinkOperationMetadata
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
|
+
|
364
|
+
include Google::Apis::Core::JsonObjectSupport
|
365
|
+
end
|
366
|
+
|
361
367
|
class SetCommonInstanceMetadataOperationMetadata
|
362
368
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
363
369
|
|
@@ -745,6 +751,7 @@ module Google
|
|
745
751
|
class InstancesBulkInsertOperationMetadata
|
746
752
|
# @private
|
747
753
|
class Representation < Google::Apis::Core::JsonRepresentation
|
754
|
+
property :machine_type, as: 'machineType'
|
748
755
|
hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::DeploymentmanagerV2beta::BulkInsertOperationStatus, decorator: Google::Apis::DeploymentmanagerV2beta::BulkInsertOperationStatus::Representation
|
749
756
|
|
750
757
|
end
|
@@ -808,6 +815,8 @@ module Google
|
|
808
815
|
property :region, as: 'region'
|
809
816
|
property :self_link, as: 'selfLink'
|
810
817
|
property :self_link_with_id, as: 'selfLinkWithId'
|
818
|
+
property :set_autoscaler_link_operation_metadata, as: 'setAutoscalerLinkOperationMetadata', class: Google::Apis::DeploymentmanagerV2beta::SetAutoscalerLinkOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2beta::SetAutoscalerLinkOperationMetadata::Representation
|
819
|
+
|
811
820
|
property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerV2beta::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2beta::SetCommonInstanceMetadataOperationMetadata::Representation
|
812
821
|
|
813
822
|
property :start_time, as: 'startTime'
|
@@ -1067,6 +1076,13 @@ module Google
|
|
1067
1076
|
end
|
1068
1077
|
end
|
1069
1078
|
|
1079
|
+
class SetAutoscalerLinkOperationMetadata
|
1080
|
+
# @private
|
1081
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1082
|
+
collection :zonal_igm_ids, as: 'zonalIgmIds'
|
1083
|
+
end
|
1084
|
+
end
|
1085
|
+
|
1070
1086
|
class SetCommonInstanceMetadataOperationMetadata
|
1071
1087
|
# @private
|
1072
1088
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-deploymentmanager_v2beta
|
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_v2beta/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2beta/v0.35.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2beta
|
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 V2beta
|
79
79
|
test_files: []
|