google-apis-run_v1 0.106.0 → 0.108.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c7cf02f3f0b1f1d8f992d8fc47e764204382909029efab5d41ff71c85df3ee2c
4
- data.tar.gz: 13ef12b4d5c688ac9e4af35e4ce7b0e34af873ae394cc9f7e4905d5004e6db18
3
+ metadata.gz: df0f63869d0aed4c7a430d31e40b79d7be165bfab413022ec0c261e920de875a
4
+ data.tar.gz: a6ac90a585e13a08f173c08b5e031a2c1de4e87fff61f32a13fa38c24272df63
5
5
  SHA512:
6
- metadata.gz: 904fb6ec040466d50a6d0ab9e2e15bd5171945f071c23661df65b29b9ec9041f885cbf3d8bc9802517c66a6458ca46664071aa60463a9dc6bf4a35a7aeb5d85e
7
- data.tar.gz: 35226c0430c473806287f0d0f37a3d1d61f19e55182c95b8cb83fbb4cb6cf6f69ed8741d6140e22fa8f403600eeb52a2e2cc7816760a8d73ce748cb2e90ca81d
6
+ metadata.gz: ed9c5814d560139644e18539a6593452eb4bef4dc4bbf79cf25b1f9c488ea7202778f57481bb44d91fc144e2e548e3f30badfd40d8cb897520b9542384a0bcd8
7
+ data.tar.gz: a1095beb005fbeb3e0d137f0a19846105f01c5d2956738569981cf99b9d3519d519d6c9aefa93a7366f1cf05604087ac30640999f8a283870e13a467fa9c1b15
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-run_v1
2
2
 
3
+ ### v0.108.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260603
6
+ * Regenerated using generator version 0.19.0
7
+
8
+ ### v0.107.0 (2026-05-31)
9
+
10
+ * Regenerated from discovery document revision 20260522
11
+
3
12
  ### v0.106.0 (2026-05-17)
4
13
 
5
14
  * Regenerated from discovery document revision 20260512
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/run/) may provide guidance
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -615,6 +615,13 @@ module Google
615
615
  # @return [Google::Apis::RunV1::ResourceRequirements]
616
616
  attr_accessor :resources
617
617
 
618
+ # Optional. Indicates that this container can act as a sandbox supervisor and
619
+ # launch sandboxes.
620
+ # Corresponds to the JSON property `sandboxLauncher`
621
+ # @return [Boolean]
622
+ attr_accessor :sandbox_launcher
623
+ alias_method :sandbox_launcher?, :sandbox_launcher
624
+
618
625
  # Not supported by Cloud Run. SecurityContext holds security configuration that
619
626
  # will be applied to a container. Some fields are present in both
620
627
  # SecurityContext and PodSecurityContext. When both are set, the values in
@@ -678,6 +685,7 @@ module Google
678
685
  @ports = args[:ports] if args.key?(:ports)
679
686
  @readiness_probe = args[:readiness_probe] if args.key?(:readiness_probe)
680
687
  @resources = args[:resources] if args.key?(:resources)
688
+ @sandbox_launcher = args[:sandbox_launcher] if args.key?(:sandbox_launcher)
681
689
  @security_context = args[:security_context] if args.key?(:security_context)
682
690
  @startup_probe = args[:startup_probe] if args.key?(:startup_probe)
683
691
  @termination_message_path = args[:termination_message_path] if args.key?(:termination_message_path)
@@ -3988,6 +3996,12 @@ module Google
3988
3996
  # @return [Hash<String,String>]
3989
3997
  attr_accessor :node_selector
3990
3998
 
3999
+ # Optional. Restart policy for the Instance. Allowable values are 'Always', '
4000
+ # OnFailure', or 'Never'.
4001
+ # Corresponds to the JSON property `restartPolicy`
4002
+ # @return [String]
4003
+ attr_accessor :restart_policy
4004
+
3991
4005
  # Optional. Email address of the IAM service account associated with the
3992
4006
  # Instance. The service account represents the identity of the running container,
3993
4007
  # and determines what permissions the Instance has. If not provided, the
@@ -3996,12 +4010,6 @@ module Google
3996
4010
  # @return [String]
3997
4011
  attr_accessor :service_account_name
3998
4012
 
3999
- # Optional. Duration the instance may be active before the system will shut it
4000
- # down.
4001
- # Corresponds to the JSON property `timeout`
4002
- # @return [String]
4003
- attr_accessor :timeout
4004
-
4005
4013
  # Optional. List of volumes that can be mounted by containers belonging to the
4006
4014
  # Instance.
4007
4015
  # Corresponds to the JSON property `volumes`
@@ -4016,8 +4024,8 @@ module Google
4016
4024
  def update!(**args)
4017
4025
  @containers = args[:containers] if args.key?(:containers)
4018
4026
  @node_selector = args[:node_selector] if args.key?(:node_selector)
4027
+ @restart_policy = args[:restart_policy] if args.key?(:restart_policy)
4019
4028
  @service_account_name = args[:service_account_name] if args.key?(:service_account_name)
4020
- @timeout = args[:timeout] if args.key?(:timeout)
4021
4029
  @volumes = args[:volumes] if args.key?(:volumes)
4022
4030
  end
4023
4031
  end
@@ -5461,6 +5469,11 @@ module Google
5461
5469
  # @return [String]
5462
5470
  attr_accessor :runtime_class_name
5463
5471
 
5472
+ # Optional. Container templates that can be launched through the `sandbox` CLI.
5473
+ # Corresponds to the JSON property `sandboxes`
5474
+ # @return [Array<Google::Apis::RunV1::Container>]
5475
+ attr_accessor :sandboxes
5476
+
5464
5477
  # Email address of the IAM service account associated with the revision of the
5465
5478
  # service. The service account represents the identity of the running revision,
5466
5479
  # and determines what permissions the revision has. If not provided, the
@@ -5493,6 +5506,7 @@ module Google
5493
5506
  @image_pull_secrets = args[:image_pull_secrets] if args.key?(:image_pull_secrets)
5494
5507
  @node_selector = args[:node_selector] if args.key?(:node_selector)
5495
5508
  @runtime_class_name = args[:runtime_class_name] if args.key?(:runtime_class_name)
5509
+ @sandboxes = args[:sandboxes] if args.key?(:sandboxes)
5496
5510
  @service_account_name = args[:service_account_name] if args.key?(:service_account_name)
5497
5511
  @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
5498
5512
  @volumes = args[:volumes] if args.key?(:volumes)
@@ -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.106.0"
19
+ GEM_VERSION = "0.108.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260512"
25
+ REVISION = "20260603"
26
26
  end
27
27
  end
28
28
  end
@@ -1088,6 +1088,7 @@ module Google
1088
1088
 
1089
1089
  property :resources, as: 'resources', class: Google::Apis::RunV1::ResourceRequirements, decorator: Google::Apis::RunV1::ResourceRequirements::Representation
1090
1090
 
1091
+ property :sandbox_launcher, as: 'sandboxLauncher'
1091
1092
  property :security_context, as: 'securityContext', class: Google::Apis::RunV1::SecurityContext, decorator: Google::Apis::RunV1::SecurityContext::Representation
1092
1093
 
1093
1094
  property :startup_probe, as: 'startupProbe', class: Google::Apis::RunV1::Probe, decorator: Google::Apis::RunV1::Probe::Representation
@@ -1963,8 +1964,8 @@ module Google
1963
1964
  collection :containers, as: 'containers', class: Google::Apis::RunV1::Container, decorator: Google::Apis::RunV1::Container::Representation
1964
1965
 
1965
1966
  hash :node_selector, as: 'nodeSelector'
1967
+ property :restart_policy, as: 'restartPolicy'
1966
1968
  property :service_account_name, as: 'serviceAccountName'
1967
- property :timeout, as: 'timeout'
1968
1969
  collection :volumes, as: 'volumes', class: Google::Apis::RunV1::Volume, decorator: Google::Apis::RunV1::Volume::Representation
1969
1970
 
1970
1971
  end
@@ -2336,6 +2337,8 @@ module Google
2336
2337
 
2337
2338
  hash :node_selector, as: 'nodeSelector'
2338
2339
  property :runtime_class_name, as: 'runtimeClassName'
2340
+ collection :sandboxes, as: 'sandboxes', class: Google::Apis::RunV1::Container, decorator: Google::Apis::RunV1::Container::Representation
2341
+
2339
2342
  property :service_account_name, as: 'serviceAccountName'
2340
2343
  property :timeout_seconds, as: 'timeoutSeconds'
2341
2344
  collection :volumes, as: 'volumes', class: Google::Apis::RunV1::Volume, decorator: Google::Apis::RunV1::Volume::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-run_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.106.0
4
+ version: 0.108.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.106.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-run_v1/v0.108.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-run_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="