google-apis-clouddeploy_v1 0.52.0 → 0.54.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a4a13e6ae1b9a621af21ef9727386378b5d404c5a3aaab097a0ff10e44053ce
|
4
|
+
data.tar.gz: 59698bf2dce1f7a812f8a37ee95e985e41faa7a09bb152ea4c111d773fa55387
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23897801a7126964a1fb3e52521aa1b637cff4e1096f689520e7a37ffd3880e8f7bd6680b2e5c9f1948a6e1b7f7e9a26d75d1d84f1e299810d300c48a278fcba
|
7
|
+
data.tar.gz: b55d09869a8aae94501d6dc40bd10d0aa70bb6f3510ebb9d8616486e76b9ac074922a3a76a7ae92f82616653e62125018be87b9028c55963fcd1d0e71bd96e52
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-clouddeploy_v1
|
2
2
|
|
3
|
+
### v0.54.0 (2024-11-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241029
|
6
|
+
|
7
|
+
### v0.53.0 (2024-10-20)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241010
|
10
|
+
|
3
11
|
### v0.52.0 (2024-10-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241002
|
@@ -269,6 +269,31 @@ module Google
|
|
269
269
|
end
|
270
270
|
end
|
271
271
|
|
272
|
+
# Information about entities associated with a `Target`.
|
273
|
+
class AssociatedEntities
|
274
|
+
include Google::Apis::Core::Hashable
|
275
|
+
|
276
|
+
# Optional. Information specifying Anthos clusters as associated entities.
|
277
|
+
# Corresponds to the JSON property `anthosClusters`
|
278
|
+
# @return [Array<Google::Apis::ClouddeployV1::AnthosCluster>]
|
279
|
+
attr_accessor :anthos_clusters
|
280
|
+
|
281
|
+
# Optional. Information specifying GKE clusters as associated entities.
|
282
|
+
# Corresponds to the JSON property `gkeClusters`
|
283
|
+
# @return [Array<Google::Apis::ClouddeployV1::GkeCluster>]
|
284
|
+
attr_accessor :gke_clusters
|
285
|
+
|
286
|
+
def initialize(**args)
|
287
|
+
update!(**args)
|
288
|
+
end
|
289
|
+
|
290
|
+
# Update properties of this object
|
291
|
+
def update!(**args)
|
292
|
+
@anthos_clusters = args[:anthos_clusters] if args.key?(:anthos_clusters)
|
293
|
+
@gke_clusters = args[:gke_clusters] if args.key?(:gke_clusters)
|
294
|
+
end
|
295
|
+
end
|
296
|
+
|
272
297
|
# Specifies the audit configuration for a service. The configuration determines
|
273
298
|
# which permission types are logged, and what identities, if any, are exempted
|
274
299
|
# from logging. An AuditConfig must have one or more AuditLogConfigs. If there
|
@@ -569,6 +594,12 @@ module Google
|
|
569
594
|
# @return [Google::Apis::ClouddeployV1::RepairRolloutRule]
|
570
595
|
attr_accessor :repair_rollout_rule
|
571
596
|
|
597
|
+
# The `TimedPromoteReleaseRule` will automatically promote a release from the
|
598
|
+
# current target(s) to the specified target(s) on a configured schedule.
|
599
|
+
# Corresponds to the JSON property `timedPromoteReleaseRule`
|
600
|
+
# @return [Google::Apis::ClouddeployV1::TimedPromoteReleaseRule]
|
601
|
+
attr_accessor :timed_promote_release_rule
|
602
|
+
|
572
603
|
def initialize(**args)
|
573
604
|
update!(**args)
|
574
605
|
end
|
@@ -578,6 +609,7 @@ module Google
|
|
578
609
|
@advance_rollout_rule = args[:advance_rollout_rule] if args.key?(:advance_rollout_rule)
|
579
610
|
@promote_release_rule = args[:promote_release_rule] if args.key?(:promote_release_rule)
|
580
611
|
@repair_rollout_rule = args[:repair_rollout_rule] if args.key?(:repair_rollout_rule)
|
612
|
+
@timed_promote_release_rule = args[:timed_promote_release_rule] if args.key?(:timed_promote_release_rule)
|
581
613
|
end
|
582
614
|
end
|
583
615
|
|
@@ -591,6 +623,12 @@ module Google
|
|
591
623
|
# @return [Google::Apis::ClouddeployV1::TargetsPresentCondition]
|
592
624
|
attr_accessor :targets_present_condition
|
593
625
|
|
626
|
+
# `TimedPromoteReleaseCondition` contains conditions specific to an Automation
|
627
|
+
# with a Timed Promote Release rule defined.
|
628
|
+
# Corresponds to the JSON property `timedPromoteReleaseCondition`
|
629
|
+
# @return [Google::Apis::ClouddeployV1::TimedPromoteReleaseCondition]
|
630
|
+
attr_accessor :timed_promote_release_condition
|
631
|
+
|
594
632
|
def initialize(**args)
|
595
633
|
update!(**args)
|
596
634
|
end
|
@@ -598,6 +636,7 @@ module Google
|
|
598
636
|
# Update properties of this object
|
599
637
|
def update!(**args)
|
600
638
|
@targets_present_condition = args[:targets_present_condition] if args.key?(:targets_present_condition)
|
639
|
+
@timed_promote_release_condition = args[:timed_promote_release_condition] if args.key?(:timed_promote_release_condition)
|
601
640
|
end
|
602
641
|
end
|
603
642
|
|
@@ -690,13 +729,17 @@ module Google
|
|
690
729
|
# @return [String]
|
691
730
|
attr_accessor :state_description
|
692
731
|
|
693
|
-
# Output only. The ID of the target that
|
694
|
-
#
|
695
|
-
# a target name.
|
732
|
+
# Output only. The ID of the source target that initiates the `AutomationRun`.
|
733
|
+
# The value of this field is the last segment of a target name.
|
696
734
|
# Corresponds to the JSON property `targetId`
|
697
735
|
# @return [String]
|
698
736
|
attr_accessor :target_id
|
699
737
|
|
738
|
+
# Contains the information of an automated timed promote-release operation.
|
739
|
+
# Corresponds to the JSON property `timedPromoteReleaseOperation`
|
740
|
+
# @return [Google::Apis::ClouddeployV1::TimedPromoteReleaseOperation]
|
741
|
+
attr_accessor :timed_promote_release_operation
|
742
|
+
|
700
743
|
# Output only. Time at which the automationRun was updated.
|
701
744
|
# Corresponds to the JSON property `updateTime`
|
702
745
|
# @return [String]
|
@@ -729,6 +772,7 @@ module Google
|
|
729
772
|
@state = args[:state] if args.key?(:state)
|
730
773
|
@state_description = args[:state_description] if args.key?(:state_description)
|
731
774
|
@target_id = args[:target_id] if args.key?(:target_id)
|
775
|
+
@timed_promote_release_operation = args[:timed_promote_release_operation] if args.key?(:timed_promote_release_operation)
|
732
776
|
@update_time = args[:update_time] if args.key?(:update_time)
|
733
777
|
@wait_until_time = args[:wait_until_time] if args.key?(:wait_until_time)
|
734
778
|
end
|
@@ -2374,6 +2418,11 @@ module Google
|
|
2374
2418
|
# @return [String]
|
2375
2419
|
attr_accessor :pod_selector_label
|
2376
2420
|
|
2421
|
+
# Information about route destinations for the Gateway API service mesh.
|
2422
|
+
# Corresponds to the JSON property `routeDestinations`
|
2423
|
+
# @return [Google::Apis::ClouddeployV1::RouteDestinations]
|
2424
|
+
attr_accessor :route_destinations
|
2425
|
+
|
2377
2426
|
# Optional. The time to wait for route updates to propagate. The maximum
|
2378
2427
|
# configurable time is 3 hours, in seconds format. If unspecified, there is no
|
2379
2428
|
# wait time.
|
@@ -2402,6 +2451,7 @@ module Google
|
|
2402
2451
|
@deployment = args[:deployment] if args.key?(:deployment)
|
2403
2452
|
@http_route = args[:http_route] if args.key?(:http_route)
|
2404
2453
|
@pod_selector_label = args[:pod_selector_label] if args.key?(:pod_selector_label)
|
2454
|
+
@route_destinations = args[:route_destinations] if args.key?(:route_destinations)
|
2405
2455
|
@route_update_wait_time = args[:route_update_wait_time] if args.key?(:route_update_wait_time)
|
2406
2456
|
@service = args[:service] if args.key?(:service)
|
2407
2457
|
@stable_cutback_duration = args[:stable_cutback_duration] if args.key?(:stable_cutback_duration)
|
@@ -5171,6 +5221,38 @@ module Google
|
|
5171
5221
|
end
|
5172
5222
|
end
|
5173
5223
|
|
5224
|
+
# Information about route destinations for the Gateway API service mesh.
|
5225
|
+
class RouteDestinations
|
5226
|
+
include Google::Apis::Core::Hashable
|
5227
|
+
|
5228
|
+
# Required. The clusters where the Gateway API HTTPRoute resource will be
|
5229
|
+
# deployed to. Valid entries include the associated entities IDs configured in
|
5230
|
+
# the Target resource and "@self" to include the Target cluster.
|
5231
|
+
# Corresponds to the JSON property `destinationIds`
|
5232
|
+
# @return [Array<String>]
|
5233
|
+
attr_accessor :destination_ids
|
5234
|
+
|
5235
|
+
# Optional. Whether to propagate the Kubernetes Service to the route destination
|
5236
|
+
# clusters. The Service will always be deployed to the Target cluster even if
|
5237
|
+
# the HTTPRoute is not. This option may be used to facilitiate successful DNS
|
5238
|
+
# lookup in the route destination clusters. Can only be set to true if
|
5239
|
+
# destinations are specified.
|
5240
|
+
# Corresponds to the JSON property `propagateService`
|
5241
|
+
# @return [Boolean]
|
5242
|
+
attr_accessor :propagate_service
|
5243
|
+
alias_method :propagate_service?, :propagate_service
|
5244
|
+
|
5245
|
+
def initialize(**args)
|
5246
|
+
update!(**args)
|
5247
|
+
end
|
5248
|
+
|
5249
|
+
# Update properties of this object
|
5250
|
+
def update!(**args)
|
5251
|
+
@destination_ids = args[:destination_ids] if args.key?(:destination_ids)
|
5252
|
+
@propagate_service = args[:propagate_service] if args.key?(:propagate_service)
|
5253
|
+
end
|
5254
|
+
end
|
5255
|
+
|
5174
5256
|
# RuntimeConfig contains the runtime specific configurations for a deployment
|
5175
5257
|
# strategy.
|
5176
5258
|
class RuntimeConfig
|
@@ -5678,6 +5760,18 @@ module Google
|
|
5678
5760
|
# @return [Google::Apis::ClouddeployV1::AnthosCluster]
|
5679
5761
|
attr_accessor :anthos_cluster
|
5680
5762
|
|
5763
|
+
# Optional. Map of entity IDs to their associated entities. Associated entities
|
5764
|
+
# allows specifying places other than the deployment target for specific
|
5765
|
+
# features. For example, the Gateway API canary can be configured to deploy the
|
5766
|
+
# HTTPRoute to a different cluster(s) than the deployment cluster using
|
5767
|
+
# associated entities. An entity ID must consist of lower-case letters, numbers,
|
5768
|
+
# and hyphens, start with a letter and end with a letter or a number, and have a
|
5769
|
+
# max length of 63 characters. In other words, it must match the following regex:
|
5770
|
+
# `^[a-z]([a-z0-9-]`0,61`[a-z0-9])?$`.
|
5771
|
+
# Corresponds to the JSON property `associatedEntities`
|
5772
|
+
# @return [Hash<String,Google::Apis::ClouddeployV1::AssociatedEntities>]
|
5773
|
+
attr_accessor :associated_entities
|
5774
|
+
|
5681
5775
|
# Output only. Time at which the `Target` was created.
|
5682
5776
|
# Corresponds to the JSON property `createTime`
|
5683
5777
|
# @return [String]
|
@@ -5777,6 +5871,7 @@ module Google
|
|
5777
5871
|
def update!(**args)
|
5778
5872
|
@annotations = args[:annotations] if args.key?(:annotations)
|
5779
5873
|
@anthos_cluster = args[:anthos_cluster] if args.key?(:anthos_cluster)
|
5874
|
+
@associated_entities = args[:associated_entities] if args.key?(:associated_entities)
|
5780
5875
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5781
5876
|
@custom_target = args[:custom_target] if args.key?(:custom_target)
|
5782
5877
|
@deploy_parameters = args[:deploy_parameters] if args.key?(:deploy_parameters)
|
@@ -5941,6 +6036,31 @@ module Google
|
|
5941
6036
|
end
|
5942
6037
|
end
|
5943
6038
|
|
6039
|
+
# The targets involved in a single timed promotion.
|
6040
|
+
class Targets
|
6041
|
+
include Google::Apis::Core::Hashable
|
6042
|
+
|
6043
|
+
# Optional. The destination target ID.
|
6044
|
+
# Corresponds to the JSON property `destinationTargetId`
|
6045
|
+
# @return [String]
|
6046
|
+
attr_accessor :destination_target_id
|
6047
|
+
|
6048
|
+
# Optional. The source target ID.
|
6049
|
+
# Corresponds to the JSON property `sourceTargetId`
|
6050
|
+
# @return [String]
|
6051
|
+
attr_accessor :source_target_id
|
6052
|
+
|
6053
|
+
def initialize(**args)
|
6054
|
+
update!(**args)
|
6055
|
+
end
|
6056
|
+
|
6057
|
+
# Update properties of this object
|
6058
|
+
def update!(**args)
|
6059
|
+
@destination_target_id = args[:destination_target_id] if args.key?(:destination_target_id)
|
6060
|
+
@source_target_id = args[:source_target_id] if args.key?(:source_target_id)
|
6061
|
+
end
|
6062
|
+
end
|
6063
|
+
|
5944
6064
|
# `TargetsPresentCondition` contains information on any Targets referenced in
|
5945
6065
|
# the Delivery Pipeline that do not actually exist.
|
5946
6066
|
class TargetsPresentCondition
|
@@ -6156,6 +6276,121 @@ module Google
|
|
6156
6276
|
end
|
6157
6277
|
end
|
6158
6278
|
|
6279
|
+
# `TimedPromoteReleaseCondition` contains conditions specific to an Automation
|
6280
|
+
# with a Timed Promote Release rule defined.
|
6281
|
+
class TimedPromoteReleaseCondition
|
6282
|
+
include Google::Apis::Core::Hashable
|
6283
|
+
|
6284
|
+
# Output only. When the next scheduled promotion(s) will occur.
|
6285
|
+
# Corresponds to the JSON property `nextPromotionTime`
|
6286
|
+
# @return [String]
|
6287
|
+
attr_accessor :next_promotion_time
|
6288
|
+
|
6289
|
+
# Output only. A list of targets involved in the upcoming timed promotion(s).
|
6290
|
+
# Corresponds to the JSON property `targetsList`
|
6291
|
+
# @return [Array<Google::Apis::ClouddeployV1::Targets>]
|
6292
|
+
attr_accessor :targets_list
|
6293
|
+
|
6294
|
+
def initialize(**args)
|
6295
|
+
update!(**args)
|
6296
|
+
end
|
6297
|
+
|
6298
|
+
# Update properties of this object
|
6299
|
+
def update!(**args)
|
6300
|
+
@next_promotion_time = args[:next_promotion_time] if args.key?(:next_promotion_time)
|
6301
|
+
@targets_list = args[:targets_list] if args.key?(:targets_list)
|
6302
|
+
end
|
6303
|
+
end
|
6304
|
+
|
6305
|
+
# Contains the information of an automated timed promote-release operation.
|
6306
|
+
class TimedPromoteReleaseOperation
|
6307
|
+
include Google::Apis::Core::Hashable
|
6308
|
+
|
6309
|
+
# Output only. The starting phase of the rollout created by this operation.
|
6310
|
+
# Corresponds to the JSON property `phase`
|
6311
|
+
# @return [String]
|
6312
|
+
attr_accessor :phase
|
6313
|
+
|
6314
|
+
# Output only. The name of the release to be promoted.
|
6315
|
+
# Corresponds to the JSON property `release`
|
6316
|
+
# @return [String]
|
6317
|
+
attr_accessor :release
|
6318
|
+
|
6319
|
+
# Output only. The ID of the target that represents the promotion stage to which
|
6320
|
+
# the release will be promoted. The value of this field is the last segment of a
|
6321
|
+
# target name.
|
6322
|
+
# Corresponds to the JSON property `targetId`
|
6323
|
+
# @return [String]
|
6324
|
+
attr_accessor :target_id
|
6325
|
+
|
6326
|
+
def initialize(**args)
|
6327
|
+
update!(**args)
|
6328
|
+
end
|
6329
|
+
|
6330
|
+
# Update properties of this object
|
6331
|
+
def update!(**args)
|
6332
|
+
@phase = args[:phase] if args.key?(:phase)
|
6333
|
+
@release = args[:release] if args.key?(:release)
|
6334
|
+
@target_id = args[:target_id] if args.key?(:target_id)
|
6335
|
+
end
|
6336
|
+
end
|
6337
|
+
|
6338
|
+
# The `TimedPromoteReleaseRule` will automatically promote a release from the
|
6339
|
+
# current target(s) to the specified target(s) on a configured schedule.
|
6340
|
+
class TimedPromoteReleaseRule
|
6341
|
+
include Google::Apis::Core::Hashable
|
6342
|
+
|
6343
|
+
# `AutomationRuleCondition` contains conditions relevant to an `Automation` rule.
|
6344
|
+
# Corresponds to the JSON property `condition`
|
6345
|
+
# @return [Google::Apis::ClouddeployV1::AutomationRuleCondition]
|
6346
|
+
attr_accessor :condition
|
6347
|
+
|
6348
|
+
# Optional. The starting phase of the rollout created by this rule. Default to
|
6349
|
+
# the first phase.
|
6350
|
+
# Corresponds to the JSON property `destinationPhase`
|
6351
|
+
# @return [String]
|
6352
|
+
attr_accessor :destination_phase
|
6353
|
+
|
6354
|
+
# Optional. The ID of the stage in the pipeline to which this `Release` is
|
6355
|
+
# deploying. If unspecified, default it to the next stage in the promotion flow.
|
6356
|
+
# The value of this field could be one of the following: * The last segment of a
|
6357
|
+
# target name * "@next", the next target in the promotion sequence
|
6358
|
+
# Corresponds to the JSON property `destinationTargetId`
|
6359
|
+
# @return [String]
|
6360
|
+
attr_accessor :destination_target_id
|
6361
|
+
|
6362
|
+
# Required. ID of the rule. This ID must be unique in the `Automation` resource
|
6363
|
+
# to which this rule belongs. The format is `[a-z]([a-z0-9-]`0,61`[a-z0-9])?`.
|
6364
|
+
# Corresponds to the JSON property `id`
|
6365
|
+
# @return [String]
|
6366
|
+
attr_accessor :id
|
6367
|
+
|
6368
|
+
# Required. Schedule in crontab format. e.g. "0 9 * * 1" for every Monday at 9am.
|
6369
|
+
# Corresponds to the JSON property `schedule`
|
6370
|
+
# @return [String]
|
6371
|
+
attr_accessor :schedule
|
6372
|
+
|
6373
|
+
# Required. The time zone in IANA format [IANA Time Zone Database](https://www.
|
6374
|
+
# iana.org/time-zones) (e.g. America/New_York).
|
6375
|
+
# Corresponds to the JSON property `timeZone`
|
6376
|
+
# @return [String]
|
6377
|
+
attr_accessor :time_zone
|
6378
|
+
|
6379
|
+
def initialize(**args)
|
6380
|
+
update!(**args)
|
6381
|
+
end
|
6382
|
+
|
6383
|
+
# Update properties of this object
|
6384
|
+
def update!(**args)
|
6385
|
+
@condition = args[:condition] if args.key?(:condition)
|
6386
|
+
@destination_phase = args[:destination_phase] if args.key?(:destination_phase)
|
6387
|
+
@destination_target_id = args[:destination_target_id] if args.key?(:destination_target_id)
|
6388
|
+
@id = args[:id] if args.key?(:id)
|
6389
|
+
@schedule = args[:schedule] if args.key?(:schedule)
|
6390
|
+
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
6391
|
+
end
|
6392
|
+
end
|
6393
|
+
|
6159
6394
|
# A verify Job.
|
6160
6395
|
class VerifyJob
|
6161
6396
|
include Google::Apis::Core::Hashable
|
@@ -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.54.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241029"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,6 +88,12 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
+
class AssociatedEntities
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
91
97
|
class AuditConfig
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
99
|
|
@@ -802,6 +808,12 @@ module Google
|
|
802
808
|
include Google::Apis::Core::JsonObjectSupport
|
803
809
|
end
|
804
810
|
|
811
|
+
class RouteDestinations
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
|
+
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
815
|
+
end
|
816
|
+
|
805
817
|
class RuntimeConfig
|
806
818
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
819
|
|
@@ -916,6 +928,12 @@ module Google
|
|
916
928
|
include Google::Apis::Core::JsonObjectSupport
|
917
929
|
end
|
918
930
|
|
931
|
+
class Targets
|
932
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
933
|
+
|
934
|
+
include Google::Apis::Core::JsonObjectSupport
|
935
|
+
end
|
936
|
+
|
919
937
|
class TargetsPresentCondition
|
920
938
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
921
939
|
|
@@ -964,6 +982,24 @@ module Google
|
|
964
982
|
include Google::Apis::Core::JsonObjectSupport
|
965
983
|
end
|
966
984
|
|
985
|
+
class TimedPromoteReleaseCondition
|
986
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
987
|
+
|
988
|
+
include Google::Apis::Core::JsonObjectSupport
|
989
|
+
end
|
990
|
+
|
991
|
+
class TimedPromoteReleaseOperation
|
992
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
993
|
+
|
994
|
+
include Google::Apis::Core::JsonObjectSupport
|
995
|
+
end
|
996
|
+
|
997
|
+
class TimedPromoteReleaseRule
|
998
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
999
|
+
|
1000
|
+
include Google::Apis::Core::JsonObjectSupport
|
1001
|
+
end
|
1002
|
+
|
967
1003
|
class VerifyJob
|
968
1004
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
969
1005
|
|
@@ -1064,6 +1100,16 @@ module Google
|
|
1064
1100
|
end
|
1065
1101
|
end
|
1066
1102
|
|
1103
|
+
class AssociatedEntities
|
1104
|
+
# @private
|
1105
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1106
|
+
collection :anthos_clusters, as: 'anthosClusters', class: Google::Apis::ClouddeployV1::AnthosCluster, decorator: Google::Apis::ClouddeployV1::AnthosCluster::Representation
|
1107
|
+
|
1108
|
+
collection :gke_clusters, as: 'gkeClusters', class: Google::Apis::ClouddeployV1::GkeCluster, decorator: Google::Apis::ClouddeployV1::GkeCluster::Representation
|
1109
|
+
|
1110
|
+
end
|
1111
|
+
end
|
1112
|
+
|
1067
1113
|
class AuditConfig
|
1068
1114
|
# @private
|
1069
1115
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1137,6 +1183,8 @@ module Google
|
|
1137
1183
|
|
1138
1184
|
property :repair_rollout_rule, as: 'repairRolloutRule', class: Google::Apis::ClouddeployV1::RepairRolloutRule, decorator: Google::Apis::ClouddeployV1::RepairRolloutRule::Representation
|
1139
1185
|
|
1186
|
+
property :timed_promote_release_rule, as: 'timedPromoteReleaseRule', class: Google::Apis::ClouddeployV1::TimedPromoteReleaseRule, decorator: Google::Apis::ClouddeployV1::TimedPromoteReleaseRule::Representation
|
1187
|
+
|
1140
1188
|
end
|
1141
1189
|
end
|
1142
1190
|
|
@@ -1145,6 +1193,8 @@ module Google
|
|
1145
1193
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1146
1194
|
property :targets_present_condition, as: 'targetsPresentCondition', class: Google::Apis::ClouddeployV1::TargetsPresentCondition, decorator: Google::Apis::ClouddeployV1::TargetsPresentCondition::Representation
|
1147
1195
|
|
1196
|
+
property :timed_promote_release_condition, as: 'timedPromoteReleaseCondition', class: Google::Apis::ClouddeployV1::TimedPromoteReleaseCondition, decorator: Google::Apis::ClouddeployV1::TimedPromoteReleaseCondition::Representation
|
1197
|
+
|
1148
1198
|
end
|
1149
1199
|
end
|
1150
1200
|
|
@@ -1171,6 +1221,8 @@ module Google
|
|
1171
1221
|
property :state, as: 'state'
|
1172
1222
|
property :state_description, as: 'stateDescription'
|
1173
1223
|
property :target_id, as: 'targetId'
|
1224
|
+
property :timed_promote_release_operation, as: 'timedPromoteReleaseOperation', class: Google::Apis::ClouddeployV1::TimedPromoteReleaseOperation, decorator: Google::Apis::ClouddeployV1::TimedPromoteReleaseOperation::Representation
|
1225
|
+
|
1174
1226
|
property :update_time, as: 'updateTime'
|
1175
1227
|
property :wait_until_time, as: 'waitUntilTime'
|
1176
1228
|
end
|
@@ -1607,6 +1659,8 @@ module Google
|
|
1607
1659
|
property :deployment, as: 'deployment'
|
1608
1660
|
property :http_route, as: 'httpRoute'
|
1609
1661
|
property :pod_selector_label, as: 'podSelectorLabel'
|
1662
|
+
property :route_destinations, as: 'routeDestinations', class: Google::Apis::ClouddeployV1::RouteDestinations, decorator: Google::Apis::ClouddeployV1::RouteDestinations::Representation
|
1663
|
+
|
1610
1664
|
property :route_update_wait_time, as: 'routeUpdateWaitTime'
|
1611
1665
|
property :service, as: 'service'
|
1612
1666
|
property :stable_cutback_duration, as: 'stableCutbackDuration'
|
@@ -2351,6 +2405,14 @@ module Google
|
|
2351
2405
|
end
|
2352
2406
|
end
|
2353
2407
|
|
2408
|
+
class RouteDestinations
|
2409
|
+
# @private
|
2410
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2411
|
+
collection :destination_ids, as: 'destinationIds'
|
2412
|
+
property :propagate_service, as: 'propagateService'
|
2413
|
+
end
|
2414
|
+
end
|
2415
|
+
|
2354
2416
|
class RuntimeConfig
|
2355
2417
|
# @private
|
2356
2418
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2496,6 +2558,8 @@ module Google
|
|
2496
2558
|
hash :annotations, as: 'annotations'
|
2497
2559
|
property :anthos_cluster, as: 'anthosCluster', class: Google::Apis::ClouddeployV1::AnthosCluster, decorator: Google::Apis::ClouddeployV1::AnthosCluster::Representation
|
2498
2560
|
|
2561
|
+
hash :associated_entities, as: 'associatedEntities', class: Google::Apis::ClouddeployV1::AssociatedEntities, decorator: Google::Apis::ClouddeployV1::AssociatedEntities::Representation
|
2562
|
+
|
2499
2563
|
property :create_time, as: 'createTime'
|
2500
2564
|
property :custom_target, as: 'customTarget', class: Google::Apis::ClouddeployV1::CustomTarget, decorator: Google::Apis::ClouddeployV1::CustomTarget::Representation
|
2501
2565
|
|
@@ -2559,6 +2623,14 @@ module Google
|
|
2559
2623
|
end
|
2560
2624
|
end
|
2561
2625
|
|
2626
|
+
class Targets
|
2627
|
+
# @private
|
2628
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2629
|
+
property :destination_target_id, as: 'destinationTargetId'
|
2630
|
+
property :source_target_id, as: 'sourceTargetId'
|
2631
|
+
end
|
2632
|
+
end
|
2633
|
+
|
2562
2634
|
class TargetsPresentCondition
|
2563
2635
|
# @private
|
2564
2636
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2624,6 +2696,37 @@ module Google
|
|
2624
2696
|
end
|
2625
2697
|
end
|
2626
2698
|
|
2699
|
+
class TimedPromoteReleaseCondition
|
2700
|
+
# @private
|
2701
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2702
|
+
property :next_promotion_time, as: 'nextPromotionTime'
|
2703
|
+
collection :targets_list, as: 'targetsList', class: Google::Apis::ClouddeployV1::Targets, decorator: Google::Apis::ClouddeployV1::Targets::Representation
|
2704
|
+
|
2705
|
+
end
|
2706
|
+
end
|
2707
|
+
|
2708
|
+
class TimedPromoteReleaseOperation
|
2709
|
+
# @private
|
2710
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2711
|
+
property :phase, as: 'phase'
|
2712
|
+
property :release, as: 'release'
|
2713
|
+
property :target_id, as: 'targetId'
|
2714
|
+
end
|
2715
|
+
end
|
2716
|
+
|
2717
|
+
class TimedPromoteReleaseRule
|
2718
|
+
# @private
|
2719
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2720
|
+
property :condition, as: 'condition', class: Google::Apis::ClouddeployV1::AutomationRuleCondition, decorator: Google::Apis::ClouddeployV1::AutomationRuleCondition::Representation
|
2721
|
+
|
2722
|
+
property :destination_phase, as: 'destinationPhase'
|
2723
|
+
property :destination_target_id, as: 'destinationTargetId'
|
2724
|
+
property :id, as: 'id'
|
2725
|
+
property :schedule, as: 'schedule'
|
2726
|
+
property :time_zone, as: 'timeZone'
|
2727
|
+
end
|
2728
|
+
end
|
2729
|
+
|
2627
2730
|
class VerifyJob
|
2628
2731
|
# @private
|
2629
2732
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.54.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: 2024-
|
11
|
+
date: 2024-11-17 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.54.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.22
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Deploy API V1
|