google-apis-clouddeploy_v1 0.35.0 → 0.37.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.
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ClouddeployV1
|
18
18
|
# Version of the google-apis-clouddeploy_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -256,6 +256,36 @@ module Google
|
|
256
256
|
include Google::Apis::Core::JsonObjectSupport
|
257
257
|
end
|
258
258
|
|
259
|
+
class CustomMetadata
|
260
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
|
+
|
262
|
+
include Google::Apis::Core::JsonObjectSupport
|
263
|
+
end
|
264
|
+
|
265
|
+
class CustomTarget
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class CustomTargetDeployMetadata
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
277
|
+
class CustomTargetSkaffoldActions
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
283
|
+
class CustomTargetType
|
284
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
285
|
+
|
286
|
+
include Google::Apis::Core::JsonObjectSupport
|
287
|
+
end
|
288
|
+
|
259
289
|
class Date
|
260
290
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
261
291
|
|
@@ -394,6 +424,12 @@ module Google
|
|
394
424
|
include Google::Apis::Core::JsonObjectSupport
|
395
425
|
end
|
396
426
|
|
427
|
+
class ListCustomTargetTypesResponse
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
397
433
|
class ListDeliveryPipelinesResponse
|
398
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
435
|
|
@@ -718,6 +754,24 @@ module Google
|
|
718
754
|
include Google::Apis::Core::JsonObjectSupport
|
719
755
|
end
|
720
756
|
|
757
|
+
class SkaffoldGcsSource
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
|
+
|
760
|
+
include Google::Apis::Core::JsonObjectSupport
|
761
|
+
end
|
762
|
+
|
763
|
+
class SkaffoldGitSource
|
764
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
765
|
+
|
766
|
+
include Google::Apis::Core::JsonObjectSupport
|
767
|
+
end
|
768
|
+
|
769
|
+
class SkaffoldModules
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
|
+
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
773
|
+
end
|
774
|
+
|
721
775
|
class SkaffoldSupportedCondition
|
722
776
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
723
777
|
|
@@ -1121,6 +1175,9 @@ module Google
|
|
1121
1175
|
# @private
|
1122
1176
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1123
1177
|
property :automatic_traffic_control, as: 'automaticTrafficControl'
|
1178
|
+
collection :canary_revision_tags, as: 'canaryRevisionTags'
|
1179
|
+
collection :prior_revision_tags, as: 'priorRevisionTags'
|
1180
|
+
collection :stable_revision_tags, as: 'stableRevisionTags'
|
1124
1181
|
end
|
1125
1182
|
end
|
1126
1183
|
|
@@ -1180,6 +1237,54 @@ module Google
|
|
1180
1237
|
end
|
1181
1238
|
end
|
1182
1239
|
|
1240
|
+
class CustomMetadata
|
1241
|
+
# @private
|
1242
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1243
|
+
hash :values, as: 'values'
|
1244
|
+
end
|
1245
|
+
end
|
1246
|
+
|
1247
|
+
class CustomTarget
|
1248
|
+
# @private
|
1249
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1250
|
+
property :custom_target_type, as: 'customTargetType'
|
1251
|
+
end
|
1252
|
+
end
|
1253
|
+
|
1254
|
+
class CustomTargetDeployMetadata
|
1255
|
+
# @private
|
1256
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1257
|
+
property :skip_message, as: 'skipMessage'
|
1258
|
+
end
|
1259
|
+
end
|
1260
|
+
|
1261
|
+
class CustomTargetSkaffoldActions
|
1262
|
+
# @private
|
1263
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1264
|
+
property :deploy_action, as: 'deployAction'
|
1265
|
+
collection :include_skaffold_modules, as: 'includeSkaffoldModules', class: Google::Apis::ClouddeployV1::SkaffoldModules, decorator: Google::Apis::ClouddeployV1::SkaffoldModules::Representation
|
1266
|
+
|
1267
|
+
property :render_action, as: 'renderAction'
|
1268
|
+
end
|
1269
|
+
end
|
1270
|
+
|
1271
|
+
class CustomTargetType
|
1272
|
+
# @private
|
1273
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1274
|
+
hash :annotations, as: 'annotations'
|
1275
|
+
property :create_time, as: 'createTime'
|
1276
|
+
property :custom_actions, as: 'customActions', class: Google::Apis::ClouddeployV1::CustomTargetSkaffoldActions, decorator: Google::Apis::ClouddeployV1::CustomTargetSkaffoldActions::Representation
|
1277
|
+
|
1278
|
+
property :custom_target_type_id, as: 'customTargetTypeId'
|
1279
|
+
property :description, as: 'description'
|
1280
|
+
property :etag, as: 'etag'
|
1281
|
+
hash :labels, as: 'labels'
|
1282
|
+
property :name, as: 'name'
|
1283
|
+
property :uid, as: 'uid'
|
1284
|
+
property :update_time, as: 'updateTime'
|
1285
|
+
end
|
1286
|
+
end
|
1287
|
+
|
1183
1288
|
class Date
|
1184
1289
|
# @private
|
1185
1290
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1257,6 +1362,10 @@ module Google
|
|
1257
1362
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1258
1363
|
property :cloud_run, as: 'cloudRun', class: Google::Apis::ClouddeployV1::CloudRunMetadata, decorator: Google::Apis::ClouddeployV1::CloudRunMetadata::Representation
|
1259
1364
|
|
1365
|
+
property :custom, as: 'custom', class: Google::Apis::ClouddeployV1::CustomMetadata, decorator: Google::Apis::ClouddeployV1::CustomMetadata::Representation
|
1366
|
+
|
1367
|
+
property :custom_target, as: 'customTarget', class: Google::Apis::ClouddeployV1::CustomTargetDeployMetadata, decorator: Google::Apis::ClouddeployV1::CustomTargetDeployMetadata::Representation
|
1368
|
+
|
1260
1369
|
end
|
1261
1370
|
end
|
1262
1371
|
|
@@ -1437,6 +1546,16 @@ module Google
|
|
1437
1546
|
end
|
1438
1547
|
end
|
1439
1548
|
|
1549
|
+
class ListCustomTargetTypesResponse
|
1550
|
+
# @private
|
1551
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1552
|
+
collection :custom_target_types, as: 'customTargetTypes', class: Google::Apis::ClouddeployV1::CustomTargetType, decorator: Google::Apis::ClouddeployV1::CustomTargetType::Representation
|
1553
|
+
|
1554
|
+
property :next_page_token, as: 'nextPageToken'
|
1555
|
+
collection :unreachable, as: 'unreachable'
|
1556
|
+
end
|
1557
|
+
end
|
1558
|
+
|
1440
1559
|
class ListDeliveryPipelinesResponse
|
1441
1560
|
# @private
|
1442
1561
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1523,6 +1642,8 @@ module Google
|
|
1523
1642
|
|
1524
1643
|
property :cloud_run, as: 'cloudRun', class: Google::Apis::ClouddeployV1::CloudRunMetadata, decorator: Google::Apis::ClouddeployV1::CloudRunMetadata::Representation
|
1525
1644
|
|
1645
|
+
property :custom, as: 'custom', class: Google::Apis::ClouddeployV1::CustomMetadata, decorator: Google::Apis::ClouddeployV1::CustomMetadata::Representation
|
1646
|
+
|
1526
1647
|
end
|
1527
1648
|
end
|
1528
1649
|
|
@@ -1713,6 +1834,8 @@ module Google
|
|
1713
1834
|
property :condition, as: 'condition', class: Google::Apis::ClouddeployV1::ReleaseCondition, decorator: Google::Apis::ClouddeployV1::ReleaseCondition::Representation
|
1714
1835
|
|
1715
1836
|
property :create_time, as: 'createTime'
|
1837
|
+
collection :custom_target_type_snapshots, as: 'customTargetTypeSnapshots', class: Google::Apis::ClouddeployV1::CustomTargetType, decorator: Google::Apis::ClouddeployV1::CustomTargetType::Representation
|
1838
|
+
|
1716
1839
|
property :delivery_pipeline_snapshot, as: 'deliveryPipelineSnapshot', class: Google::Apis::ClouddeployV1::DeliveryPipeline, decorator: Google::Apis::ClouddeployV1::DeliveryPipeline::Representation
|
1717
1840
|
|
1718
1841
|
hash :deploy_parameters, as: 'deployParameters'
|
@@ -1776,6 +1899,8 @@ module Google
|
|
1776
1899
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1777
1900
|
property :cloud_run, as: 'cloudRun', class: Google::Apis::ClouddeployV1::CloudRunRenderMetadata, decorator: Google::Apis::ClouddeployV1::CloudRunRenderMetadata::Representation
|
1778
1901
|
|
1902
|
+
property :custom, as: 'custom', class: Google::Apis::ClouddeployV1::CustomMetadata, decorator: Google::Apis::ClouddeployV1::CustomMetadata::Representation
|
1903
|
+
|
1779
1904
|
end
|
1780
1905
|
end
|
1781
1906
|
|
@@ -1803,6 +1928,8 @@ module Google
|
|
1803
1928
|
# @private
|
1804
1929
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1805
1930
|
property :current_repair_mode_index, :numeric_string => true, as: 'currentRepairModeIndex'
|
1931
|
+
property :job_id, as: 'jobId'
|
1932
|
+
property :phase_id, as: 'phaseId'
|
1806
1933
|
collection :repair_phases, as: 'repairPhases', class: Google::Apis::ClouddeployV1::RepairPhase, decorator: Google::Apis::ClouddeployV1::RepairPhase::Representation
|
1807
1934
|
|
1808
1935
|
property :rollout, as: 'rollout'
|
@@ -2005,6 +2132,34 @@ module Google
|
|
2005
2132
|
end
|
2006
2133
|
end
|
2007
2134
|
|
2135
|
+
class SkaffoldGcsSource
|
2136
|
+
# @private
|
2137
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2138
|
+
property :path, as: 'path'
|
2139
|
+
property :source, as: 'source'
|
2140
|
+
end
|
2141
|
+
end
|
2142
|
+
|
2143
|
+
class SkaffoldGitSource
|
2144
|
+
# @private
|
2145
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2146
|
+
property :path, as: 'path'
|
2147
|
+
property :ref, as: 'ref'
|
2148
|
+
property :repo, as: 'repo'
|
2149
|
+
end
|
2150
|
+
end
|
2151
|
+
|
2152
|
+
class SkaffoldModules
|
2153
|
+
# @private
|
2154
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2155
|
+
collection :configs, as: 'configs'
|
2156
|
+
property :git, as: 'git', class: Google::Apis::ClouddeployV1::SkaffoldGitSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGitSource::Representation
|
2157
|
+
|
2158
|
+
property :google_cloud_storage, as: 'googleCloudStorage', class: Google::Apis::ClouddeployV1::SkaffoldGcsSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGcsSource::Representation
|
2159
|
+
|
2160
|
+
end
|
2161
|
+
end
|
2162
|
+
|
2008
2163
|
class SkaffoldSupportedCondition
|
2009
2164
|
# @private
|
2010
2165
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2075,6 +2230,8 @@ module Google
|
|
2075
2230
|
property :anthos_cluster, as: 'anthosCluster', class: Google::Apis::ClouddeployV1::AnthosCluster, decorator: Google::Apis::ClouddeployV1::AnthosCluster::Representation
|
2076
2231
|
|
2077
2232
|
property :create_time, as: 'createTime'
|
2233
|
+
property :custom_target, as: 'customTarget', class: Google::Apis::ClouddeployV1::CustomTarget, decorator: Google::Apis::ClouddeployV1::CustomTarget::Representation
|
2234
|
+
|
2078
2235
|
hash :deploy_parameters, as: 'deployParameters'
|
2079
2236
|
property :description, as: 'description'
|
2080
2237
|
property :etag, as: 'etag'
|