google-apis-deploymentmanager_v2 0.34.0 → 0.36.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: 756f82eecc716746225312c26e045aa39f11ca954d61dd044ac872f403e8c0e5
|
4
|
+
data.tar.gz: d58e13d4a695499834293f4daef647b2fcdd9b82728ce0236f84a9f867bb20ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d15b958d954872e5d8998ab9e8af209e18c26483ee3857c06693b6b23020c8d12a3ff593e166b8baa709604d987bcffbfaf3c47d655a08fec4d037b5d29177aa
|
7
|
+
data.tar.gz: 185d3760a237a7f2c2f24cc0d62e8d11f325a8d56c60aa934e10a980209e5ac5de757c792a5f82ed22b02e5847395d5b5533b84c189f45c190f497b81666acc9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-deploymentmanager_v2
|
2
2
|
|
3
|
+
### v0.36.0 (2025-04-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250403
|
6
|
+
|
7
|
+
### v0.35.0 (2025-03-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250320
|
10
|
+
* Regenerated using generator version 0.16.0
|
11
|
+
|
3
12
|
### v0.34.0 (2025-01-07)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250102
|
@@ -814,6 +814,12 @@ module Google
|
|
814
814
|
class InstancesBulkInsertOperationMetadata
|
815
815
|
include Google::Apis::Core::Hashable
|
816
816
|
|
817
|
+
# [Output Only] The machine type of the VMs that were created used internally
|
818
|
+
# only by KCP flex bulk insert.
|
819
|
+
# Corresponds to the JSON property `machineType`
|
820
|
+
# @return [String]
|
821
|
+
attr_accessor :machine_type
|
822
|
+
|
817
823
|
# Status information per location (location name is key). Example key: zones/us-
|
818
824
|
# central1-a
|
819
825
|
# Corresponds to the JSON property `perLocationStatus`
|
@@ -826,6 +832,7 @@ module Google
|
|
826
832
|
|
827
833
|
# Update properties of this object
|
828
834
|
def update!(**args)
|
835
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
829
836
|
@per_location_status = args[:per_location_status] if args.key?(:per_location_status)
|
830
837
|
end
|
831
838
|
end
|
@@ -1077,6 +1084,12 @@ module Google
|
|
1077
1084
|
# @return [String]
|
1078
1085
|
attr_accessor :self_link_with_id
|
1079
1086
|
|
1087
|
+
# This field is used internally by the Autoscaler team and should not be
|
1088
|
+
# promoted to "alpha/beta/v1".
|
1089
|
+
# Corresponds to the JSON property `setAutoscalerLinkOperationMetadata`
|
1090
|
+
# @return [Google::Apis::DeploymentmanagerV2::SetAutoscalerLinkOperationMetadata]
|
1091
|
+
attr_accessor :set_autoscaler_link_operation_metadata
|
1092
|
+
|
1080
1093
|
# [Output Only] If the operation is for projects.setCommonInstanceMetadata, this
|
1081
1094
|
# field will contain information on all underlying zonal actions and their state.
|
1082
1095
|
# Corresponds to the JSON property `setCommonInstanceMetadataOperationMetadata`
|
@@ -1156,6 +1169,7 @@ module Google
|
|
1156
1169
|
@region = args[:region] if args.key?(:region)
|
1157
1170
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1158
1171
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
1172
|
+
@set_autoscaler_link_operation_metadata = args[:set_autoscaler_link_operation_metadata] if args.key?(:set_autoscaler_link_operation_metadata)
|
1159
1173
|
@set_common_instance_metadata_operation_metadata = args[:set_common_instance_metadata_operation_metadata] if args.key?(:set_common_instance_metadata_operation_metadata)
|
1160
1174
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1161
1175
|
@status = args[:status] if args.key?(:status)
|
@@ -1982,6 +1996,25 @@ module Google
|
|
1982
1996
|
end
|
1983
1997
|
end
|
1984
1998
|
|
1999
|
+
#
|
2000
|
+
class SetAutoscalerLinkOperationMetadata
|
2001
|
+
include Google::Apis::Core::Hashable
|
2002
|
+
|
2003
|
+
# List of zonal IGM IDs part of the RMIG.
|
2004
|
+
# Corresponds to the JSON property `zonalIgmIds`
|
2005
|
+
# @return [Array<Fixnum>]
|
2006
|
+
attr_accessor :zonal_igm_ids
|
2007
|
+
|
2008
|
+
def initialize(**args)
|
2009
|
+
update!(**args)
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
# Update properties of this object
|
2013
|
+
def update!(**args)
|
2014
|
+
@zonal_igm_ids = args[:zonal_igm_ids] if args.key?(:zonal_igm_ids)
|
2015
|
+
end
|
2016
|
+
end
|
2017
|
+
|
1985
2018
|
#
|
1986
2019
|
class SetCommonInstanceMetadataOperationMetadata
|
1987
2020
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DeploymentmanagerV2
|
18
18
|
# Version of the google-apis-deploymentmanager_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.36.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
|
@@ -280,6 +280,12 @@ module Google
|
|
280
280
|
include Google::Apis::Core::JsonObjectSupport
|
281
281
|
end
|
282
282
|
|
283
|
+
class SetAutoscalerLinkOperationMetadata
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
283
289
|
class SetCommonInstanceMetadataOperationMetadata
|
284
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
291
|
|
@@ -510,6 +516,7 @@ module Google
|
|
510
516
|
class InstancesBulkInsertOperationMetadata
|
511
517
|
# @private
|
512
518
|
class Representation < Google::Apis::Core::JsonRepresentation
|
519
|
+
property :machine_type, as: 'machineType'
|
513
520
|
hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::DeploymentmanagerV2::BulkInsertOperationStatus, decorator: Google::Apis::DeploymentmanagerV2::BulkInsertOperationStatus::Representation
|
514
521
|
|
515
522
|
end
|
@@ -573,6 +580,8 @@ module Google
|
|
573
580
|
property :region, as: 'region'
|
574
581
|
property :self_link, as: 'selfLink'
|
575
582
|
property :self_link_with_id, as: 'selfLinkWithId'
|
583
|
+
property :set_autoscaler_link_operation_metadata, as: 'setAutoscalerLinkOperationMetadata', class: Google::Apis::DeploymentmanagerV2::SetAutoscalerLinkOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2::SetAutoscalerLinkOperationMetadata::Representation
|
584
|
+
|
576
585
|
property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerV2::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerV2::SetCommonInstanceMetadataOperationMetadata::Representation
|
577
586
|
|
578
587
|
property :start_time, as: 'startTime'
|
@@ -800,6 +809,13 @@ module Google
|
|
800
809
|
end
|
801
810
|
end
|
802
811
|
|
812
|
+
class SetAutoscalerLinkOperationMetadata
|
813
|
+
# @private
|
814
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
815
|
+
collection :zonal_igm_ids, as: 'zonalIgmIds'
|
816
|
+
end
|
817
|
+
end
|
818
|
+
|
803
819
|
class SetCommonInstanceMetadataOperationMetadata
|
804
820
|
# @private
|
805
821
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-deploymentmanager_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.36.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_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-deploymentmanager_v2/v0.36.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-deploymentmanager_v2
|
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 V2
|
79
79
|
test_files: []
|