google-apis-clouddeploy_v1 0.17.0 → 0.18.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: a6f81c2c8569c4949dfbe3e68489cce90b57293c49b98a3874eed7d7686b4995
|
4
|
+
data.tar.gz: 85f614930dd25cac6d86938d8889ace5cc768e4457e559dce4571573332b1245
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 582b395c6ab9790cfe920ac61277327e856a360dd74bed6d12155ba96beb4e815ba86df01d0aedcd6270e2398c22924a45b30730721b447c13ea115ff204fcff
|
7
|
+
data.tar.gz: 96a7f68aa927be2831d2c55c57a23dc0b7054ffb30b8fbb47be084a8845e96a87085314348247cb006ef68323a7dd86b07ab83f3e2f272508e280c2787b3c72e
|
data/CHANGELOG.md
CHANGED
@@ -344,8 +344,8 @@ module Google
|
|
344
344
|
class Config
|
345
345
|
include Google::Apis::Core::Hashable
|
346
346
|
|
347
|
-
#
|
348
|
-
#
|
347
|
+
# Default Skaffold version that is assigned when a Release is created without
|
348
|
+
# specifying a Skaffold version.
|
349
349
|
# Corresponds to the JSON property `defaultSkaffoldVersion`
|
350
350
|
# @return [String]
|
351
351
|
attr_accessor :default_skaffold_version
|
@@ -355,7 +355,7 @@ module Google
|
|
355
355
|
# @return [String]
|
356
356
|
attr_accessor :name
|
357
357
|
|
358
|
-
#
|
358
|
+
# All supported versions of Skaffold.
|
359
359
|
# Corresponds to the JSON property `supportedVersions`
|
360
360
|
# @return [Array<Google::Apis::ClouddeployV1::SkaffoldVersion>]
|
361
361
|
attr_accessor :supported_versions
|
@@ -1462,6 +1462,12 @@ module Google
|
|
1462
1462
|
# @return [Google::Apis::ClouddeployV1::TargetsPresentCondition]
|
1463
1463
|
attr_accessor :targets_present_condition
|
1464
1464
|
|
1465
|
+
# TargetsTypeCondition contains information on whether the Targets defined in
|
1466
|
+
# the Delivery Pipeline are of the same type.
|
1467
|
+
# Corresponds to the JSON property `targetsTypeCondition`
|
1468
|
+
# @return [Google::Apis::ClouddeployV1::TargetsTypeCondition]
|
1469
|
+
attr_accessor :targets_type_condition
|
1470
|
+
|
1465
1471
|
def initialize(**args)
|
1466
1472
|
update!(**args)
|
1467
1473
|
end
|
@@ -1470,6 +1476,7 @@ module Google
|
|
1470
1476
|
def update!(**args)
|
1471
1477
|
@pipeline_ready_condition = args[:pipeline_ready_condition] if args.key?(:pipeline_ready_condition)
|
1472
1478
|
@targets_present_condition = args[:targets_present_condition] if args.key?(:targets_present_condition)
|
1479
|
+
@targets_type_condition = args[:targets_type_condition] if args.key?(:targets_type_condition)
|
1473
1480
|
end
|
1474
1481
|
end
|
1475
1482
|
|
@@ -2517,7 +2524,7 @@ module Google
|
|
2517
2524
|
class TargetsPresentCondition
|
2518
2525
|
include Google::Apis::Core::Hashable
|
2519
2526
|
|
2520
|
-
# The list of Target names that
|
2527
|
+
# The list of Target names that do not exist. For example, projects/`project_id`/
|
2521
2528
|
# locations/`location_name`/targets/`target_name`.
|
2522
2529
|
# Corresponds to the JSON property `missingTargets`
|
2523
2530
|
# @return [Array<String>]
|
@@ -2546,6 +2553,35 @@ module Google
|
|
2546
2553
|
end
|
2547
2554
|
end
|
2548
2555
|
|
2556
|
+
# TargetsTypeCondition contains information on whether the Targets defined in
|
2557
|
+
# the Delivery Pipeline are of the same type.
|
2558
|
+
class TargetsTypeCondition
|
2559
|
+
include Google::Apis::Core::Hashable
|
2560
|
+
|
2561
|
+
# Human readable error message.
|
2562
|
+
# Corresponds to the JSON property `errorDetails`
|
2563
|
+
# @return [String]
|
2564
|
+
attr_accessor :error_details
|
2565
|
+
|
2566
|
+
# True if the targets are all a comparable type. For example this is true if all
|
2567
|
+
# targets are GKE clusters. This is false if some targets are Cloud Run targets
|
2568
|
+
# and others are GKE clusters.
|
2569
|
+
# Corresponds to the JSON property `status`
|
2570
|
+
# @return [Boolean]
|
2571
|
+
attr_accessor :status
|
2572
|
+
alias_method :status?, :status
|
2573
|
+
|
2574
|
+
def initialize(**args)
|
2575
|
+
update!(**args)
|
2576
|
+
end
|
2577
|
+
|
2578
|
+
# Update properties of this object
|
2579
|
+
def update!(**args)
|
2580
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
2581
|
+
@status = args[:status] if args.key?(:status)
|
2582
|
+
end
|
2583
|
+
end
|
2584
|
+
|
2549
2585
|
# Request message for `TestIamPermissions` method.
|
2550
2586
|
class TestIamPermissionsRequest
|
2551
2587
|
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.18.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20221208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -400,6 +400,12 @@ module Google
|
|
400
400
|
include Google::Apis::Core::JsonObjectSupport
|
401
401
|
end
|
402
402
|
|
403
|
+
class TargetsTypeCondition
|
404
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
|
+
|
406
|
+
include Google::Apis::Core::JsonObjectSupport
|
407
|
+
end
|
408
|
+
|
403
409
|
class TestIamPermissionsRequest
|
404
410
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
411
|
|
@@ -816,6 +822,8 @@ module Google
|
|
816
822
|
|
817
823
|
property :targets_present_condition, as: 'targetsPresentCondition', class: Google::Apis::ClouddeployV1::TargetsPresentCondition, decorator: Google::Apis::ClouddeployV1::TargetsPresentCondition::Representation
|
818
824
|
|
825
|
+
property :targets_type_condition, as: 'targetsTypeCondition', class: Google::Apis::ClouddeployV1::TargetsTypeCondition, decorator: Google::Apis::ClouddeployV1::TargetsTypeCondition::Representation
|
826
|
+
|
819
827
|
end
|
820
828
|
end
|
821
829
|
|
@@ -1069,6 +1077,14 @@ module Google
|
|
1069
1077
|
end
|
1070
1078
|
end
|
1071
1079
|
|
1080
|
+
class TargetsTypeCondition
|
1081
|
+
# @private
|
1082
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1083
|
+
property :error_details, as: 'errorDetails'
|
1084
|
+
property :status, as: 'status'
|
1085
|
+
end
|
1086
|
+
end
|
1087
|
+
|
1072
1088
|
class TestIamPermissionsRequest
|
1073
1089
|
# @private
|
1074
1090
|
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.18.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:
|
11
|
+
date: 2023-01-04 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.18.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: []
|