google-apis-run_v2 0.44.0 → 0.45.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/CHANGELOG.md +4 -0
- data/lib/google/apis/run_v2/classes.rb +11 -14
- data/lib/google/apis/run_v2/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 57de418f6672504aff717ce59385ff633f45ca34a6a8587282a36cc7e28af28a
|
|
4
|
+
data.tar.gz: 58321f7679503b2ccebaa5a06f4d52dba5cb393c16995a753f7854119e9a3d1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 88c4742431a314c60ed26e49707d3fe08e51799b9977ad89ecf61463d6cfbcbff772ec7b9a1909560b4f3fc19471a67fbf852a55e953c5ae245b6e3ae3743c66
|
|
7
|
+
data.tar.gz: e7d71073d10db8deb62584c937477388f5e4e06c80635d827e19dbc9d58505f05ad617eb06b0d21e6af835e78b3f9d5aca8a01636539c2c4fe691a24855b55ac
|
data/CHANGELOG.md
CHANGED
|
@@ -158,7 +158,7 @@ module Google
|
|
|
158
158
|
# @return [Array<String>]
|
|
159
159
|
attr_accessor :command
|
|
160
160
|
|
|
161
|
-
#
|
|
161
|
+
# Names of the containers that must start before this container.
|
|
162
162
|
# Corresponds to the JSON property `dependsOn`
|
|
163
163
|
# @return [Array<String>]
|
|
164
164
|
attr_accessor :depends_on
|
|
@@ -265,10 +265,9 @@ module Google
|
|
|
265
265
|
end
|
|
266
266
|
end
|
|
267
267
|
|
|
268
|
-
#
|
|
269
|
-
#
|
|
270
|
-
#
|
|
271
|
-
# destroyed with it (it does not persist across sandbox runs).
|
|
268
|
+
# In memory (tmpfs) ephemeral storage. It is ephemeral in the sense that when
|
|
269
|
+
# the sandbox is taken down, the data is destroyed with it (it does not persist
|
|
270
|
+
# across sandbox runs).
|
|
272
271
|
class GoogleCloudRunV2EmptyDirVolumeSource
|
|
273
272
|
include Google::Apis::Core::Hashable
|
|
274
273
|
|
|
@@ -282,11 +281,10 @@ module Google
|
|
|
282
281
|
# Limit on the storage usable by this EmptyDir volume. The size limit is also
|
|
283
282
|
# applicable for memory medium. The maximum usage on memory medium EmptyDir
|
|
284
283
|
# would be the minimum value between the SizeLimit specified here and the sum of
|
|
285
|
-
# memory limits of all containers
|
|
286
|
-
#
|
|
287
|
-
#
|
|
288
|
-
#
|
|
289
|
-
# emptydir
|
|
284
|
+
# memory limits of all containers. The default is nil which means that the limit
|
|
285
|
+
# is undefined. More info: https://cloud.google.com/run/docs/configuring/in-
|
|
286
|
+
# memory-volumes#configure-volume. Info in Kubernetes: https://kubernetes.io/
|
|
287
|
+
# docs/concepts/storage/volumes/#emptydir
|
|
290
288
|
# Corresponds to the JSON property `sizeLimit`
|
|
291
289
|
# @return [String]
|
|
292
290
|
attr_accessor :size_limit
|
|
@@ -2421,10 +2419,9 @@ module Google
|
|
|
2421
2419
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2CloudSqlInstance]
|
|
2422
2420
|
attr_accessor :cloud_sql_instance
|
|
2423
2421
|
|
|
2424
|
-
#
|
|
2425
|
-
#
|
|
2426
|
-
#
|
|
2427
|
-
# destroyed with it (it does not persist across sandbox runs).
|
|
2422
|
+
# In memory (tmpfs) ephemeral storage. It is ephemeral in the sense that when
|
|
2423
|
+
# the sandbox is taken down, the data is destroyed with it (it does not persist
|
|
2424
|
+
# across sandbox runs).
|
|
2428
2425
|
# Corresponds to the JSON property `emptyDir`
|
|
2429
2426
|
# @return [Google::Apis::RunV2::GoogleCloudRunV2EmptyDirVolumeSource]
|
|
2430
2427
|
attr_accessor :empty_dir
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RunV2
|
|
18
18
|
# Version of the google-apis-run_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.45.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 = "20230730"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-run_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.45.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-08-06 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-run_v2/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v2/v0.45.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v2
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|