google-apis-run_v1 0.107.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: 570a33f49a5395c532b17ec95452f5bbbe125590b235702e8b9aad897b96161f
4
- data.tar.gz: 68b48957b386426cc69a0bbd10ed5b29450af6633d21f58e1bf22100ea82f4b2
3
+ metadata.gz: df0f63869d0aed4c7a430d31e40b79d7be165bfab413022ec0c261e920de875a
4
+ data.tar.gz: a6ac90a585e13a08f173c08b5e031a2c1de4e87fff61f32a13fa38c24272df63
5
5
  SHA512:
6
- metadata.gz: d341b89cac302da9434d18650a1057e7c38f7cd69020d63d3f19a03b7d8614df506b6f1052b8be0c6fa6337d095f9241cb48e8c279ebff5837f8c31803e24c3e
7
- data.tar.gz: c570e258a2d0ef002eaad5c4735919a17201a38732f4e177fa8122ef16e5d602f19e1655fe769a63efe4742abb5a5501cadf027ad0102caeb4ece16f66112d2a
6
+ metadata.gz: ed9c5814d560139644e18539a6593452eb4bef4dc4bbf79cf25b1f9c488ea7202778f57481bb44d91fc144e2e548e3f30badfd40d8cb897520b9542384a0bcd8
7
+ data.tar.gz: a1095beb005fbeb3e0d137f0a19846105f01c5d2956738569981cf99b9d3519d519d6c9aefa93a7366f1cf05604087ac30640999f8a283870e13a467fa9c1b15
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
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
+
3
8
  ### v0.107.0 (2026-05-31)
4
9
 
5
10
  * Regenerated from discovery document revision 20260522
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
@@ -4010,6 +4024,7 @@ module Google
4010
4024
  def update!(**args)
4011
4025
  @containers = args[:containers] if args.key?(:containers)
4012
4026
  @node_selector = args[:node_selector] if args.key?(:node_selector)
4027
+ @restart_policy = args[:restart_policy] if args.key?(:restart_policy)
4013
4028
  @service_account_name = args[:service_account_name] if args.key?(:service_account_name)
4014
4029
  @volumes = args[:volumes] if args.key?(:volumes)
4015
4030
  end
@@ -5454,6 +5469,11 @@ module Google
5454
5469
  # @return [String]
5455
5470
  attr_accessor :runtime_class_name
5456
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
+
5457
5477
  # Email address of the IAM service account associated with the revision of the
5458
5478
  # service. The service account represents the identity of the running revision,
5459
5479
  # and determines what permissions the revision has. If not provided, the
@@ -5486,6 +5506,7 @@ module Google
5486
5506
  @image_pull_secrets = args[:image_pull_secrets] if args.key?(:image_pull_secrets)
5487
5507
  @node_selector = args[:node_selector] if args.key?(:node_selector)
5488
5508
  @runtime_class_name = args[:runtime_class_name] if args.key?(:runtime_class_name)
5509
+ @sandboxes = args[:sandboxes] if args.key?(:sandboxes)
5489
5510
  @service_account_name = args[:service_account_name] if args.key?(:service_account_name)
5490
5511
  @timeout_seconds = args[:timeout_seconds] if args.key?(:timeout_seconds)
5491
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.107.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 = "20260522"
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,6 +1964,7 @@ 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
1969
  collection :volumes, as: 'volumes', class: Google::Apis::RunV1::Volume, decorator: Google::Apis::RunV1::Volume::Representation
1968
1970
 
@@ -2335,6 +2337,8 @@ module Google
2335
2337
 
2336
2338
  hash :node_selector, as: 'nodeSelector'
2337
2339
  property :runtime_class_name, as: 'runtimeClassName'
2340
+ collection :sandboxes, as: 'sandboxes', class: Google::Apis::RunV1::Container, decorator: Google::Apis::RunV1::Container::Representation
2341
+
2338
2342
  property :service_account_name, as: 'serviceAccountName'
2339
2343
  property :timeout_seconds, as: 'timeoutSeconds'
2340
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.107.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.107.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
  - - ">="