google-apis-run_v1 0.55.0 → 0.57.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: de144becd9bca1faceec771782b387b40bc3fb39f5eb6a0e8f4cf3fdc71ba315
4
+ data.tar.gz: 3821b384e9c393904f5e8da3c9067cb6cab570101d66a5f2d153c44b0098423d
5
5
  SHA512:
6
- metadata.gz: aea25e0141a9a74a583cd394a296accbf2cf63670f016cde3b3ac9237f0abbad93320b4867d25f6b2d91c200de04c38defc4bf3b8b54717a430d9240e1af2bae
7
- data.tar.gz: 58ea1fef3f8de00f5b6f3b8bb94453bb8cf65f4282b48a2e670c340e802cfc14431ddd609e3e2c4a549bc7c516d4d2df343b8f2f5292477a7b4ac81760eeb53c
6
+ metadata.gz: a24aab0352f20166aacd72d80fbe18ba2741b7155d4266a94eceed29f3c04580d3a50469294d411838efd848ab5b6865c97a2c15fc66c3b0dc48e25e22487427
7
+ data.tar.gz: 8a2a3fc1c1098b1cfebd05f8438dd228d2d4640dba5f3440df988618c487c3bf4c3fa7088d29a87771287c905f31ea75efbc1f1d30f473dd75db20bb07a664ce
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.57.0 (2023-07-16)
4
+
5
+ * Regenerated from discovery document revision 20230709
6
+
7
+ ### v0.56.0 (2023-06-18)
8
+
9
+ * Regenerated from discovery document revision 20230611
10
+
3
11
  ### v0.55.0 (2023-06-11)
4
12
 
5
13
  * 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
@@ -829,7 +837,7 @@ module Google
829
837
 
830
838
  # The medium on which the data is stored. The default is "" which means to use
831
839
  # the node's default medium. Must be an empty string (default) or Memory. More
832
- # info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir +optional
840
+ # info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir
833
841
  # Corresponds to the JSON property `medium`
834
842
  # @return [String]
835
843
  attr_accessor :medium
@@ -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.57.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 = "20230709"
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.57.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-07-16 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.57.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: []