google-apis-cloudfunctions_v2alpha 0.45.0 → 0.47.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ecaec347314ee0dff479f90240c126e131640061b504109313b6f05726d67ad
|
4
|
+
data.tar.gz: 7140201fbb833e7a94d68d8b6e3aa611cf8e146018308cacdd9c7986d4b1cd1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5d8129d0407fa871546ba3e28db65aa6550e7881d8d2b1d0932407108e9ce1e70758ef5f90a3ad5b3f1806d9f4d158268799531f4a5ade1e2cbbc3a78933ab24
|
7
|
+
data.tar.gz: 05bd8c2842d962419378591f4023a65253607791d88f426d89b6b827aed7adc666904af555b58bcd5a684b5895319a089d58c0f55aff0058ace72b651a51847e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-cloudfunctions_v2alpha
|
2
2
|
|
3
|
+
### v0.47.0 (2024-06-02)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240523
|
6
|
+
|
7
|
+
### v0.46.0 (2024-05-19)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.15.0
|
10
|
+
|
3
11
|
### v0.45.0 (2024-03-17)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240307
|
@@ -2022,6 +2022,12 @@ module Google
|
|
2022
2022
|
# @return [String]
|
2023
2023
|
attr_accessor :available_memory
|
2024
2024
|
|
2025
|
+
# Optional. The binary authorization policy to be checked when deploying the
|
2026
|
+
# Cloud Run service.
|
2027
|
+
# Corresponds to the JSON property `binaryAuthorizationPolicy`
|
2028
|
+
# @return [String]
|
2029
|
+
attr_accessor :binary_authorization_policy
|
2030
|
+
|
2025
2031
|
# Environment variables that shall be available during function execution.
|
2026
2032
|
# Corresponds to the JSON property `environmentVariables`
|
2027
2033
|
# @return [Hash<String,String>]
|
@@ -2128,6 +2134,7 @@ module Google
|
|
2128
2134
|
@all_traffic_on_latest_revision = args[:all_traffic_on_latest_revision] if args.key?(:all_traffic_on_latest_revision)
|
2129
2135
|
@available_cpu = args[:available_cpu] if args.key?(:available_cpu)
|
2130
2136
|
@available_memory = args[:available_memory] if args.key?(:available_memory)
|
2137
|
+
@binary_authorization_policy = args[:binary_authorization_policy] if args.key?(:binary_authorization_policy)
|
2131
2138
|
@environment_variables = args[:environment_variables] if args.key?(:environment_variables)
|
2132
2139
|
@ingress_settings = args[:ingress_settings] if args.key?(:ingress_settings)
|
2133
2140
|
@max_instance_count = args[:max_instance_count] if args.key?(:max_instance_count)
|
@@ -2338,6 +2345,12 @@ module Google
|
|
2338
2345
|
# @return [String]
|
2339
2346
|
attr_accessor :object
|
2340
2347
|
|
2348
|
+
# When the specified storage bucket is a 1st gen function uploard url bucket,
|
2349
|
+
# this field should be set as the generated upload url for 1st gen deployment.
|
2350
|
+
# Corresponds to the JSON property `sourceUploadUrl`
|
2351
|
+
# @return [String]
|
2352
|
+
attr_accessor :source_upload_url
|
2353
|
+
|
2341
2354
|
def initialize(**args)
|
2342
2355
|
update!(**args)
|
2343
2356
|
end
|
@@ -2347,6 +2360,7 @@ module Google
|
|
2347
2360
|
@bucket = args[:bucket] if args.key?(:bucket)
|
2348
2361
|
@generation = args[:generation] if args.key?(:generation)
|
2349
2362
|
@object = args[:object] if args.key?(:object)
|
2363
|
+
@source_upload_url = args[:source_upload_url] if args.key?(:source_upload_url)
|
2350
2364
|
end
|
2351
2365
|
end
|
2352
2366
|
|
@@ -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.47.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240523"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -821,6 +821,7 @@ module Google
|
|
821
821
|
property :all_traffic_on_latest_revision, as: 'allTrafficOnLatestRevision'
|
822
822
|
property :available_cpu, as: 'availableCpu'
|
823
823
|
property :available_memory, as: 'availableMemory'
|
824
|
+
property :binary_authorization_policy, as: 'binaryAuthorizationPolicy'
|
824
825
|
hash :environment_variables, as: 'environmentVariables'
|
825
826
|
property :ingress_settings, as: 'ingressSettings'
|
826
827
|
property :max_instance_count, as: 'maxInstanceCount'
|
@@ -893,6 +894,7 @@ module Google
|
|
893
894
|
property :bucket, as: 'bucket'
|
894
895
|
property :generation, :numeric_string => true, as: 'generation'
|
895
896
|
property :object, as: 'object'
|
897
|
+
property :source_upload_url, as: 'sourceUploadUrl'
|
896
898
|
end
|
897
899
|
end
|
898
900
|
|
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.47.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-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.15.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.15.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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.47.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: []
|