google-apis-cloudfunctions_v2alpha 0.29.0 → 0.31.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: 5a6e8bbbc9544f87ada202d923088512089d61148f947833331152fefb152965
4
- data.tar.gz: bbd1271341912029ea093a28e83a8727b43126ebd736de67209ec590297589b0
3
+ metadata.gz: 114ad12ed9a5e092c6623cf8d72493d131c0f20ef32fea5a09ffa7593e165ae7
4
+ data.tar.gz: 6c311c1bc54d0b6140a082eaa8ba6c4c6cfbeccab1d84e23e70d1928db84acba
5
5
  SHA512:
6
- metadata.gz: f5b17841f853a531cb7c62b602daea89f2364aebbb3187a84c73b659267f627cf12c0816cf27de3dc8555e37d899f0806581fd67efc6f66702ad5a6c9b9744a9
7
- data.tar.gz: 618246a226ae319574ca7e726bf9b9f5ac1ae6c1bfcc0b2bea85124c2340ef97bf1a8caa3578ece8dcb4a75104c100563eab1079b25f24b69e4b155470d2d1d2
6
+ metadata.gz: d0c26f83a157dfe5d2db78c5a3924f4881d8cedd3972f041e1dc93b5a39c5314881c6ad03dc6e0adb2eae39182488d4c152bb55e68ef9f20fed291f28234b270
7
+ data.tar.gz: 21a8bdefc6153ea47b5ad93e4d8b42d0610e85dc4c047bb18ba0c4c8d33237e67a13221c037d2000479bb48234b4e2b829fab59e83354debc43ac26de6bd1895
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-cloudfunctions_v2alpha
2
2
 
3
+ ### v0.31.0 (2023-06-18)
4
+
5
+ * Regenerated from discovery document revision 20230608
6
+
7
+ ### v0.30.0 (2023-06-11)
8
+
9
+ * Regenerated from discovery document revision 20230601
10
+
3
11
  ### v0.29.0 (2023-06-04)
4
12
 
5
13
  * Regenerated from discovery document revision 20230524
@@ -638,8 +638,9 @@ module Google
638
638
  attr_accessor :api_version
639
639
 
640
640
  # Identifies whether the user has requested cancellation of the operation.
641
- # Operations that have successfully been cancelled have Operation.error value
642
- # with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
641
+ # Operations that have successfully been cancelled have google.longrunning.
642
+ # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
643
+ # Code.CANCELLED`.
643
644
  # Corresponds to the JSON property `cancelRequested`
644
645
  # @return [Boolean]
645
646
  attr_accessor :cancel_requested
@@ -807,8 +808,9 @@ module Google
807
808
  attr_accessor :api_version
808
809
 
809
810
  # Identifies whether the user has requested cancellation of the operation.
810
- # Operations that have successfully been cancelled have Operation.error value
811
- # with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
811
+ # Operations that have successfully been cancelled have google.longrunning.
812
+ # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
813
+ # Code.CANCELLED`.
812
814
  # Corresponds to the JSON property `cancelRequested`
813
815
  # @return [Boolean]
814
816
  attr_accessor :cancel_requested
@@ -976,8 +978,9 @@ module Google
976
978
  attr_accessor :api_version
977
979
 
978
980
  # Identifies whether the user has requested cancellation of the operation.
979
- # Operations that have successfully been cancelled have Operation.error value
980
- # with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
981
+ # Operations that have successfully been cancelled have google.longrunning.
982
+ # Operation.error value with a google.rpc.Status.code of 1, corresponding to `
983
+ # Code.CANCELLED`.
981
984
  # Corresponds to the JSON property `cancelRequested`
982
985
  # @return [Boolean]
983
986
  attr_accessor :cancel_requested
@@ -1926,6 +1929,12 @@ module Google
1926
1929
  class Source
1927
1930
  include Google::Apis::Core::Hashable
1928
1931
 
1932
+ # If provided, get the source from GitHub repository. This option is valid only
1933
+ # for GCF 1st Gen function. Example: https://github.com///blob//
1934
+ # Corresponds to the JSON property `gitUri`
1935
+ # @return [String]
1936
+ attr_accessor :git_uri
1937
+
1929
1938
  # Location of the source in a Google Cloud Source Repository.
1930
1939
  # Corresponds to the JSON property `repoSource`
1931
1940
  # @return [Google::Apis::CloudfunctionsV2alpha::RepoSource]
@@ -1942,6 +1951,7 @@ module Google
1942
1951
 
1943
1952
  # Update properties of this object
1944
1953
  def update!(**args)
1954
+ @git_uri = args[:git_uri] if args.key?(:git_uri)
1945
1955
  @repo_source = args[:repo_source] if args.key?(:repo_source)
1946
1956
  @storage_source = args[:storage_source] if args.key?(:storage_source)
1947
1957
  end
@@ -1952,6 +1962,11 @@ module Google
1952
1962
  class SourceProvenance
1953
1963
  include Google::Apis::Core::Hashable
1954
1964
 
1965
+ # A copy of the build's `source.git_uri`, if exists, with any commits resolved.
1966
+ # Corresponds to the JSON property `gitUri`
1967
+ # @return [String]
1968
+ attr_accessor :git_uri
1969
+
1955
1970
  # Location of the source in a Google Cloud Source Repository.
1956
1971
  # Corresponds to the JSON property `resolvedRepoSource`
1957
1972
  # @return [Google::Apis::CloudfunctionsV2alpha::RepoSource]
@@ -1968,6 +1983,7 @@ module Google
1968
1983
 
1969
1984
  # Update properties of this object
1970
1985
  def update!(**args)
1986
+ @git_uri = args[:git_uri] if args.key?(:git_uri)
1971
1987
  @resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
1972
1988
  @resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
1973
1989
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudfunctionsV2alpha
18
18
  # Version of the google-apis-cloudfunctions_v2alpha gem
19
- GEM_VERSION = "0.29.0"
19
+ GEM_VERSION = "0.31.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 = "20230608"
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::CloudfunctionsV2alpha::RepoSource, decorator: Google::Apis::CloudfunctionsV2alpha::RepoSource::Representation
736
737
 
737
738
  property :storage_source, as: 'storageSource', class: Google::Apis::CloudfunctionsV2alpha::StorageSource, decorator: Google::Apis::CloudfunctionsV2alpha::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::CloudfunctionsV2alpha::RepoSource, decorator: Google::Apis::CloudfunctionsV2alpha::RepoSource::Representation
746
748
 
747
749
  property :resolved_storage_source, as: 'resolvedStorageSource', class: Google::Apis::CloudfunctionsV2alpha::StorageSource, decorator: Google::Apis::CloudfunctionsV2alpha::StorageSource::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudfunctions_v2alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.31.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-18 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_v2alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.31.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudfunctions_v2alpha
63
63
  post_install_message:
64
64
  rdoc_options: []