google-apis-clouddeploy_v1 0.42.0 → 0.43.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: 326924c088fbe6094de1b2edcb3280ff39447c5cd5976dd1380f8d2b1581d8e0
4
- data.tar.gz: 33704b10e9ca7f2c149d5c3e41bdfdc472e526c70f012bef13b6f99291edd3c6
3
+ metadata.gz: 4e1cd995f595f7c3e07fa5acd2c53a1ac465e4075d3454bdae026aa5f06d3c55
4
+ data.tar.gz: 050be6133cde0d4df831a0280cd2da6fc68e581566d27c9b6d4b37d2f1a2458c
5
5
  SHA512:
6
- metadata.gz: c1ae47c95e45afb92bde8eeabf0453e618c2fb5e5511d92fc46a37b61d3bcbda385e448f077c879a64c85b10a5ec4821be2e030afb50c460eaffca3af331644e
7
- data.tar.gz: 303a2f2bcbeaaf361a12c24f96b9e1dac7f7be22e33d4e23befefb71833584b8e8abeb9ea62562dc7cf93bf478d7d500cc759b1dcb6f772f485e29b6708d4eb2
6
+ metadata.gz: 7172ad73215ce057aa48d8173504dacacf59344aeaeec5b42e544f672be5756a23bcf87d10e30030a97431a93a0ae4330bb2ccc165121fc63c94583bec265caa
7
+ data.tar.gz: 978ccae627cec150789b0567e0e61c324dbfc3089886f0fe83e43efc48bf1ac0df399c1e6337f5c3c2c6cb0466fa041cb687cb80fe2c26767203aacc1d9fa32a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-clouddeploy_v1
2
2
 
3
+ ### v0.43.0 (2024-04-28)
4
+
5
+ * Regenerated from discovery document revision 20240417
6
+
3
7
  ### v0.42.0 (2024-03-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20240221
@@ -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 ref the package should be cloned from.
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.42.0"
19
+ GEM_VERSION = "0.43.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 = "20240221"
25
+ REVISION = "20240417"
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.42.0
4
+ version: 0.43.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-03-03 00:00:00.000000000 Z
11
+ date: 2024-04-28 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.42.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-clouddeploy_v1/v0.43.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: []