google-apis-clouddeploy_v1 0.42.0 → 0.44.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: cd344db7c2c12c0cf437393abe309e8e4d4a9495793ba7cc786a12453313731c
|
4
|
+
data.tar.gz: 59296a415e0ac101b359fd9b00f34c86952a477a1050811ad5ffacf6b02ccc9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3b8cbd4fe433629e49d8a54bebe5fd2d8062df4e63ac65372ab756dcc96cdfd9b97c04aa783899dffc1fe65f88215b38de7cf2ffb7ee4499213238ec83698c19
|
7
|
+
data.tar.gz: 62f4bad1312c6d08ad90e1b4abb0c7aac43123f29e44b9a63a9343dd19da937e4f5cc4ccd32d3b0fcbc695f157d400e48b462c9c3c27393bd8fcbb7004b3b0ef
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-clouddeploy_v1
|
2
2
|
|
3
|
+
### v0.44.0 (2024-05-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240428
|
6
|
+
|
7
|
+
### v0.43.0 (2024-04-28)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240417
|
10
|
+
|
3
11
|
### v0.42.0 (2024-03-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240221
|
@@ -205,9 +205,9 @@ module Google
|
|
205
205
|
class AnthosCluster
|
206
206
|
include Google::Apis::Core::Hashable
|
207
207
|
|
208
|
-
# Membership of the GKE Hub-registered cluster to which to apply the
|
209
|
-
# configuration. Format is `projects/`project`/locations/`location`/
|
210
|
-
# membership_name``.
|
208
|
+
# Optional. Membership of the GKE Hub-registered cluster to which to apply the
|
209
|
+
# Skaffold configuration. Format is `projects/`project`/locations/`location`/
|
210
|
+
# memberships/`membership_name``.
|
211
211
|
# Corresponds to the JSON property `membership`
|
212
212
|
# @return [String]
|
213
213
|
attr_accessor :membership
|
@@ -2031,8 +2031,8 @@ module Google
|
|
2031
2031
|
class GkeCluster
|
2032
2032
|
include Google::Apis::Core::Hashable
|
2033
2033
|
|
2034
|
-
# Information specifying a GKE Cluster. Format is `projects/`
|
2035
|
-
# locations/`location_id`/clusters/`cluster_id``.
|
2034
|
+
# Optional. Information specifying a GKE Cluster. Format is `projects/`
|
2035
|
+
# project_id`/locations/`location_id`/clusters/`cluster_id``.
|
2036
2036
|
# Corresponds to the JSON property `cluster`
|
2037
2037
|
# @return [String]
|
2038
2038
|
attr_accessor :cluster
|
@@ -4684,6 +4684,38 @@ module Google
|
|
4684
4684
|
end
|
4685
4685
|
end
|
4686
4686
|
|
4687
|
+
# Cloud Build V2 Repository containing Skaffold Configs.
|
4688
|
+
class SkaffoldGcbRepoSource
|
4689
|
+
include Google::Apis::Core::Hashable
|
4690
|
+
|
4691
|
+
# Optional. Relative path from the repository root to the Skaffold Config file.
|
4692
|
+
# Corresponds to the JSON property `path`
|
4693
|
+
# @return [String]
|
4694
|
+
attr_accessor :path
|
4695
|
+
|
4696
|
+
# Optional. Branch or tag to use when cloning the repository.
|
4697
|
+
# Corresponds to the JSON property `ref`
|
4698
|
+
# @return [String]
|
4699
|
+
attr_accessor :ref
|
4700
|
+
|
4701
|
+
# Required. Name of the Cloud Build V2 Repository. Format is projects/`project`/
|
4702
|
+
# locations/`location`/connections/`connection`/repositories/`repository`.
|
4703
|
+
# Corresponds to the JSON property `repository`
|
4704
|
+
# @return [String]
|
4705
|
+
attr_accessor :repository
|
4706
|
+
|
4707
|
+
def initialize(**args)
|
4708
|
+
update!(**args)
|
4709
|
+
end
|
4710
|
+
|
4711
|
+
# Update properties of this object
|
4712
|
+
def update!(**args)
|
4713
|
+
@path = args[:path] if args.key?(:path)
|
4714
|
+
@ref = args[:ref] if args.key?(:ref)
|
4715
|
+
@repository = args[:repository] if args.key?(:repository)
|
4716
|
+
end
|
4717
|
+
end
|
4718
|
+
|
4687
4719
|
# Cloud Storage bucket containing Skaffold Config modules.
|
4688
4720
|
class SkaffoldGcsSource
|
4689
4721
|
include Google::Apis::Core::Hashable
|
@@ -4720,7 +4752,7 @@ module Google
|
|
4720
4752
|
# @return [String]
|
4721
4753
|
attr_accessor :path
|
4722
4754
|
|
4723
|
-
# Optional. Git
|
4755
|
+
# Optional. Git branch or tag to use when cloning the repository.
|
4724
4756
|
# Corresponds to the JSON property `ref`
|
4725
4757
|
# @return [String]
|
4726
4758
|
attr_accessor :ref
|
@@ -4756,6 +4788,11 @@ module Google
|
|
4756
4788
|
# @return [Google::Apis::ClouddeployV1::SkaffoldGitSource]
|
4757
4789
|
attr_accessor :git
|
4758
4790
|
|
4791
|
+
# Cloud Build V2 Repository containing Skaffold Configs.
|
4792
|
+
# Corresponds to the JSON property `googleCloudBuildRepo`
|
4793
|
+
# @return [Google::Apis::ClouddeployV1::SkaffoldGcbRepoSource]
|
4794
|
+
attr_accessor :google_cloud_build_repo
|
4795
|
+
|
4759
4796
|
# Cloud Storage bucket containing Skaffold Config modules.
|
4760
4797
|
# Corresponds to the JSON property `googleCloudStorage`
|
4761
4798
|
# @return [Google::Apis::ClouddeployV1::SkaffoldGcsSource]
|
@@ -4769,6 +4806,7 @@ module Google
|
|
4769
4806
|
def update!(**args)
|
4770
4807
|
@configs = args[:configs] if args.key?(:configs)
|
4771
4808
|
@git = args[:git] if args.key?(:git)
|
4809
|
+
@google_cloud_build_repo = args[:google_cloud_build_repo] if args.key?(:google_cloud_build_repo)
|
4772
4810
|
@google_cloud_storage = args[:google_cloud_storage] if args.key?(:google_cloud_storage)
|
4773
4811
|
end
|
4774
4812
|
end
|
@@ -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.44.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240428"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -754,6 +754,12 @@ module Google
|
|
754
754
|
include Google::Apis::Core::JsonObjectSupport
|
755
755
|
end
|
756
756
|
|
757
|
+
class SkaffoldGcbRepoSource
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
|
+
|
760
|
+
include Google::Apis::Core::JsonObjectSupport
|
761
|
+
end
|
762
|
+
|
757
763
|
class SkaffoldGcsSource
|
758
764
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
765
|
|
@@ -2144,6 +2150,15 @@ module Google
|
|
2144
2150
|
end
|
2145
2151
|
end
|
2146
2152
|
|
2153
|
+
class SkaffoldGcbRepoSource
|
2154
|
+
# @private
|
2155
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2156
|
+
property :path, as: 'path'
|
2157
|
+
property :ref, as: 'ref'
|
2158
|
+
property :repository, as: 'repository'
|
2159
|
+
end
|
2160
|
+
end
|
2161
|
+
|
2147
2162
|
class SkaffoldGcsSource
|
2148
2163
|
# @private
|
2149
2164
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2167,6 +2182,8 @@ module Google
|
|
2167
2182
|
collection :configs, as: 'configs'
|
2168
2183
|
property :git, as: 'git', class: Google::Apis::ClouddeployV1::SkaffoldGitSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGitSource::Representation
|
2169
2184
|
|
2185
|
+
property :google_cloud_build_repo, as: 'googleCloudBuildRepo', class: Google::Apis::ClouddeployV1::SkaffoldGcbRepoSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGcbRepoSource::Representation
|
2186
|
+
|
2170
2187
|
property :google_cloud_storage, as: 'googleCloudStorage', class: Google::Apis::ClouddeployV1::SkaffoldGcsSource, decorator: Google::Apis::ClouddeployV1::SkaffoldGcsSource::Representation
|
2171
2188
|
|
2172
2189
|
end
|
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.44.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-05-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.44.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: []
|