google-apis-run_v1 0.55.0 → 0.56.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/run_v1/classes.rb +11 -3
- data/lib/google/apis/run_v1/gem_version.rb +2 -2
- data/lib/google/apis/run_v1/representations.rb +1 -0
- 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: 59dfdb8a63b0df9188d2f6d2c014e82e1d8bfdcc88817c10f85a413121b3719e
|
4
|
+
data.tar.gz: 1d71d1d64161b0531c9ea3799a3b679cff645fb81e06381847717431612a076a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d31ee55a3e9c5e35d88f70e87d2933b2b6801ad8ed72cc73b2d2ddc5c17dec257790c92166a9eaa6ef4802d0f9540964eddce4b4aa027e8384b9b0dd3508016c
|
7
|
+
data.tar.gz: b95948afe5106e990d88a105eac52a9648c7746b21d4200b4a08b489fc553ba92cc7c02506555189bfc0da513b258c8a2d439e4ff44a23bc1ea1b293bd694da3
|
data/CHANGELOG.md
CHANGED
@@ -628,11 +628,18 @@ module Google
|
|
628
628
|
class ContainerOverride
|
629
629
|
include Google::Apis::Core::Hashable
|
630
630
|
|
631
|
-
# Arguments to the entrypoint. Will replace existing args for override
|
631
|
+
# Arguments to the entrypoint. Will replace existing args for override if
|
632
|
+
# present. Must be empty if `clear_args` is set to true.
|
632
633
|
# Corresponds to the JSON property `args`
|
633
634
|
# @return [Array<String>]
|
634
635
|
attr_accessor :args
|
635
636
|
|
637
|
+
# Optional. True if the intention is to clear out existing args list.
|
638
|
+
# Corresponds to the JSON property `clearArgs`
|
639
|
+
# @return [Boolean]
|
640
|
+
attr_accessor :clear_args
|
641
|
+
alias_method :clear_args?, :clear_args
|
642
|
+
|
636
643
|
# List of environment variables to set in the container. Will be merged with
|
637
644
|
# existing env for override.
|
638
645
|
# Corresponds to the JSON property `env`
|
@@ -651,6 +658,7 @@ module Google
|
|
651
658
|
# Update properties of this object
|
652
659
|
def update!(**args)
|
653
660
|
@args = args[:args] if args.key?(:args)
|
661
|
+
@clear_args = args[:clear_args] if args.key?(:clear_args)
|
654
662
|
@env = args[:env] if args.key?(:env)
|
655
663
|
@name = args[:name] if args.key?(:name)
|
656
664
|
end
|
@@ -840,8 +848,8 @@ module Google
|
|
840
848
|
# memory limits of all containers in a pod. This field's values are of the '
|
841
849
|
# Quantity' k8s type: https://kubernetes.io/docs/reference/kubernetes-api/common-
|
842
850
|
# definitions/quantity/. The default is nil which means that the limit is
|
843
|
-
# undefined. More info:
|
844
|
-
#
|
851
|
+
# undefined. More info: https://kubernetes.io/docs/concepts/storage/volumes/#
|
852
|
+
# emptydir
|
845
853
|
# Corresponds to the JSON property `sizeLimit`
|
846
854
|
# @return [String]
|
847
855
|
attr_accessor :size_limit
|
@@ -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.56.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 = "20230611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -699,6 +699,7 @@ module Google
|
|
699
699
|
# @private
|
700
700
|
class Representation < Google::Apis::Core::JsonRepresentation
|
701
701
|
collection :args, as: 'args'
|
702
|
+
property :clear_args, as: 'clearArgs'
|
702
703
|
collection :env, as: 'env', class: Google::Apis::RunV1::EnvVar, decorator: Google::Apis::RunV1::EnvVar::Representation
|
703
704
|
|
704
705
|
property :name, as: 'name'
|
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.56.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-06-
|
11
|
+
date: 2023-06-18 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.56.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: []
|