google-apis-batch_v1 0.59.0 → 0.60.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: aa5bc64ffacec6f3b73be8c05ac01999023468f5475749eba87ce01beae3c8ad
4
- data.tar.gz: 38b1d68f0f1b13384448a529fc997178c40ba0a6a64c451b07552ba703e4cbc4
3
+ metadata.gz: b714eee661781f75e126484f82748215c81a999b78513d11566545fde2497499
4
+ data.tar.gz: 2619fd10536857cca6638d3f0ad278605b41d5fee4bbb66f26fc7c233f9175f7
5
5
  SHA512:
6
- metadata.gz: 5948feab2cf232a8af9c012e86318943af4a34fd5eb9afc3288caf9c81b9ed1b742001a37e7f2536e56e862776361dc3f62e6d252452eaaec71fd646d98c1cb2
7
- data.tar.gz: ac3a6b7cbc351014d9d69a70725bdfbd879573323f8197fcff03f1bc1712cf0ea9dfe5646c6be327dec3428dfd5a5e023562927ca1b880f0f9706aa7744ac9f9
6
+ metadata.gz: e5de3279f61d8e3610b3b94df3059527a5bb393ecb4d3e31e757b07ba3a395fb50ef3f4c860e2e5246dbee6e0d6019a76bc4ae4c04c423abefee73c5b243659d
7
+ data.tar.gz: ed6b29f7e46ff280ada41a11f7433df6629d5d5af58b517bdbec3fec042ffaffccdd0b993f0ad50f28448c616c7e4298981ce0b689f178340508a6e39b4e0096
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-batch_v1
2
2
 
3
+ ### v0.60.0 (2026-08-02)
4
+
5
+ * Regenerated from discovery document revision 20260723
6
+
3
7
  ### v0.59.0 (2026-06-14)
4
8
 
5
9
  * Regenerated using generator version 0.19.0
@@ -1711,15 +1711,23 @@ module Google
1711
1711
  class LocationPolicy
1712
1712
  include Google::Apis::Core::Hashable
1713
1713
 
1714
- # A list of allowed location names represented by internal URLs. Each location
1715
- # can be a region or a zone. Only one region or multiple zones in one region is
1716
- # supported now. For example, ["regions/us-central1"] allow VMs in any zones in
1717
- # region us-central1. ["zones/us-central1-a", "zones/us-central1-c"] only allow
1718
- # VMs in zones us-central1-a and us-central1-c. Mixing locations from different
1719
- # regions would cause errors. For example, ["regions/us-central1", "zones/us-
1720
- # central1-a", "zones/us-central1-b", "zones/us-west1-a"] contains locations
1721
- # from two distinct regions: us-central1 and us-west1. This combination will
1722
- # trigger an error.
1714
+ # A list of location names that are allowed for the job's VMs formatted as URLs.
1715
+ # Each location can be a region or a zone, but you can only specify one region
1716
+ # or multiple zones in one region per job. For example, `["regions/us-central1"]`
1717
+ # allow VMs in any zones in region `us-central1`, and `["zones/us-central1-a", "
1718
+ # zones/us-central1-c"]` only allow VMs in zones `us-central1-a` and `us-
1719
+ # central1-c`. However, `["regions/us-central1", "zones/us-central1-a", "zones/
1720
+ # us-central1-b", "zones/us-west1-a"]` causes an error because it contains
1721
+ # multiple regions (`us-central1` and `us-west1`). The specified region or zones
1722
+ # must be in the same region in which the job is created starting on the
1723
+ # following dates: + For projects that have successfully submitted before July
1724
+ # 31, 2026 at least one job that uses the `allowedLocations[]` field with any
1725
+ # region or zones outside of the job's location, the changes are starting on
1726
+ # _June 30, 2027_. + For all other projects, the changes are starting on _July
1727
+ # 31, 2026_. For example, for job `projects/123/locations/us-central1/jobs/jobid`
1728
+ # , the specified region or zones must be in `us-central1`. Using a different
1729
+ # region (e.g. `regions/us-west1`) or a zone not in `us-central1` (e.g. `zones/
1730
+ # us-west1-a`) causes an error.
1723
1731
  # Corresponds to the JSON property `allowedLocations`
1724
1732
  # @return [Array<String>]
1725
1733
  attr_accessor :allowed_locations
@@ -1847,6 +1855,11 @@ module Google
1847
1855
  # @return [String]
1848
1856
  attr_accessor :network
1849
1857
 
1858
+ # Optional. The NIC type of the network interface.
1859
+ # Corresponds to the JSON property `nicType`
1860
+ # @return [String]
1861
+ attr_accessor :nic_type
1862
+
1850
1863
  # Default is false (with an external IP address). Required if no external public
1851
1864
  # IP address is attached to the VM. If no external public IP address, additional
1852
1865
  # configuration is required to allow the VM to access Google Services. See https:
@@ -1873,6 +1886,7 @@ module Google
1873
1886
  # Update properties of this object
1874
1887
  def update!(**args)
1875
1888
  @network = args[:network] if args.key?(:network)
1889
+ @nic_type = args[:nic_type] if args.key?(:nic_type)
1876
1890
  @no_external_ip_address = args[:no_external_ip_address] if args.key?(:no_external_ip_address)
1877
1891
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
1878
1892
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module BatchV1
18
18
  # Version of the google-apis-batch_v1 gem
19
- GEM_VERSION = "0.59.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260429"
25
+ REVISION = "20260723"
26
26
  end
27
27
  end
28
28
  end
@@ -863,6 +863,7 @@ module Google
863
863
  # @private
864
864
  class Representation < Google::Apis::Core::JsonRepresentation
865
865
  property :network, as: 'network'
866
+ property :nic_type, as: 'nicType'
866
867
  property :no_external_ip_address, as: 'noExternalIpAddress'
867
868
  property :subnetwork, as: 'subnetwork'
868
869
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-batch_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.59.0
4
+ version: 0.60.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-batch_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.59.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.60.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-batch_v1
62
62
  rdoc_options: []
63
63
  require_paths: