google-apis-deploymentmanager_alpha 0.34.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
@@ -1528,6 +1528,12 @@ module Google
|
|
1528
1528
|
# @return [String]
|
1529
1529
|
attr_accessor :self_link_with_id
|
1530
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
|
+
|
1531
1537
|
# [Output Only] If the operation is for projects.setCommonInstanceMetadata, this
|
1532
1538
|
# field will contain information on all underlying zonal actions and their state.
|
1533
1539
|
# Corresponds to the JSON property `setCommonInstanceMetadataOperationMetadata`
|
@@ -1607,6 +1613,7 @@ module Google
|
|
1607
1613
|
@region = args[:region] if args.key?(:region)
|
1608
1614
|
@self_link = args[:self_link] if args.key?(:self_link)
|
1609
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)
|
1610
1617
|
@set_common_instance_metadata_operation_metadata = args[:set_common_instance_metadata_operation_metadata] if args.key?(:set_common_instance_metadata_operation_metadata)
|
1611
1618
|
@start_time = args[:start_time] if args.key?(:start_time)
|
1612
1619
|
@status = args[:status] if args.key?(:status)
|
@@ -2565,6 +2572,25 @@ module Google
|
|
2565
2572
|
end
|
2566
2573
|
end
|
2567
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
|
+
|
2568
2594
|
#
|
2569
2595
|
class SetCommonInstanceMetadataOperationMetadata
|
2570
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
|
|
@@ -848,6 +854,8 @@ module Google
|
|
848
854
|
property :region, as: 'region'
|
849
855
|
property :self_link, as: 'selfLink'
|
850
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
|
+
|
851
859
|
property :set_common_instance_metadata_operation_metadata, as: 'setCommonInstanceMetadataOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::SetCommonInstanceMetadataOperationMetadata::Representation
|
852
860
|
|
853
861
|
property :start_time, as: 'startTime'
|
@@ -1113,6 +1121,13 @@ module Google
|
|
1113
1121
|
end
|
1114
1122
|
end
|
1115
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
|
+
|
1116
1131
|
class SetCommonInstanceMetadataOperationMetadata
|
1117
1132
|
# @private
|
1118
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:
|