google-apis-clouddeploy_v1 0.21.0 → 0.22.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: 90cf247d5ec76c3d70a9fdd30bd05b58b7e4d04314a3ad1c17ade5c6c458ca51
|
4
|
+
data.tar.gz: 07cb4d7b5946549a6be96cd5191d4637b86414057c94ef24a0a08b0c0b43858d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b34993acd04c1f36170b5ed8edf209dd804015fe7f8285150bdf5cf59a1e4c6d86e6473b7ee634de98032bc358762a139279085892e8a215324f56901cc1ec00
|
7
|
+
data.tar.gz: 2f9f78922da92b63f054ab57c25b0fc948d60ee5562fdd5f7313155d73fa664bbc7d7039dd171241060fc4bd8cb8e1166223b71f8542f57f746264b3e66b18b5
|
data/CHANGELOG.md
CHANGED
@@ -48,6 +48,47 @@ module Google
|
|
48
48
|
end
|
49
49
|
end
|
50
50
|
|
51
|
+
# An advanceChildRollout Job.
|
52
|
+
class AdvanceChildRolloutJob
|
53
|
+
include Google::Apis::Core::Hashable
|
54
|
+
|
55
|
+
def initialize(**args)
|
56
|
+
update!(**args)
|
57
|
+
end
|
58
|
+
|
59
|
+
# Update properties of this object
|
60
|
+
def update!(**args)
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# AdvanceChildRolloutJobRun contains information specific to a
|
65
|
+
# advanceChildRollout `JobRun`.
|
66
|
+
class AdvanceChildRolloutJobRun
|
67
|
+
include Google::Apis::Core::Hashable
|
68
|
+
|
69
|
+
# Output only. Name of the `ChildRollout`. Format is projects/`project`/
|
70
|
+
# locations/`location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/
|
71
|
+
# rollouts/a-z`0,62`.
|
72
|
+
# Corresponds to the JSON property `rollout`
|
73
|
+
# @return [String]
|
74
|
+
attr_accessor :rollout
|
75
|
+
|
76
|
+
# Output only. the ID of the ChildRollout's Phase.
|
77
|
+
# Corresponds to the JSON property `rolloutPhaseId`
|
78
|
+
# @return [String]
|
79
|
+
attr_accessor :rollout_phase_id
|
80
|
+
|
81
|
+
def initialize(**args)
|
82
|
+
update!(**args)
|
83
|
+
end
|
84
|
+
|
85
|
+
# Update properties of this object
|
86
|
+
def update!(**args)
|
87
|
+
@rollout = args[:rollout] if args.key?(:rollout)
|
88
|
+
@rollout_phase_id = args[:rollout_phase_id] if args.key?(:rollout_phase_id)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
51
92
|
# Information specifying an Anthos Cluster.
|
52
93
|
class AnthosCluster
|
53
94
|
include Google::Apis::Core::Hashable
|
@@ -288,6 +329,31 @@ module Google
|
|
288
329
|
end
|
289
330
|
end
|
290
331
|
|
332
|
+
# ChildRollouts job composition
|
333
|
+
class ChildRolloutJobs
|
334
|
+
include Google::Apis::Core::Hashable
|
335
|
+
|
336
|
+
# Output only. List of AdvanceChildRolloutJobs
|
337
|
+
# Corresponds to the JSON property `advanceRolloutJobs`
|
338
|
+
# @return [Array<Google::Apis::ClouddeployV1::Job>]
|
339
|
+
attr_accessor :advance_rollout_jobs
|
340
|
+
|
341
|
+
# Output only. List of CreateChildRolloutJobs
|
342
|
+
# Corresponds to the JSON property `createRolloutJobs`
|
343
|
+
# @return [Array<Google::Apis::ClouddeployV1::Job>]
|
344
|
+
attr_accessor :create_rollout_jobs
|
345
|
+
|
346
|
+
def initialize(**args)
|
347
|
+
update!(**args)
|
348
|
+
end
|
349
|
+
|
350
|
+
# Update properties of this object
|
351
|
+
def update!(**args)
|
352
|
+
@advance_rollout_jobs = args[:advance_rollout_jobs] if args.key?(:advance_rollout_jobs)
|
353
|
+
@create_rollout_jobs = args[:create_rollout_jobs] if args.key?(:create_rollout_jobs)
|
354
|
+
end
|
355
|
+
end
|
356
|
+
|
291
357
|
# Information specifying where to deploy a Cloud Run Service.
|
292
358
|
class CloudRunLocation
|
293
359
|
include Google::Apis::Core::Hashable
|
@@ -372,6 +438,47 @@ module Google
|
|
372
438
|
end
|
373
439
|
end
|
374
440
|
|
441
|
+
# A createChildRollout Job.
|
442
|
+
class CreateChildRolloutJob
|
443
|
+
include Google::Apis::Core::Hashable
|
444
|
+
|
445
|
+
def initialize(**args)
|
446
|
+
update!(**args)
|
447
|
+
end
|
448
|
+
|
449
|
+
# Update properties of this object
|
450
|
+
def update!(**args)
|
451
|
+
end
|
452
|
+
end
|
453
|
+
|
454
|
+
# CreateChildRolloutJobRun contains information specific to a createChildRollout
|
455
|
+
# `JobRun`.
|
456
|
+
class CreateChildRolloutJobRun
|
457
|
+
include Google::Apis::Core::Hashable
|
458
|
+
|
459
|
+
# Output only. Name of the `ChildRollout`. Format is projects/`project`/
|
460
|
+
# locations/`location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/
|
461
|
+
# rollouts/a-z`0,62`.
|
462
|
+
# Corresponds to the JSON property `rollout`
|
463
|
+
# @return [String]
|
464
|
+
attr_accessor :rollout
|
465
|
+
|
466
|
+
# Output only. The ID of the childRollout Phase initiated by this JobRun.
|
467
|
+
# Corresponds to the JSON property `rolloutPhaseId`
|
468
|
+
# @return [String]
|
469
|
+
attr_accessor :rollout_phase_id
|
470
|
+
|
471
|
+
def initialize(**args)
|
472
|
+
update!(**args)
|
473
|
+
end
|
474
|
+
|
475
|
+
# Update properties of this object
|
476
|
+
def update!(**args)
|
477
|
+
@rollout = args[:rollout] if args.key?(:rollout)
|
478
|
+
@rollout_phase_id = args[:rollout_phase_id] if args.key?(:rollout_phase_id)
|
479
|
+
end
|
480
|
+
end
|
481
|
+
|
375
482
|
# Represents a whole or partial calendar date, such as a birthday. The time of
|
376
483
|
# day and time zone are either specified elsewhere or are insignificant. The
|
377
484
|
# date is relative to the Gregorian Calendar. This can represent one of the
|
@@ -837,6 +944,16 @@ module Google
|
|
837
944
|
class Job
|
838
945
|
include Google::Apis::Core::Hashable
|
839
946
|
|
947
|
+
# An advanceChildRollout Job.
|
948
|
+
# Corresponds to the JSON property `advanceChildRolloutJob`
|
949
|
+
# @return [Google::Apis::ClouddeployV1::AdvanceChildRolloutJob]
|
950
|
+
attr_accessor :advance_child_rollout_job
|
951
|
+
|
952
|
+
# A createChildRollout Job.
|
953
|
+
# Corresponds to the JSON property `createChildRolloutJob`
|
954
|
+
# @return [Google::Apis::ClouddeployV1::CreateChildRolloutJob]
|
955
|
+
attr_accessor :create_child_rollout_job
|
956
|
+
|
840
957
|
# A deploy Job.
|
841
958
|
# Corresponds to the JSON property `deployJob`
|
842
959
|
# @return [Google::Apis::ClouddeployV1::DeployJob]
|
@@ -869,6 +986,8 @@ module Google
|
|
869
986
|
|
870
987
|
# Update properties of this object
|
871
988
|
def update!(**args)
|
989
|
+
@advance_child_rollout_job = args[:advance_child_rollout_job] if args.key?(:advance_child_rollout_job)
|
990
|
+
@create_child_rollout_job = args[:create_child_rollout_job] if args.key?(:create_child_rollout_job)
|
872
991
|
@deploy_job = args[:deploy_job] if args.key?(:deploy_job)
|
873
992
|
@id = args[:id] if args.key?(:id)
|
874
993
|
@job_run = args[:job_run] if args.key?(:job_run)
|
@@ -882,6 +1001,18 @@ module Google
|
|
882
1001
|
class JobRun
|
883
1002
|
include Google::Apis::Core::Hashable
|
884
1003
|
|
1004
|
+
# AdvanceChildRolloutJobRun contains information specific to a
|
1005
|
+
# advanceChildRollout `JobRun`.
|
1006
|
+
# Corresponds to the JSON property `advanceChildRolloutJobRun`
|
1007
|
+
# @return [Google::Apis::ClouddeployV1::AdvanceChildRolloutJobRun]
|
1008
|
+
attr_accessor :advance_child_rollout_job_run
|
1009
|
+
|
1010
|
+
# CreateChildRolloutJobRun contains information specific to a createChildRollout
|
1011
|
+
# `JobRun`.
|
1012
|
+
# Corresponds to the JSON property `createChildRolloutJobRun`
|
1013
|
+
# @return [Google::Apis::ClouddeployV1::CreateChildRolloutJobRun]
|
1014
|
+
attr_accessor :create_child_rollout_job_run
|
1015
|
+
|
885
1016
|
# Output only. Time at which the `JobRun` was created.
|
886
1017
|
# Corresponds to the JSON property `createTime`
|
887
1018
|
# @return [String]
|
@@ -947,6 +1078,8 @@ module Google
|
|
947
1078
|
|
948
1079
|
# Update properties of this object
|
949
1080
|
def update!(**args)
|
1081
|
+
@advance_child_rollout_job_run = args[:advance_child_rollout_job_run] if args.key?(:advance_child_rollout_job_run)
|
1082
|
+
@create_child_rollout_job_run = args[:create_child_rollout_job_run] if args.key?(:create_child_rollout_job_run)
|
950
1083
|
@create_time = args[:create_time] if args.key?(:create_time)
|
951
1084
|
@deploy_job_run = args[:deploy_job_run] if args.key?(:deploy_job_run)
|
952
1085
|
@end_time = args[:end_time] if args.key?(:end_time)
|
@@ -1294,6 +1427,25 @@ module Google
|
|
1294
1427
|
end
|
1295
1428
|
end
|
1296
1429
|
|
1430
|
+
# Information specifying a multiTarget.
|
1431
|
+
class MultiTarget
|
1432
|
+
include Google::Apis::Core::Hashable
|
1433
|
+
|
1434
|
+
# Required. The target_ids of this multiTarget.
|
1435
|
+
# Corresponds to the JSON property `targetIds`
|
1436
|
+
# @return [Array<String>]
|
1437
|
+
attr_accessor :target_ids
|
1438
|
+
|
1439
|
+
def initialize(**args)
|
1440
|
+
update!(**args)
|
1441
|
+
end
|
1442
|
+
|
1443
|
+
# Update properties of this object
|
1444
|
+
def update!(**args)
|
1445
|
+
@target_ids = args[:target_ids] if args.key?(:target_ids)
|
1446
|
+
end
|
1447
|
+
end
|
1448
|
+
|
1297
1449
|
# This resource represents a long-running operation that is the result of a
|
1298
1450
|
# network API call.
|
1299
1451
|
class Operation
|
@@ -1420,6 +1572,11 @@ module Google
|
|
1420
1572
|
class Phase
|
1421
1573
|
include Google::Apis::Core::Hashable
|
1422
1574
|
|
1575
|
+
# ChildRollouts job composition
|
1576
|
+
# Corresponds to the JSON property `childRolloutJobs`
|
1577
|
+
# @return [Google::Apis::ClouddeployV1::ChildRolloutJobs]
|
1578
|
+
attr_accessor :child_rollout_jobs
|
1579
|
+
|
1423
1580
|
# Deployment job composition.
|
1424
1581
|
# Corresponds to the JSON property `deploymentJobs`
|
1425
1582
|
# @return [Google::Apis::ClouddeployV1::DeploymentJobs]
|
@@ -1441,6 +1598,7 @@ module Google
|
|
1441
1598
|
|
1442
1599
|
# Update properties of this object
|
1443
1600
|
def update!(**args)
|
1601
|
+
@child_rollout_jobs = args[:child_rollout_jobs] if args.key?(:child_rollout_jobs)
|
1444
1602
|
@deployment_jobs = args[:deployment_jobs] if args.key?(:deployment_jobs)
|
1445
1603
|
@id = args[:id] if args.key?(:id)
|
1446
1604
|
@state = args[:state] if args.key?(:state)
|
@@ -1964,6 +2122,13 @@ module Google
|
|
1964
2122
|
# @return [String]
|
1965
2123
|
attr_accessor :approve_time
|
1966
2124
|
|
2125
|
+
# Output only. Name of the `ControllerRollout`. Format is projects/`project`/
|
2126
|
+
# locations/`location`/deliveryPipelines/`deliveryPipeline`/ releases/`release`/
|
2127
|
+
# rollouts/a-z`0,62`.
|
2128
|
+
# Corresponds to the JSON property `controllerRollout`
|
2129
|
+
# @return [String]
|
2130
|
+
attr_accessor :controller_rollout
|
2131
|
+
|
1967
2132
|
# Output only. Time at which the `Rollout` was created.
|
1968
2133
|
# Corresponds to the JSON property `createTime`
|
1969
2134
|
# @return [String]
|
@@ -2066,6 +2231,7 @@ module Google
|
|
2066
2231
|
@annotations = args[:annotations] if args.key?(:annotations)
|
2067
2232
|
@approval_state = args[:approval_state] if args.key?(:approval_state)
|
2068
2233
|
@approve_time = args[:approve_time] if args.key?(:approve_time)
|
2234
|
+
@controller_rollout = args[:controller_rollout] if args.key?(:controller_rollout)
|
2069
2235
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2070
2236
|
@deploy_end_time = args[:deploy_end_time] if args.key?(:deploy_end_time)
|
2071
2237
|
@deploy_failure_cause = args[:deploy_failure_cause] if args.key?(:deploy_failure_cause)
|
@@ -2467,6 +2633,11 @@ module Google
|
|
2467
2633
|
# @return [Hash<String,String>]
|
2468
2634
|
attr_accessor :labels
|
2469
2635
|
|
2636
|
+
# Information specifying a multiTarget.
|
2637
|
+
# Corresponds to the JSON property `multiTarget`
|
2638
|
+
# @return [Google::Apis::ClouddeployV1::MultiTarget]
|
2639
|
+
attr_accessor :multi_target
|
2640
|
+
|
2470
2641
|
# Optional. Name of the `Target`. Format is projects/`project`/locations/`
|
2471
2642
|
# location`/targets/a-z`0,62`.
|
2472
2643
|
# Corresponds to the JSON property `name`
|
@@ -2513,6 +2684,7 @@ module Google
|
|
2513
2684
|
@execution_configs = args[:execution_configs] if args.key?(:execution_configs)
|
2514
2685
|
@gke = args[:gke] if args.key?(:gke)
|
2515
2686
|
@labels = args[:labels] if args.key?(:labels)
|
2687
|
+
@multi_target = args[:multi_target] if args.key?(:multi_target)
|
2516
2688
|
@name = args[:name] if args.key?(:name)
|
2517
2689
|
@require_approval = args[:require_approval] if args.key?(:require_approval)
|
2518
2690
|
@run = args[:run] if args.key?(:run)
|
@@ -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.22.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 = "20230224"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,18 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class AdvanceChildRolloutJob
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class AdvanceChildRolloutJobRun
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
37
49
|
class AnthosCluster
|
38
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
51
|
|
@@ -82,6 +94,12 @@ module Google
|
|
82
94
|
include Google::Apis::Core::JsonObjectSupport
|
83
95
|
end
|
84
96
|
|
97
|
+
class ChildRolloutJobs
|
98
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
99
|
+
|
100
|
+
include Google::Apis::Core::JsonObjectSupport
|
101
|
+
end
|
102
|
+
|
85
103
|
class CloudRunLocation
|
86
104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
87
105
|
|
@@ -100,6 +118,18 @@ module Google
|
|
100
118
|
include Google::Apis::Core::JsonObjectSupport
|
101
119
|
end
|
102
120
|
|
121
|
+
class CreateChildRolloutJob
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
127
|
+
class CreateChildRolloutJobRun
|
128
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
129
|
+
|
130
|
+
include Google::Apis::Core::JsonObjectSupport
|
131
|
+
end
|
132
|
+
|
103
133
|
class Date
|
104
134
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
105
135
|
|
@@ -244,6 +274,12 @@ module Google
|
|
244
274
|
include Google::Apis::Core::JsonObjectSupport
|
245
275
|
end
|
246
276
|
|
277
|
+
class MultiTarget
|
278
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
279
|
+
|
280
|
+
include Google::Apis::Core::JsonObjectSupport
|
281
|
+
end
|
282
|
+
|
247
283
|
class Operation
|
248
284
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
249
285
|
|
@@ -460,6 +496,20 @@ module Google
|
|
460
496
|
end
|
461
497
|
end
|
462
498
|
|
499
|
+
class AdvanceChildRolloutJob
|
500
|
+
# @private
|
501
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
502
|
+
end
|
503
|
+
end
|
504
|
+
|
505
|
+
class AdvanceChildRolloutJobRun
|
506
|
+
# @private
|
507
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
508
|
+
property :rollout, as: 'rollout'
|
509
|
+
property :rollout_phase_id, as: 'rolloutPhaseId'
|
510
|
+
end
|
511
|
+
end
|
512
|
+
|
463
513
|
class AnthosCluster
|
464
514
|
# @private
|
465
515
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -521,6 +571,16 @@ module Google
|
|
521
571
|
end
|
522
572
|
end
|
523
573
|
|
574
|
+
class ChildRolloutJobs
|
575
|
+
# @private
|
576
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
577
|
+
collection :advance_rollout_jobs, as: 'advanceRolloutJobs', class: Google::Apis::ClouddeployV1::Job, decorator: Google::Apis::ClouddeployV1::Job::Representation
|
578
|
+
|
579
|
+
collection :create_rollout_jobs, as: 'createRolloutJobs', class: Google::Apis::ClouddeployV1::Job, decorator: Google::Apis::ClouddeployV1::Job::Representation
|
580
|
+
|
581
|
+
end
|
582
|
+
end
|
583
|
+
|
524
584
|
class CloudRunLocation
|
525
585
|
# @private
|
526
586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -547,6 +607,20 @@ module Google
|
|
547
607
|
end
|
548
608
|
end
|
549
609
|
|
610
|
+
class CreateChildRolloutJob
|
611
|
+
# @private
|
612
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
613
|
+
end
|
614
|
+
end
|
615
|
+
|
616
|
+
class CreateChildRolloutJobRun
|
617
|
+
# @private
|
618
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
619
|
+
property :rollout, as: 'rollout'
|
620
|
+
property :rollout_phase_id, as: 'rolloutPhaseId'
|
621
|
+
end
|
622
|
+
end
|
623
|
+
|
550
624
|
class Date
|
551
625
|
# @private
|
552
626
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -669,6 +743,10 @@ module Google
|
|
669
743
|
class Job
|
670
744
|
# @private
|
671
745
|
class Representation < Google::Apis::Core::JsonRepresentation
|
746
|
+
property :advance_child_rollout_job, as: 'advanceChildRolloutJob', class: Google::Apis::ClouddeployV1::AdvanceChildRolloutJob, decorator: Google::Apis::ClouddeployV1::AdvanceChildRolloutJob::Representation
|
747
|
+
|
748
|
+
property :create_child_rollout_job, as: 'createChildRolloutJob', class: Google::Apis::ClouddeployV1::CreateChildRolloutJob, decorator: Google::Apis::ClouddeployV1::CreateChildRolloutJob::Representation
|
749
|
+
|
672
750
|
property :deploy_job, as: 'deployJob', class: Google::Apis::ClouddeployV1::DeployJob, decorator: Google::Apis::ClouddeployV1::DeployJob::Representation
|
673
751
|
|
674
752
|
property :id, as: 'id'
|
@@ -682,6 +760,10 @@ module Google
|
|
682
760
|
class JobRun
|
683
761
|
# @private
|
684
762
|
class Representation < Google::Apis::Core::JsonRepresentation
|
763
|
+
property :advance_child_rollout_job_run, as: 'advanceChildRolloutJobRun', class: Google::Apis::ClouddeployV1::AdvanceChildRolloutJobRun, decorator: Google::Apis::ClouddeployV1::AdvanceChildRolloutJobRun::Representation
|
764
|
+
|
765
|
+
property :create_child_rollout_job_run, as: 'createChildRolloutJobRun', class: Google::Apis::ClouddeployV1::CreateChildRolloutJobRun, decorator: Google::Apis::ClouddeployV1::CreateChildRolloutJobRun::Representation
|
766
|
+
|
685
767
|
property :create_time, as: 'createTime'
|
686
768
|
property :deploy_job_run, as: 'deployJobRun', class: Google::Apis::ClouddeployV1::DeployJobRun, decorator: Google::Apis::ClouddeployV1::DeployJobRun::Representation
|
687
769
|
|
@@ -798,6 +880,13 @@ module Google
|
|
798
880
|
end
|
799
881
|
end
|
800
882
|
|
883
|
+
class MultiTarget
|
884
|
+
# @private
|
885
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
886
|
+
collection :target_ids, as: 'targetIds'
|
887
|
+
end
|
888
|
+
end
|
889
|
+
|
801
890
|
class Operation
|
802
891
|
# @private
|
803
892
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -826,6 +915,8 @@ module Google
|
|
826
915
|
class Phase
|
827
916
|
# @private
|
828
917
|
class Representation < Google::Apis::Core::JsonRepresentation
|
918
|
+
property :child_rollout_jobs, as: 'childRolloutJobs', class: Google::Apis::ClouddeployV1::ChildRolloutJobs, decorator: Google::Apis::ClouddeployV1::ChildRolloutJobs::Representation
|
919
|
+
|
829
920
|
property :deployment_jobs, as: 'deploymentJobs', class: Google::Apis::ClouddeployV1::DeploymentJobs, decorator: Google::Apis::ClouddeployV1::DeploymentJobs::Representation
|
830
921
|
|
831
922
|
property :id, as: 'id'
|
@@ -960,6 +1051,7 @@ module Google
|
|
960
1051
|
hash :annotations, as: 'annotations'
|
961
1052
|
property :approval_state, as: 'approvalState'
|
962
1053
|
property :approve_time, as: 'approveTime'
|
1054
|
+
property :controller_rollout, as: 'controllerRollout'
|
963
1055
|
property :create_time, as: 'createTime'
|
964
1056
|
property :deploy_end_time, as: 'deployEndTime'
|
965
1057
|
property :deploy_failure_cause, as: 'deployFailureCause'
|
@@ -1079,6 +1171,8 @@ module Google
|
|
1079
1171
|
property :gke, as: 'gke', class: Google::Apis::ClouddeployV1::GkeCluster, decorator: Google::Apis::ClouddeployV1::GkeCluster::Representation
|
1080
1172
|
|
1081
1173
|
hash :labels, as: 'labels'
|
1174
|
+
property :multi_target, as: 'multiTarget', class: Google::Apis::ClouddeployV1::MultiTarget, decorator: Google::Apis::ClouddeployV1::MultiTarget::Representation
|
1175
|
+
|
1082
1176
|
property :name, as: 'name'
|
1083
1177
|
property :require_approval, as: 'requireApproval'
|
1084
1178
|
property :run, as: 'run', class: Google::Apis::ClouddeployV1::CloudRunLocation, decorator: Google::Apis::ClouddeployV1::CloudRunLocation::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-clouddeploy_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-clouddeploy_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|