google-apis-run_v1 0.57.0 → 0.58.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_v1/classes.rb +17 -18
- data/lib/google/apis/run_v1/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: fb3b3b589373cea9bcd58eed93a57aa5faf6a5408f1b950e7230529813953c17
|
|
4
|
+
data.tar.gz: ac0f1c0d2516b8b4d27ba56714ec3163fdb6a6105430188c55a00aaafcc8128f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c5f7740c09865551e1cb3052ab572dd1ae240b7eddcf399b949a29d245562a9824788426da9c0dfa19266c7cfd233a5828c1811a2522203a4045de936a25c2be
|
|
7
|
+
data.tar.gz: d046ae485fcad9e8face2c2f7aa3acb447880c8d011d976b1dfdca33c919a3e9ebb362937c68fceeeefc69cd00353192af39b159050626f5edf4242111454406
|
data/CHANGELOG.md
CHANGED
|
@@ -628,20 +628,22 @@ module Google
|
|
|
628
628
|
class ContainerOverride
|
|
629
629
|
include Google::Apis::Core::Hashable
|
|
630
630
|
|
|
631
|
-
# Arguments to the entrypoint.
|
|
632
|
-
#
|
|
631
|
+
# Arguments to the entrypoint. The specified arguments replace and override any
|
|
632
|
+
# existing entrypoint arguments. Must be empty if `clear_args` is set to true.
|
|
633
633
|
# Corresponds to the JSON property `args`
|
|
634
634
|
# @return [Array<String>]
|
|
635
635
|
attr_accessor :args
|
|
636
636
|
|
|
637
|
-
# Optional.
|
|
637
|
+
# Optional. Set to True to clear all existing arguments.
|
|
638
638
|
# Corresponds to the JSON property `clearArgs`
|
|
639
639
|
# @return [Boolean]
|
|
640
640
|
attr_accessor :clear_args
|
|
641
641
|
alias_method :clear_args?, :clear_args
|
|
642
642
|
|
|
643
|
-
# List of environment variables to set in the container.
|
|
644
|
-
# existing
|
|
643
|
+
# List of environment variables to set in the container. All specified
|
|
644
|
+
# environment variables are merged with existing environment variables. When the
|
|
645
|
+
# specified environment variables exist, these values override any existing
|
|
646
|
+
# values.
|
|
645
647
|
# Corresponds to the JSON property `env`
|
|
646
648
|
# @return [Array<Google::Apis::RunV1::EnvVar>]
|
|
647
649
|
attr_accessor :env
|
|
@@ -828,10 +830,9 @@ module Google
|
|
|
828
830
|
end
|
|
829
831
|
end
|
|
830
832
|
|
|
831
|
-
#
|
|
832
|
-
#
|
|
833
|
-
#
|
|
834
|
-
# destroyed with it (it does not persist across sandbox runs).
|
|
833
|
+
# In memory (tmpfs) ephemeral storage. It is ephemeral in the sense that when
|
|
834
|
+
# the sandbox is taken down, the data is destroyed with it (it does not persist
|
|
835
|
+
# across sandbox runs).
|
|
835
836
|
class EmptyDirVolumeSource
|
|
836
837
|
include Google::Apis::Core::Hashable
|
|
837
838
|
|
|
@@ -845,11 +846,10 @@ module Google
|
|
|
845
846
|
# Limit on the storage usable by this EmptyDir volume. The size limit is also
|
|
846
847
|
# applicable for memory medium. The maximum usage on memory medium EmptyDir
|
|
847
848
|
# would be the minimum value between the SizeLimit specified here and the sum of
|
|
848
|
-
# memory limits of all containers
|
|
849
|
-
#
|
|
850
|
-
#
|
|
851
|
-
#
|
|
852
|
-
# emptydir
|
|
849
|
+
# memory limits of all containers. The default is nil which means that the limit
|
|
850
|
+
# is undefined. More info: https://cloud.google.com/run/docs/configuring/in-
|
|
851
|
+
# memory-volumes#configure-volume. Info in Kubernetes: https://kubernetes.io/
|
|
852
|
+
# docs/concepts/storage/volumes/#emptydir
|
|
853
853
|
# Corresponds to the JSON property `sizeLimit`
|
|
854
854
|
# @return [String]
|
|
855
855
|
attr_accessor :size_limit
|
|
@@ -3805,10 +3805,9 @@ module Google
|
|
|
3805
3805
|
# @return [Google::Apis::RunV1::ConfigMapVolumeSource]
|
|
3806
3806
|
attr_accessor :config_map
|
|
3807
3807
|
|
|
3808
|
-
#
|
|
3809
|
-
#
|
|
3810
|
-
#
|
|
3811
|
-
# destroyed with it (it does not persist across sandbox runs).
|
|
3808
|
+
# In memory (tmpfs) ephemeral storage. It is ephemeral in the sense that when
|
|
3809
|
+
# the sandbox is taken down, the data is destroyed with it (it does not persist
|
|
3810
|
+
# across sandbox runs).
|
|
3812
3811
|
# Corresponds to the JSON property `emptyDir`
|
|
3813
3812
|
# @return [Google::Apis::RunV1::EmptyDirVolumeSource]
|
|
3814
3813
|
attr_accessor :empty_dir
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module RunV1
|
|
18
18
|
# Version of the google-apis-run_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.58.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_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.58.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_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.58.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|