google-apis-deploymentmanager_alpha 0.42.0 → 0.43.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: 8ced287d7ac84fb92b53fdd4082ac661c4a3a4447cfdeb151a9bb9d45a442f2e
|
|
4
|
+
data.tar.gz: a8c89ca1576848282fb8e21d98670d7dc31280ab3d24a3bc36f36d962704c7fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a85b19cf79e98aed780eb15fbb54b95ac112b6bf3e29c6e1622b61400ce7a04fd6e6bd7ca695d7941fac59d8029a5b0176d241adccafbe42b7b43fcea5d9485a
|
|
7
|
+
data.tar.gz: a6f1ce9694a6024f4fa98fcbf56e29a0008e72541cb27f17b0b39221ce1f0b408e485e84515db6396f4a8765a9c4af38afa0c64b8786d84e174a21d67c6f7afc
|
data/CHANGELOG.md
CHANGED
|
@@ -1033,12 +1033,12 @@ module Google
|
|
|
1033
1033
|
end
|
|
1034
1034
|
end
|
|
1035
1035
|
|
|
1036
|
-
#
|
|
1036
|
+
# Metadata for FirewallPolicyRule operations.
|
|
1037
1037
|
class FirewallPolicyRuleOperationMetadata
|
|
1038
1038
|
include Google::Apis::Core::Hashable
|
|
1039
1039
|
|
|
1040
|
-
# The priority allocated for the firewall policy rule
|
|
1041
|
-
# specified minPriority/maxPriority.
|
|
1040
|
+
# Output only. [Output Only] The priority allocated for the firewall policy rule
|
|
1041
|
+
# if query parameters specified minPriority/maxPriority.
|
|
1042
1042
|
# Corresponds to the JSON property `allocatedPriority`
|
|
1043
1043
|
# @return [Fixnum]
|
|
1044
1044
|
attr_accessor :allocated_priority
|
|
@@ -1053,6 +1053,68 @@ module Google
|
|
|
1053
1053
|
end
|
|
1054
1054
|
end
|
|
1055
1055
|
|
|
1056
|
+
# Metadata for GetHealth operations.
|
|
1057
|
+
class GetHealthOperationMetadata
|
|
1058
|
+
include Google::Apis::Core::Hashable
|
|
1059
|
+
|
|
1060
|
+
# Health information.
|
|
1061
|
+
# Corresponds to the JSON property `healthInfo`
|
|
1062
|
+
# @return [Google::Apis::DeploymentmanagerAlpha::GetHealthOperationMetadataHealthInfo]
|
|
1063
|
+
attr_accessor :health_info
|
|
1064
|
+
|
|
1065
|
+
def initialize(**args)
|
|
1066
|
+
update!(**args)
|
|
1067
|
+
end
|
|
1068
|
+
|
|
1069
|
+
# Update properties of this object
|
|
1070
|
+
def update!(**args)
|
|
1071
|
+
@health_info = args[:health_info] if args.key?(:health_info)
|
|
1072
|
+
end
|
|
1073
|
+
end
|
|
1074
|
+
|
|
1075
|
+
# Health information.
|
|
1076
|
+
class GetHealthOperationMetadataHealthInfo
|
|
1077
|
+
include Google::Apis::Core::Hashable
|
|
1078
|
+
|
|
1079
|
+
# Output only. The availability SLO status.
|
|
1080
|
+
# Corresponds to the JSON property `availabilitySloStatus`
|
|
1081
|
+
# @return [String]
|
|
1082
|
+
attr_accessor :availability_slo_status
|
|
1083
|
+
|
|
1084
|
+
# Output only. The health status.
|
|
1085
|
+
# Corresponds to the JSON property `healthStatus`
|
|
1086
|
+
# @return [String]
|
|
1087
|
+
attr_accessor :health_status
|
|
1088
|
+
|
|
1089
|
+
# Output only. The repair category.
|
|
1090
|
+
# Corresponds to the JSON property `repairCategory`
|
|
1091
|
+
# @return [String]
|
|
1092
|
+
attr_accessor :repair_category
|
|
1093
|
+
|
|
1094
|
+
# Output only. The reason for unhealthy status.
|
|
1095
|
+
# Corresponds to the JSON property `unhealthyReason`
|
|
1096
|
+
# @return [String]
|
|
1097
|
+
attr_accessor :unhealthy_reason
|
|
1098
|
+
|
|
1099
|
+
# Output only. The time when health info was updated.
|
|
1100
|
+
# Corresponds to the JSON property `updateTime`
|
|
1101
|
+
# @return [String]
|
|
1102
|
+
attr_accessor :update_time
|
|
1103
|
+
|
|
1104
|
+
def initialize(**args)
|
|
1105
|
+
update!(**args)
|
|
1106
|
+
end
|
|
1107
|
+
|
|
1108
|
+
# Update properties of this object
|
|
1109
|
+
def update!(**args)
|
|
1110
|
+
@availability_slo_status = args[:availability_slo_status] if args.key?(:availability_slo_status)
|
|
1111
|
+
@health_status = args[:health_status] if args.key?(:health_status)
|
|
1112
|
+
@repair_category = args[:repair_category] if args.key?(:repair_category)
|
|
1113
|
+
@unhealthy_reason = args[:unhealthy_reason] if args.key?(:unhealthy_reason)
|
|
1114
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
1115
|
+
end
|
|
1116
|
+
end
|
|
1117
|
+
|
|
1056
1118
|
#
|
|
1057
1119
|
class GetVersionOperationMetadata
|
|
1058
1120
|
include Google::Apis::Core::Hashable
|
|
@@ -1076,14 +1138,14 @@ module Google
|
|
|
1076
1138
|
class GetVersionOperationMetadataSbomInfo
|
|
1077
1139
|
include Google::Apis::Core::Hashable
|
|
1078
1140
|
|
|
1079
|
-
#
|
|
1080
|
-
#
|
|
1141
|
+
# A mapping of components to their currently-applied versions or other
|
|
1142
|
+
# appropriate identifiers.
|
|
1081
1143
|
# Corresponds to the JSON property `currentComponentVersions`
|
|
1082
1144
|
# @return [Hash<String,String>]
|
|
1083
1145
|
attr_accessor :current_component_versions
|
|
1084
1146
|
|
|
1085
|
-
#
|
|
1086
|
-
#
|
|
1147
|
+
# A mapping of components to their target versions or other appropriate
|
|
1148
|
+
# identifiers.
|
|
1087
1149
|
# Corresponds to the JSON property `targetComponentVersions`
|
|
1088
1150
|
# @return [Hash<String,String>]
|
|
1089
1151
|
attr_accessor :target_component_versions
|
|
@@ -1302,6 +1364,26 @@ module Google
|
|
|
1302
1364
|
end
|
|
1303
1365
|
end
|
|
1304
1366
|
|
|
1367
|
+
# [Output Only] Operation metadata for instances.troubleshoot.
|
|
1368
|
+
class InstancesTroubleshootOperationMetadata
|
|
1369
|
+
include Google::Apis::Core::Hashable
|
|
1370
|
+
|
|
1371
|
+
# Output only. [Output Only] Serialized output of the troubleshooting diagnostic
|
|
1372
|
+
# run.
|
|
1373
|
+
# Corresponds to the JSON property `troubleshootOutput`
|
|
1374
|
+
# @return [String]
|
|
1375
|
+
attr_accessor :troubleshoot_output
|
|
1376
|
+
|
|
1377
|
+
def initialize(**args)
|
|
1378
|
+
update!(**args)
|
|
1379
|
+
end
|
|
1380
|
+
|
|
1381
|
+
# Update properties of this object
|
|
1382
|
+
def update!(**args)
|
|
1383
|
+
@troubleshoot_output = args[:troubleshoot_output] if args.key?(:troubleshoot_output)
|
|
1384
|
+
end
|
|
1385
|
+
end
|
|
1386
|
+
|
|
1305
1387
|
# Provides a localized error message that is safe to return to the user which
|
|
1306
1388
|
# can be attached to an RPC error.
|
|
1307
1389
|
class LocalizedMessage
|
|
@@ -1505,6 +1587,11 @@ module Google
|
|
|
1505
1587
|
# @return [String]
|
|
1506
1588
|
attr_accessor :description
|
|
1507
1589
|
|
|
1590
|
+
# [Output Only] Extended details about the operation's execution.
|
|
1591
|
+
# Corresponds to the JSON property `details`
|
|
1592
|
+
# @return [Google::Apis::DeploymentmanagerAlpha::OperationDetails]
|
|
1593
|
+
attr_accessor :details
|
|
1594
|
+
|
|
1508
1595
|
# [Output Only] The time that this operation was completed. This value is in
|
|
1509
1596
|
# RFC3339 text format.
|
|
1510
1597
|
# Corresponds to the JSON property `endTime`
|
|
@@ -1517,11 +1604,16 @@ module Google
|
|
|
1517
1604
|
# @return [Google::Apis::DeploymentmanagerAlpha::Operation::Error]
|
|
1518
1605
|
attr_accessor :error
|
|
1519
1606
|
|
|
1520
|
-
#
|
|
1607
|
+
# Metadata for FirewallPolicyRule operations.
|
|
1521
1608
|
# Corresponds to the JSON property `firewallPolicyRuleOperationMetadata`
|
|
1522
1609
|
# @return [Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata]
|
|
1523
1610
|
attr_accessor :firewall_policy_rule_operation_metadata
|
|
1524
1611
|
|
|
1612
|
+
# Metadata for GetHealth operations.
|
|
1613
|
+
# Corresponds to the JSON property `getHealthOperationMetadata`
|
|
1614
|
+
# @return [Google::Apis::DeploymentmanagerAlpha::GetHealthOperationMetadata]
|
|
1615
|
+
attr_accessor :get_health_operation_metadata
|
|
1616
|
+
|
|
1525
1617
|
#
|
|
1526
1618
|
# Corresponds to the JSON property `getVersionOperationMetadata`
|
|
1527
1619
|
# @return [Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadata]
|
|
@@ -1557,6 +1649,11 @@ module Google
|
|
|
1557
1649
|
# @return [Google::Apis::DeploymentmanagerAlpha::InstancesBulkInsertOperationMetadata]
|
|
1558
1650
|
attr_accessor :instances_bulk_insert_operation_metadata
|
|
1559
1651
|
|
|
1652
|
+
# [Output Only] Operation metadata for instances.troubleshoot.
|
|
1653
|
+
# Corresponds to the JSON property `instancesTroubleshootOperationMetadata`
|
|
1654
|
+
# @return [Google::Apis::DeploymentmanagerAlpha::InstancesTroubleshootOperationMetadata]
|
|
1655
|
+
attr_accessor :instances_troubleshoot_operation_metadata
|
|
1656
|
+
|
|
1560
1657
|
# Output only. [Output Only] Type of the resource. Always `compute#operation`
|
|
1561
1658
|
# for Operation resources.
|
|
1562
1659
|
# Corresponds to the JSON property `kind`
|
|
@@ -1676,15 +1773,18 @@ module Google
|
|
|
1676
1773
|
@client_operation_id = args[:client_operation_id] if args.key?(:client_operation_id)
|
|
1677
1774
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
1678
1775
|
@description = args[:description] if args.key?(:description)
|
|
1776
|
+
@details = args[:details] if args.key?(:details)
|
|
1679
1777
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
1680
1778
|
@error = args[:error] if args.key?(:error)
|
|
1681
1779
|
@firewall_policy_rule_operation_metadata = args[:firewall_policy_rule_operation_metadata] if args.key?(:firewall_policy_rule_operation_metadata)
|
|
1780
|
+
@get_health_operation_metadata = args[:get_health_operation_metadata] if args.key?(:get_health_operation_metadata)
|
|
1682
1781
|
@get_version_operation_metadata = args[:get_version_operation_metadata] if args.key?(:get_version_operation_metadata)
|
|
1683
1782
|
@http_error_message = args[:http_error_message] if args.key?(:http_error_message)
|
|
1684
1783
|
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
|
|
1685
1784
|
@id = args[:id] if args.key?(:id)
|
|
1686
1785
|
@insert_time = args[:insert_time] if args.key?(:insert_time)
|
|
1687
1786
|
@instances_bulk_insert_operation_metadata = args[:instances_bulk_insert_operation_metadata] if args.key?(:instances_bulk_insert_operation_metadata)
|
|
1787
|
+
@instances_troubleshoot_operation_metadata = args[:instances_troubleshoot_operation_metadata] if args.key?(:instances_troubleshoot_operation_metadata)
|
|
1688
1788
|
@kind = args[:kind] if args.key?(:kind)
|
|
1689
1789
|
@name = args[:name] if args.key?(:name)
|
|
1690
1790
|
@operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
|
|
@@ -1724,7 +1824,7 @@ module Google
|
|
|
1724
1824
|
@errors = args[:errors] if args.key?(:errors)
|
|
1725
1825
|
end
|
|
1726
1826
|
|
|
1727
|
-
#
|
|
1827
|
+
# Represents a single error encountered during the processing of an operation.
|
|
1728
1828
|
class Error
|
|
1729
1829
|
include Google::Apis::Core::Hashable
|
|
1730
1830
|
|
|
@@ -1779,7 +1879,8 @@ module Google
|
|
|
1779
1879
|
@message = args[:message] if args.key?(:message)
|
|
1780
1880
|
end
|
|
1781
1881
|
|
|
1782
|
-
#
|
|
1882
|
+
# Container for structured error details providing additional context specific
|
|
1883
|
+
# to the encountered error code.
|
|
1783
1884
|
class ErrorDetail
|
|
1784
1885
|
include Google::Apis::Core::Hashable
|
|
1785
1886
|
|
|
@@ -1840,7 +1941,7 @@ module Google
|
|
|
1840
1941
|
attr_accessor :code
|
|
1841
1942
|
|
|
1842
1943
|
# [Output Only] Metadata about this warning in key: value format. For example: "
|
|
1843
|
-
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
|
1944
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `]
|
|
1844
1945
|
# Corresponds to the JSON property `data`
|
|
1845
1946
|
# @return [Array<Google::Apis::DeploymentmanagerAlpha::Operation::Warning::Datum>]
|
|
1846
1947
|
attr_accessor :data
|
|
@@ -1894,6 +1995,31 @@ module Google
|
|
|
1894
1995
|
end
|
|
1895
1996
|
end
|
|
1896
1997
|
|
|
1998
|
+
#
|
|
1999
|
+
class OperationDetails
|
|
2000
|
+
include Google::Apis::Core::Hashable
|
|
2001
|
+
|
|
2002
|
+
# Machine readable data from the message.
|
|
2003
|
+
# Corresponds to the JSON property `data`
|
|
2004
|
+
# @return [Hash<String,Object>]
|
|
2005
|
+
attr_accessor :data
|
|
2006
|
+
|
|
2007
|
+
# Human or AI readable details on execution of the operation.
|
|
2008
|
+
# Corresponds to the JSON property `message`
|
|
2009
|
+
# @return [String]
|
|
2010
|
+
attr_accessor :message
|
|
2011
|
+
|
|
2012
|
+
def initialize(**args)
|
|
2013
|
+
update!(**args)
|
|
2014
|
+
end
|
|
2015
|
+
|
|
2016
|
+
# Update properties of this object
|
|
2017
|
+
def update!(**args)
|
|
2018
|
+
@data = args[:data] if args.key?(:data)
|
|
2019
|
+
@message = args[:message] if args.key?(:message)
|
|
2020
|
+
end
|
|
2021
|
+
end
|
|
2022
|
+
|
|
1897
2023
|
# A response containing a partial list of operations and a page token used to
|
|
1898
2024
|
# build the next request if the request has been truncated.
|
|
1899
2025
|
class OperationsListResponse
|
|
@@ -2265,7 +2391,7 @@ module Google
|
|
|
2265
2391
|
attr_accessor :code
|
|
2266
2392
|
|
|
2267
2393
|
# [Output Only] Metadata about this warning in key: value format. For example: "
|
|
2268
|
-
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
|
2394
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `]
|
|
2269
2395
|
# Corresponds to the JSON property `data`
|
|
2270
2396
|
# @return [Array<Google::Apis::DeploymentmanagerAlpha::Resource::Warning::Datum>]
|
|
2271
2397
|
attr_accessor :data
|
|
@@ -2436,7 +2562,7 @@ module Google
|
|
|
2436
2562
|
@errors = args[:errors] if args.key?(:errors)
|
|
2437
2563
|
end
|
|
2438
2564
|
|
|
2439
|
-
#
|
|
2565
|
+
# Represents a single error encountered during the processing of an operation.
|
|
2440
2566
|
class Error
|
|
2441
2567
|
include Google::Apis::Core::Hashable
|
|
2442
2568
|
|
|
@@ -2491,7 +2617,8 @@ module Google
|
|
|
2491
2617
|
@message = args[:message] if args.key?(:message)
|
|
2492
2618
|
end
|
|
2493
2619
|
|
|
2494
|
-
#
|
|
2620
|
+
# Container for structured error details providing additional context specific
|
|
2621
|
+
# to the encountered error code.
|
|
2495
2622
|
class ErrorDetail
|
|
2496
2623
|
include Google::Apis::Core::Hashable
|
|
2497
2624
|
|
|
@@ -2552,7 +2679,7 @@ module Google
|
|
|
2552
2679
|
attr_accessor :code
|
|
2553
2680
|
|
|
2554
2681
|
# [Output Only] Metadata about this warning in key: value format. For example: "
|
|
2555
|
-
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
|
2682
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `]
|
|
2556
2683
|
# Corresponds to the JSON property `data`
|
|
2557
2684
|
# @return [Array<Google::Apis::DeploymentmanagerAlpha::ResourceUpdate::Warning::Datum>]
|
|
2558
2685
|
attr_accessor :data
|
|
@@ -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.43.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260827"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -178,6 +178,18 @@ module Google
|
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
+
class GetHealthOperationMetadata
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class GetHealthOperationMetadataHealthInfo
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
181
193
|
class GetVersionOperationMetadata
|
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
195
|
|
|
@@ -226,6 +238,12 @@ module Google
|
|
|
226
238
|
include Google::Apis::Core::JsonObjectSupport
|
|
227
239
|
end
|
|
228
240
|
|
|
241
|
+
class InstancesTroubleshootOperationMetadata
|
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
243
|
+
|
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
245
|
+
end
|
|
246
|
+
|
|
229
247
|
class LocalizedMessage
|
|
230
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
231
249
|
|
|
@@ -286,6 +304,12 @@ module Google
|
|
|
286
304
|
include Google::Apis::Core::JsonObjectSupport
|
|
287
305
|
end
|
|
288
306
|
|
|
307
|
+
class OperationDetails
|
|
308
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
309
|
+
|
|
310
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
311
|
+
end
|
|
312
|
+
|
|
289
313
|
class OperationsListResponse
|
|
290
314
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
291
315
|
|
|
@@ -755,6 +779,25 @@ module Google
|
|
|
755
779
|
end
|
|
756
780
|
end
|
|
757
781
|
|
|
782
|
+
class GetHealthOperationMetadata
|
|
783
|
+
# @private
|
|
784
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
785
|
+
property :health_info, as: 'healthInfo', class: Google::Apis::DeploymentmanagerAlpha::GetHealthOperationMetadataHealthInfo, decorator: Google::Apis::DeploymentmanagerAlpha::GetHealthOperationMetadataHealthInfo::Representation
|
|
786
|
+
|
|
787
|
+
end
|
|
788
|
+
end
|
|
789
|
+
|
|
790
|
+
class GetHealthOperationMetadataHealthInfo
|
|
791
|
+
# @private
|
|
792
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
793
|
+
property :availability_slo_status, as: 'availabilitySloStatus'
|
|
794
|
+
property :health_status, as: 'healthStatus'
|
|
795
|
+
property :repair_category, as: 'repairCategory'
|
|
796
|
+
property :unhealthy_reason, as: 'unhealthyReason'
|
|
797
|
+
property :update_time, as: 'updateTime'
|
|
798
|
+
end
|
|
799
|
+
end
|
|
800
|
+
|
|
758
801
|
class GetVersionOperationMetadata
|
|
759
802
|
# @private
|
|
760
803
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -826,6 +869,13 @@ module Google
|
|
|
826
869
|
end
|
|
827
870
|
end
|
|
828
871
|
|
|
872
|
+
class InstancesTroubleshootOperationMetadata
|
|
873
|
+
# @private
|
|
874
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
875
|
+
property :troubleshoot_output, as: 'troubleshootOutput'
|
|
876
|
+
end
|
|
877
|
+
end
|
|
878
|
+
|
|
829
879
|
class LocalizedMessage
|
|
830
880
|
# @private
|
|
831
881
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -878,11 +928,15 @@ module Google
|
|
|
878
928
|
property :client_operation_id, as: 'clientOperationId'
|
|
879
929
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
880
930
|
property :description, as: 'description'
|
|
931
|
+
property :details, as: 'details', class: Google::Apis::DeploymentmanagerAlpha::OperationDetails, decorator: Google::Apis::DeploymentmanagerAlpha::OperationDetails::Representation
|
|
932
|
+
|
|
881
933
|
property :end_time, as: 'endTime'
|
|
882
934
|
property :error, as: 'error', class: Google::Apis::DeploymentmanagerAlpha::Operation::Error, decorator: Google::Apis::DeploymentmanagerAlpha::Operation::Error::Representation
|
|
883
935
|
|
|
884
936
|
property :firewall_policy_rule_operation_metadata, as: 'firewallPolicyRuleOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::FirewallPolicyRuleOperationMetadata::Representation
|
|
885
937
|
|
|
938
|
+
property :get_health_operation_metadata, as: 'getHealthOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::GetHealthOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::GetHealthOperationMetadata::Representation
|
|
939
|
+
|
|
886
940
|
property :get_version_operation_metadata, as: 'getVersionOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::GetVersionOperationMetadata::Representation
|
|
887
941
|
|
|
888
942
|
property :http_error_message, as: 'httpErrorMessage'
|
|
@@ -891,6 +945,8 @@ module Google
|
|
|
891
945
|
property :insert_time, as: 'insertTime'
|
|
892
946
|
property :instances_bulk_insert_operation_metadata, as: 'instancesBulkInsertOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::InstancesBulkInsertOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::InstancesBulkInsertOperationMetadata::Representation
|
|
893
947
|
|
|
948
|
+
property :instances_troubleshoot_operation_metadata, as: 'instancesTroubleshootOperationMetadata', class: Google::Apis::DeploymentmanagerAlpha::InstancesTroubleshootOperationMetadata, decorator: Google::Apis::DeploymentmanagerAlpha::InstancesTroubleshootOperationMetadata::Representation
|
|
949
|
+
|
|
894
950
|
property :kind, as: 'kind'
|
|
895
951
|
property :name, as: 'name'
|
|
896
952
|
property :operation_group_id, as: 'operationGroupId'
|
|
@@ -969,6 +1025,14 @@ module Google
|
|
|
969
1025
|
end
|
|
970
1026
|
end
|
|
971
1027
|
|
|
1028
|
+
class OperationDetails
|
|
1029
|
+
# @private
|
|
1030
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1031
|
+
hash :data, as: 'data'
|
|
1032
|
+
property :message, as: 'message'
|
|
1033
|
+
end
|
|
1034
|
+
end
|
|
1035
|
+
|
|
972
1036
|
class OperationsListResponse
|
|
973
1037
|
# @private
|
|
974
1038
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.43.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.43.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:
|