google-apis-cloudfunctions_v2beta 0.26.0 → 0.27.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: 24ae54b4c1354c64fa4b22700cca7a2171a46fb831fbce1af5f45215dd45670d
4
- data.tar.gz: c8bd8008b1d8c947917cc1756979a7aba32d32514da15a3563fd8e816825e1c6
3
+ metadata.gz: 8479140a4aaa1bf6f715e07382dc273a4aef371696932de1e5ad0d513507f04b
4
+ data.tar.gz: 7fd863df43ba71f047b3d83ab46685a5100b15fa075ee154de2735082e2a27cb
5
5
  SHA512:
6
- metadata.gz: 33e93b92de2e7acd7be922cdd9f1bc9f78df74a05bff9ca574648961975b0795f409056dbecab889ae1b6f8bda7ed294357a324c7aeda3686dc2c8b29ea0cccf
7
- data.tar.gz: e64724a09e15c4ebeed56452fe43acafdac0ea5eed7b30485743471d06b18317ca5ff4d6e4edb8d40f64924a8b86d204e9b3a82c64a0ba33ea2b24f4eb0b57b4
6
+ metadata.gz: 4db9961a6d9c54d910d15e105ace8c174d9a257057945e781877fe268267da794e7bdea6b378f0ae4ebbff9b6d790b1858c8be2f0d7d11d71e8f28a8bcc2cf51
7
+ data.tar.gz: f193f60da9a50f48c7409cb37748de1da62bf8f91cc23200a189feb2cd25b32388721f13907b7035dfe9724cebcc7173aad0a16b11f5b7f1bcdfb6bac0ecfbe4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-cloudfunctions_v2beta
2
2
 
3
+ ### v0.27.0 (2023-06-11)
4
+
5
+ * Regenerated from discovery document revision 20230601
6
+
3
7
  ### v0.26.0 (2023-06-04)
4
8
 
5
9
  * Regenerated from discovery document revision 20230524
@@ -1926,6 +1926,12 @@ module Google
1926
1926
  class Source
1927
1927
  include Google::Apis::Core::Hashable
1928
1928
 
1929
+ # If provided, get the source from GitHub repository. This option is valid only
1930
+ # for GCF 1st Gen function. Example: https://github.com///blob//
1931
+ # Corresponds to the JSON property `gitUri`
1932
+ # @return [String]
1933
+ attr_accessor :git_uri
1934
+
1929
1935
  # Location of the source in a Google Cloud Source Repository.
1930
1936
  # Corresponds to the JSON property `repoSource`
1931
1937
  # @return [Google::Apis::CloudfunctionsV2beta::RepoSource]
@@ -1942,6 +1948,7 @@ module Google
1942
1948
 
1943
1949
  # Update properties of this object
1944
1950
  def update!(**args)
1951
+ @git_uri = args[:git_uri] if args.key?(:git_uri)
1945
1952
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1946
1953
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1947
1954
  end
@@ -1952,6 +1959,11 @@ module Google
1952
1959
  class SourceProvenance
1953
1960
  include Google::Apis::Core::Hashable
1954
1961
 
1962
+ # A copy of the build's `source.git_uri`, if exists, with any commits resolved.
1963
+ # Corresponds to the JSON property `gitUri`
1964
+ # @return [String]
1965
+ attr_accessor :git_uri
1966
+
1955
1967
  # Location of the source in a Google Cloud Source Repository.
1956
1968
  # Corresponds to the JSON property `resolvedRepoSource`
1957
1969
  # @return [Google::Apis::CloudfunctionsV2beta::RepoSource]
@@ -1968,6 +1980,7 @@ module Google
1968
1980
 
1969
1981
  # Update properties of this object
1970
1982
  def update!(**args)
1983
+ @git_uri = args[:git_uri] if args.key?(:git_uri)
1971
1984
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1972
1985
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1973
1986
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudfunctionsV2beta
18
18
  # Version of the google-apis-cloudfunctions_v2beta gem
19
- GEM_VERSION = "0.26.0"
19
+ GEM_VERSION = "0.27.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 = "20230524"
25
+ REVISION = "20230601"
26
26
  end
27
27
  end
28
28
  end
@@ -732,6 +732,7 @@ module Google
732
732
  class Source
733
733
  # @private
734
734
  class Representation < Google::Apis::Core::JsonRepresentation
735
+ property :git_uri, as: 'gitUri'
735
736
  property :repo_source, as: 'repoSource', class: Google::Apis::CloudfunctionsV2beta::RepoSource, decorator: Google::Apis::CloudfunctionsV2beta::RepoSource::Representation
736
737
 
737
738
  property :storage_source, as: 'storageSource', class: Google::Apis::CloudfunctionsV2beta::StorageSource, decorator: Google::Apis::CloudfunctionsV2beta::StorageSource::Representation
@@ -742,6 +743,7 @@ module Google
742
743
  class SourceProvenance
743
744
  # @private
744
745
  class Representation < Google::Apis::Core::JsonRepresentation
746
+ property :git_uri, as: 'gitUri'
745
747
  property :resolved_repo_source, as: 'resolvedRepoSource', class: Google::Apis::CloudfunctionsV2beta::RepoSource, decorator: Google::Apis::CloudfunctionsV2beta::RepoSource::Representation
746
748
 
747
749
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudfunctionsV2beta::StorageSource, decorator: Google::Apis::CloudfunctionsV2beta::StorageSource::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudfunctions_v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.0
4
+ version: 0.27.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-06-04 00:00:00.000000000 Z
11
+ date: 2023-06-11 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-cloudfunctions_v2beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2beta/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2beta
63
63
  post_install_message:
64
64
  rdoc_options: []