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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a6f6a515fb9b0f3c3ddb1673384af1ec8b1973a654bc32f710f2a83cf351fc9f
4
- data.tar.gz: 85ec03f47bfda77f733400d12e43440af6557cb6507194809805b39699aaecde
3
+ metadata.gz: 59dfdb8a63b0df9188d2f6d2c014e82e1d8bfdcc88817c10f85a413121b3719e
4
+ data.tar.gz: 1d71d1d64161b0531c9ea3799a3b679cff645fb81e06381847717431612a076a
5
5
  SHA512:
6
- metadata.gz: aea25e0141a9a74a583cd394a296accbf2cf63670f016cde3b3ac9237f0abbad93320b4867d25f6b2d91c200de04c38defc4bf3b8b54717a430d9240e1af2bae
7
- data.tar.gz: 58ea1fef3f8de00f5b6f3b8bb94453bb8cf65f4282b48a2e670c340e802cfc14431ddd609e3e2c4a549bc7c516d4d2df343b8f2f5292477a7b4ac81760eeb53c
6
+ metadata.gz: d31ee55a3e9c5e35d88f70e87d2933b2b6801ad8ed72cc73b2d2ddc5c17dec257790c92166a9eaa6ef4802d0f9540964eddce4b4aa027e8384b9b0dd3508016c
7
+ data.tar.gz: b95948afe5106e990d88a105eac52a9648c7746b21d4200b4a08b489fc553ba92cc7c02506555189bfc0da513b258c8a2d439e4ff44a23bc1ea1b293bd694da3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.56.0 (2023-06-18)
4
+
5
+ * Regenerated from discovery document revision 20230611
6
+
3
7
  ### v0.55.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230604
@@ -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: http://kubernetes.io/docs/user-guide/volumes#emptydir +
844
- # optional
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.55.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 = "20230604"
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.55.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 00:00:00.000000000 Z
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.55.0
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: []