google-apis-run_v1 0.51.0 → 0.53.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: b79d6e79e76948f5f67d5ae73b9b6046d4a3f44584f9baed738223546db29e50
4
- data.tar.gz: cc31f60e28bc3473285898b66e26409d8f1f1eaf40d4e9c02ec4fabbe1b545af
3
+ metadata.gz: b5df95691749a102dfe42bc1313e6b3a83877bdf3d6648cb303015475b77a375
4
+ data.tar.gz: a6b76f582e11a3e5ece18cf33563c4d3ea0a34e0db5a28eef2799af71a44320c
5
5
  SHA512:
6
- metadata.gz: f629cfc9b3bee96b91e663c9e5a15ce2cb2284e36fa3ee820b11b0e65f073cc196810ab4aa422f6553cd83d47f705860037819c6cf0028eb338ece1910eead9d
7
- data.tar.gz: 1b52181d29253cf35a9c88bbdd8f9745cbf959a5bcd74f909cb0842c380a13ef2345134e25b7a44217c635beaaff92646666264a82519bf0191993aae6637429
6
+ metadata.gz: e2285e4f26fa214a3b041c0241d1cc9a2acd3739ffd132a04b2503919674b59d44a1137b6f9a7bff9e15a176ee0138a8db7cf7f623087574ebc8280499dab6e6
7
+ data.tar.gz: 23ff2d853204c6eb1b1e6bc4b10a72c62c543ae75c17c714bb9b940b5b5d39cf8026c7038ead7df918ba7f1d60fbe1919a86e4a90a9d1191a355fb77f41bcf64
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.53.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230521
6
+
7
+ ### v0.52.0 (2023-05-07)
8
+
9
+ * Regenerated from discovery document revision 20230430
10
+
3
11
  ### v0.51.0 (2023-04-30)
4
12
 
5
13
  * Regenerated from discovery document revision 20230423
@@ -820,6 +820,43 @@ module Google
820
820
  end
821
821
  end
822
822
 
823
+ # Ephemeral storage which can be backed by real disks (HD, SSD), network storage
824
+ # or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is
825
+ # ephemeral in the sense that when the sandbox is taken down, the data is
826
+ # destroyed with it (it does not persist across sandbox runs).
827
+ class EmptyDirVolumeSource
828
+ include Google::Apis::Core::Hashable
829
+
830
+ # The medium on which the data is stored. The default is "" which means to use
831
+ # 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
833
+ # Corresponds to the JSON property `medium`
834
+ # @return [String]
835
+ attr_accessor :medium
836
+
837
+ # Limit on the storage usable by this EmptyDir volume. The size limit is also
838
+ # applicable for memory medium. The maximum usage on memory medium EmptyDir
839
+ # would be the minimum value between the SizeLimit specified here and the sum of
840
+ # memory limits of all containers in a pod. This field's values are of the '
841
+ # Quantity' k8s type: https://kubernetes.io/docs/reference/kubernetes-api/common-
842
+ # 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
845
+ # Corresponds to the JSON property `sizeLimit`
846
+ # @return [String]
847
+ attr_accessor :size_limit
848
+
849
+ def initialize(**args)
850
+ update!(**args)
851
+ end
852
+
853
+ # Update properties of this object
854
+ def update!(**args)
855
+ @medium = args[:medium] if args.key?(:medium)
856
+ @size_limit = args[:size_limit] if args.key?(:size_limit)
857
+ end
858
+ end
859
+
823
860
  # Not supported by Cloud Run. EnvFromSource represents the source of a set of
824
861
  # ConfigMaps
825
862
  class EnvFromSource
@@ -2421,14 +2458,14 @@ module Google
2421
2458
 
2422
2459
  # Number of seconds after the container has started before the probe is
2423
2460
  # initiated. Defaults to 0 seconds. Minimum value is 0. Maximum value for
2424
- # liveness probe is 3600. Maximum value for startup probe is 240.
2461
+ # liveness probe is 3600. Maximum value for startup probe is 240. .
2425
2462
  # Corresponds to the JSON property `initialDelaySeconds`
2426
2463
  # @return [Fixnum]
2427
2464
  attr_accessor :initial_delay_seconds
2428
2465
 
2429
2466
  # How often (in seconds) to perform the probe. Default to 10 seconds. Minimum
2430
2467
  # value is 1. Maximum value for liveness probe is 3600. Maximum value for
2431
- # startup probe is 240. Must be greater or equal than timeout_seconds.
2468
+ # startup probe is 240. Must be greater or equal than timeout_seconds. .
2432
2469
  # Corresponds to the JSON property `periodSeconds`
2433
2470
  # @return [Fixnum]
2434
2471
  attr_accessor :period_seconds
@@ -2445,7 +2482,8 @@ module Google
2445
2482
  attr_accessor :tcp_socket
2446
2483
 
2447
2484
  # Number of seconds after which the probe times out. Defaults to 1 second.
2448
- # Minimum value is 1. Maximum value is 3600. Must be smaller than period_seconds.
2485
+ # Minimum value is 1. Maximum value is 3600. Must be smaller than period_seconds;
2486
+ # if period_seconds is not set, must be less or equal than 10.
2449
2487
  # Corresponds to the JSON property `timeoutSeconds`
2450
2488
  # @return [Fixnum]
2451
2489
  attr_accessor :timeout_seconds
@@ -3759,6 +3797,14 @@ module Google
3759
3797
  # @return [Google::Apis::RunV1::ConfigMapVolumeSource]
3760
3798
  attr_accessor :config_map
3761
3799
 
3800
+ # Ephemeral storage which can be backed by real disks (HD, SSD), network storage
3801
+ # or memory (i.e. tmpfs). For now only in memory (tmpfs) is supported. It is
3802
+ # ephemeral in the sense that when the sandbox is taken down, the data is
3803
+ # destroyed with it (it does not persist across sandbox runs).
3804
+ # Corresponds to the JSON property `emptyDir`
3805
+ # @return [Google::Apis::RunV1::EmptyDirVolumeSource]
3806
+ attr_accessor :empty_dir
3807
+
3762
3808
  # Volume's name. In Cloud Run Fully Managed, the name 'cloudsql' is reserved.
3763
3809
  # Corresponds to the JSON property `name`
3764
3810
  # @return [String]
@@ -3780,6 +3826,7 @@ module Google
3780
3826
  # Update properties of this object
3781
3827
  def update!(**args)
3782
3828
  @config_map = args[:config_map] if args.key?(:config_map)
3829
+ @empty_dir = args[:empty_dir] if args.key?(:empty_dir)
3783
3830
  @name = args[:name] if args.key?(:name)
3784
3831
  @secret = args[:secret] if args.key?(:secret)
3785
3832
  end
@@ -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.51.0"
19
+ GEM_VERSION = "0.53.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 = "20230423"
25
+ REVISION = "20230521"
26
26
  end
27
27
  end
28
28
  end
@@ -130,6 +130,12 @@ module Google
130
130
  include Google::Apis::Core::JsonObjectSupport
131
131
  end
132
132
 
133
+ class EmptyDirVolumeSource
134
+ class Representation < Google::Apis::Core::JsonRepresentation; end
135
+
136
+ include Google::Apis::Core::JsonObjectSupport
137
+ end
138
+
133
139
  class EnvFromSource
134
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
141
 
@@ -744,6 +750,14 @@ module Google
744
750
  end
745
751
  end
746
752
 
753
+ class EmptyDirVolumeSource
754
+ # @private
755
+ class Representation < Google::Apis::Core::JsonRepresentation
756
+ property :medium, as: 'medium'
757
+ property :size_limit, as: 'sizeLimit'
758
+ end
759
+ end
760
+
747
761
  class EnvFromSource
748
762
  # @private
749
763
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1504,6 +1518,8 @@ module Google
1504
1518
  class Representation < Google::Apis::Core::JsonRepresentation
1505
1519
  property :config_map, as: 'configMap', class: Google::Apis::RunV1::ConfigMapVolumeSource, decorator: Google::Apis::RunV1::ConfigMapVolumeSource::Representation
1506
1520
 
1521
+ property :empty_dir, as: 'emptyDir', class: Google::Apis::RunV1::EmptyDirVolumeSource, decorator: Google::Apis::RunV1::EmptyDirVolumeSource::Representation
1522
+
1507
1523
  property :name, as: 'name'
1508
1524
  property :secret, as: 'secret', class: Google::Apis::RunV1::SecretVolumeSource, decorator: Google::Apis::RunV1::SecretVolumeSource::Representation
1509
1525
 
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.51.0
4
+ version: 0.53.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-04-30 00:00:00.000000000 Z
11
+ date: 2023-05-28 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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.53.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: []