google-apis-cloudfunctions_v2alpha 0.28.0 → 0.30.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: d9a9c6069ce286d1b2106ed452715dba27c4903e7a4730b50856316fa1280216
|
4
|
+
data.tar.gz: f460afb945edd899ca2bef2c8f56ec467554f3c110e8fc8fa8eeb75b15d49adb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91d03ea9ab45a2594388ea09e022c95de3e9ffbca66198eeab692ce306fb26ca5ad642420a2e531515e676daa981cceab741402834983bd033c47fcf63322545
|
7
|
+
data.tar.gz: 78f6e034f1150ddd41c1cac4694fd589ed306d31a93974122b532e1985a27a44141d9e04088448d902710928e5fb5d72cd7b85aa05d6e31bdc13cf0d076e7c7d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2alpha
|
2
2
|
|
3
|
+
### v0.30.0 (2023-06-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230601
|
6
|
+
|
7
|
+
### v0.29.0 (2023-06-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230524
|
10
|
+
|
3
11
|
### v0.28.0 (2023-05-21)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230515
|
@@ -494,6 +494,11 @@ module Google
|
|
494
494
|
# @return [String]
|
495
495
|
attr_accessor :update_time
|
496
496
|
|
497
|
+
# Output only. The deployed url for the function.
|
498
|
+
# Corresponds to the JSON property `url`
|
499
|
+
# @return [String]
|
500
|
+
attr_accessor :url
|
501
|
+
|
497
502
|
def initialize(**args)
|
498
503
|
update!(**args)
|
499
504
|
end
|
@@ -511,6 +516,7 @@ module Google
|
|
511
516
|
@state = args[:state] if args.key?(:state)
|
512
517
|
@state_messages = args[:state_messages] if args.key?(:state_messages)
|
513
518
|
@update_time = args[:update_time] if args.key?(:update_time)
|
519
|
+
@url = args[:url] if args.key?(:url)
|
514
520
|
end
|
515
521
|
end
|
516
522
|
|
@@ -1920,6 +1926,12 @@ module Google
|
|
1920
1926
|
class Source
|
1921
1927
|
include Google::Apis::Core::Hashable
|
1922
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
|
+
|
1923
1935
|
# Location of the source in a Google Cloud Source Repository.
|
1924
1936
|
# Corresponds to the JSON property `repoSource`
|
1925
1937
|
# @return [Google::Apis::CloudfunctionsV2alpha::RepoSource]
|
@@ -1936,6 +1948,7 @@ module Google
|
|
1936
1948
|
|
1937
1949
|
# Update properties of this object
|
1938
1950
|
def update!(**args)
|
1951
|
+
@git_uri = args[:git_uri] if args.key?(:git_uri)
|
1939
1952
|
@repo_source = args[:repo_source] if args.key?(:repo_source)
|
1940
1953
|
@storage_source = args[:storage_source] if args.key?(:storage_source)
|
1941
1954
|
end
|
@@ -1946,6 +1959,11 @@ module Google
|
|
1946
1959
|
class SourceProvenance
|
1947
1960
|
include Google::Apis::Core::Hashable
|
1948
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
|
+
|
1949
1967
|
# Location of the source in a Google Cloud Source Repository.
|
1950
1968
|
# Corresponds to the JSON property `resolvedRepoSource`
|
1951
1969
|
# @return [Google::Apis::CloudfunctionsV2alpha::RepoSource]
|
@@ -1962,6 +1980,7 @@ module Google
|
|
1962
1980
|
|
1963
1981
|
# Update properties of this object
|
1964
1982
|
def update!(**args)
|
1983
|
+
@git_uri = args[:git_uri] if args.key?(:git_uri)
|
1965
1984
|
@resolved_repo_source = args[:resolved_repo_source] if args.key?(:resolved_repo_source)
|
1966
1985
|
@resolved_storage_source = args[:resolved_storage_source] if args.key?(:resolved_storage_source)
|
1967
1986
|
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.
|
19
|
+
GEM_VERSION = "0.30.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 = "
|
25
|
+
REVISION = "20230601"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -388,6 +388,7 @@ module Google
|
|
388
388
|
collection :state_messages, as: 'stateMessages', class: Google::Apis::CloudfunctionsV2alpha::GoogleCloudFunctionsV2alphaStateMessage, decorator: Google::Apis::CloudfunctionsV2alpha::GoogleCloudFunctionsV2alphaStateMessage::Representation
|
389
389
|
|
390
390
|
property :update_time, as: 'updateTime'
|
391
|
+
property :url, as: 'url'
|
391
392
|
end
|
392
393
|
end
|
393
394
|
|
@@ -731,6 +732,7 @@ module Google
|
|
731
732
|
class Source
|
732
733
|
# @private
|
733
734
|
class Representation < Google::Apis::Core::JsonRepresentation
|
735
|
+
property :git_uri, as: 'gitUri'
|
734
736
|
property :repo_source, as: 'repoSource', class: Google::Apis::CloudfunctionsV2alpha::RepoSource, decorator: Google::Apis::CloudfunctionsV2alpha::RepoSource::Representation
|
735
737
|
|
736
738
|
property :storage_source, as: 'storageSource', class: Google::Apis::CloudfunctionsV2alpha::StorageSource, decorator: Google::Apis::CloudfunctionsV2alpha::StorageSource::Representation
|
@@ -741,6 +743,7 @@ module Google
|
|
741
743
|
class SourceProvenance
|
742
744
|
# @private
|
743
745
|
class Representation < Google::Apis::Core::JsonRepresentation
|
746
|
+
property :git_uri, as: 'gitUri'
|
744
747
|
property :resolved_repo_source, as: 'resolvedRepoSource', class: Google::Apis::CloudfunctionsV2alpha::RepoSource, decorator: Google::Apis::CloudfunctionsV2alpha::RepoSource::Representation
|
745
748
|
|
746
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.
|
4
|
+
version: 0.30.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-
|
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_v2alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudfunctions_v2alpha/v0.30.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: []
|