google-cloud-run-v2 0.19.0 → 0.21.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 +4 -4
- data/README.md +31 -21
- data/lib/google/cloud/run/v2/builds/client.rb +39 -2
- data/lib/google/cloud/run/v2/builds/rest/client.rb +39 -2
- data/lib/google/cloud/run/v2/builds/rest/service_stub.rb +22 -8
- data/lib/google/cloud/run/v2/executions/client.rb +38 -5
- data/lib/google/cloud/run/v2/executions/operations.rb +16 -5
- data/lib/google/cloud/run/v2/executions/rest/client.rb +38 -5
- data/lib/google/cloud/run/v2/executions/rest/operations.rb +56 -35
- data/lib/google/cloud/run/v2/executions/rest/service_stub.rb +46 -26
- data/lib/google/cloud/run/v2/jobs/client.rb +40 -10
- data/lib/google/cloud/run/v2/jobs/operations.rb +16 -5
- data/lib/google/cloud/run/v2/jobs/rest/client.rb +40 -10
- data/lib/google/cloud/run/v2/jobs/rest/operations.rb +56 -35
- data/lib/google/cloud/run/v2/jobs/rest/service_stub.rb +86 -56
- data/lib/google/cloud/run/v2/revisions/client.rb +37 -4
- data/lib/google/cloud/run/v2/revisions/operations.rb +16 -5
- data/lib/google/cloud/run/v2/revisions/rest/client.rb +37 -4
- data/lib/google/cloud/run/v2/revisions/rest/operations.rb +56 -35
- data/lib/google/cloud/run/v2/revisions/rest/service_stub.rb +38 -20
- data/lib/google/cloud/run/v2/services/client.rb +39 -9
- data/lib/google/cloud/run/v2/services/operations.rb +16 -5
- data/lib/google/cloud/run/v2/services/rest/client.rb +39 -9
- data/lib/google/cloud/run/v2/services/rest/operations.rb +56 -35
- data/lib/google/cloud/run/v2/services/rest/service_stub.rb +78 -50
- data/lib/google/cloud/run/v2/tasks/client.rb +36 -3
- data/lib/google/cloud/run/v2/tasks/rest/client.rb +36 -3
- data/lib/google/cloud/run/v2/tasks/rest/service_stub.rb +30 -14
- data/lib/google/cloud/run/v2/version.rb +1 -1
- data/proto_docs/google/api/client.rb +19 -0
- data/proto_docs/google/cloud/run/v2/build.rb +4 -0
- data/proto_docs/google/cloud/run/v2/condition.rb +6 -0
- data/proto_docs/google/cloud/run/v2/job.rb +4 -0
- data/proto_docs/google/cloud/run/v2/k8s.min.rb +20 -0
- data/proto_docs/google/cloud/run/v2/vendor_settings.rb +4 -0
- data/proto_docs/google/longrunning/operations.rb +4 -0
- metadata +6 -9
@@ -83,10 +83,14 @@ module Google
|
|
83
83
|
# @return [::Boolean]
|
84
84
|
# Optional. If True, indicates to use the default project's binary
|
85
85
|
# authorization policy. If False, binary authorization will be disabled.
|
86
|
+
#
|
87
|
+
# Note: The following fields are mutually exclusive: `use_default`, `policy`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
86
88
|
# @!attribute [rw] policy
|
87
89
|
# @return [::String]
|
88
90
|
# Optional. The path to a binary authorization policy.
|
89
91
|
# Format: `projects/{project}/platforms/cloudRun/{policy-name}`
|
92
|
+
#
|
93
|
+
# Note: The following fields are mutually exclusive: `policy`, `use_default`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
90
94
|
# @!attribute [rw] breakglass_justification
|
91
95
|
# @return [::String]
|
92
96
|
# Optional. If present, indicates to use Breakglass using this justification.
|
@@ -40,6 +40,8 @@ module Google
|
|
40
40
|
# @!attribute [rw] error
|
41
41
|
# @return [::Google::Rpc::Status]
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
|
+
#
|
44
|
+
# Note: The following fields are mutually exclusive: `error`, `response`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
43
45
|
# @!attribute [rw] response
|
44
46
|
# @return [::Google::Protobuf::Any]
|
45
47
|
# The normal, successful response of the operation. If the original
|
@@ -50,6 +52,8 @@ module Google
|
|
50
52
|
# is the original method name. For example, if the original method name
|
51
53
|
# is `TakeSnapshot()`, the inferred response type is
|
52
54
|
# `TakeSnapshotResponse`.
|
55
|
+
#
|
56
|
+
# Note: The following fields are mutually exclusive: `response`, `error`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
53
57
|
class Operation
|
54
58
|
include ::Google::Protobuf::MessageExts
|
55
59
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-run-v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.21.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: gapic-common
|
@@ -16,7 +15,7 @@ dependencies:
|
|
16
15
|
requirements:
|
17
16
|
- - ">="
|
18
17
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
18
|
+
version: 0.25.0
|
20
19
|
- - "<"
|
21
20
|
- !ruby/object:Gem::Version
|
22
21
|
version: 2.a
|
@@ -26,7 +25,7 @@ dependencies:
|
|
26
25
|
requirements:
|
27
26
|
- - ">="
|
28
27
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
28
|
+
version: 0.25.0
|
30
29
|
- - "<"
|
31
30
|
- !ruby/object:Gem::Version
|
32
31
|
version: 2.a
|
@@ -200,7 +199,6 @@ homepage: https://github.com/googleapis/google-cloud-ruby
|
|
200
199
|
licenses:
|
201
200
|
- Apache-2.0
|
202
201
|
metadata: {}
|
203
|
-
post_install_message:
|
204
202
|
rdoc_options: []
|
205
203
|
require_paths:
|
206
204
|
- lib
|
@@ -208,15 +206,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
208
206
|
requirements:
|
209
207
|
- - ">="
|
210
208
|
- !ruby/object:Gem::Version
|
211
|
-
version: '
|
209
|
+
version: '3.0'
|
212
210
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
213
211
|
requirements:
|
214
212
|
- - ">="
|
215
213
|
- !ruby/object:Gem::Version
|
216
214
|
version: '0'
|
217
215
|
requirements: []
|
218
|
-
rubygems_version: 3.
|
219
|
-
signing_key:
|
216
|
+
rubygems_version: 3.6.2
|
220
217
|
specification_version: 4
|
221
218
|
summary: Deploy and manage user provided container images that scale automatically
|
222
219
|
based on incoming requests. The Cloud Run Admin API v1 follows the Knative Serving
|