google-apis-container_v1beta1 0.68.0 → 0.69.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: a887ad386cd4e1217be9084c4556f931a4246dccede0581ed1c6d557bc2a5393
4
- data.tar.gz: da74dadda6d9c7d9f569dc7e7772d4c0cec7798a849fb6ff47c8179b44e052e3
3
+ metadata.gz: 2ec29ae5b1a47d3bc2c73ebc121dc027369d7e6261216992c4246712069c55db
4
+ data.tar.gz: a4415d93df36f4bb1a893b88f0ed16c96b2c260f4dc363f8427b442349e15880
5
5
  SHA512:
6
- metadata.gz: 641192d66bb9aa37b32932ebbe5249ca5d866613cd04ec169bfecea795042daae03520f0561a558886033b24b664636a773a71df6a53131bbe340921c3cbd766
7
- data.tar.gz: f74e794b70a8fdb4ba04645b3b5c76abfbbbc1d3b120bec7a8aa73ce64990093ebcdc04771113008450c611340d83098b3d3d24d4789906da0e8fc574e53e699
6
+ metadata.gz: 4094efa625ae1e6b5041d4b2484bad3f1a1eae7a44b2782d5a0309f367e32f4d871093bbf1494ec389d674d4abee32a1a6342d6d6cfdde8441c4c60be84d230e
7
+ data.tar.gz: 0adaf89ca103d7b9e95bf2c47dbd4dd89167b5541987b7a7501e0b3f73e7a519e744c14bb9cf29fb620263784909a88623dfe69f528dc0097d466e2d2b3213b7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.69.0 (2024-03-03)
4
+
5
+ * Regenerated from discovery document revision 20240214
6
+
3
7
  ### v0.68.0 (2024-02-23)
4
8
 
5
9
  * Regenerated using generator version 0.14.0
@@ -4519,6 +4519,11 @@ module Google
4519
4519
  # @return [Google::Apis::ContainerV1beta1::SandboxConfig]
4520
4520
  attr_accessor :sandbox_config
4521
4521
 
4522
+ # List of secondary boot disks attached to the nodes.
4523
+ # Corresponds to the JSON property `secondaryBootDisks`
4524
+ # @return [Array<Google::Apis::ContainerV1beta1::SecondaryBootDisk>]
4525
+ attr_accessor :secondary_boot_disks
4526
+
4522
4527
  # The Google Cloud Platform Service Account to be used by the node VMs. Specify
4523
4528
  # the email address of the Service Account; otherwise, if no Service Account is
4524
4529
  # specified, the "default" service account is used.
@@ -4608,6 +4613,7 @@ module Google
4608
4613
  @resource_labels = args[:resource_labels] if args.key?(:resource_labels)
4609
4614
  @resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
4610
4615
  @sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
4616
+ @secondary_boot_disks = args[:secondary_boot_disks] if args.key?(:secondary_boot_disks)
4611
4617
  @service_account = args[:service_account] if args.key?(:service_account)
4612
4618
  @shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
4613
4619
  @sole_tenant_config = args[:sole_tenant_config] if args.key?(:sole_tenant_config)
@@ -6116,6 +6122,32 @@ module Google
6116
6122
  end
6117
6123
  end
6118
6124
 
6125
+ # SecondaryBootDisk represents a persistent disk attached to a node with special
6126
+ # configurations based on its mode.
6127
+ class SecondaryBootDisk
6128
+ include Google::Apis::Core::Hashable
6129
+
6130
+ # Fully-qualified resource ID for an existing disk image.
6131
+ # Corresponds to the JSON property `diskImage`
6132
+ # @return [String]
6133
+ attr_accessor :disk_image
6134
+
6135
+ # Disk mode (container image cache, etc.)
6136
+ # Corresponds to the JSON property `mode`
6137
+ # @return [String]
6138
+ attr_accessor :mode
6139
+
6140
+ def initialize(**args)
6141
+ update!(**args)
6142
+ end
6143
+
6144
+ # Update properties of this object
6145
+ def update!(**args)
6146
+ @disk_image = args[:disk_image] if args.key?(:disk_image)
6147
+ @mode = args[:mode] if args.key?(:mode)
6148
+ end
6149
+ end
6150
+
6119
6151
  # SecurityBulletinEvent is a notification sent to customers when a security
6120
6152
  # bulletin has been posted that they are vulnerable to.
6121
6153
  class SecurityBulletinEvent
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1beta1
18
18
  # Version of the google-apis-container_v1beta1 gem
19
- GEM_VERSION = "0.68.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240206"
25
+ REVISION = "20240214"
26
26
  end
27
27
  end
28
28
  end
@@ -874,6 +874,12 @@ module Google
874
874
  include Google::Apis::Core::JsonObjectSupport
875
875
  end
876
876
 
877
+ class SecondaryBootDisk
878
+ class Representation < Google::Apis::Core::JsonRepresentation; end
879
+
880
+ include Google::Apis::Core::JsonObjectSupport
881
+ end
882
+
877
883
  class SecurityBulletinEvent
878
884
  class Representation < Google::Apis::Core::JsonRepresentation; end
879
885
 
@@ -2366,6 +2372,8 @@ module Google
2366
2372
 
2367
2373
  property :sandbox_config, as: 'sandboxConfig', class: Google::Apis::ContainerV1beta1::SandboxConfig, decorator: Google::Apis::ContainerV1beta1::SandboxConfig::Representation
2368
2374
 
2375
+ collection :secondary_boot_disks, as: 'secondaryBootDisks', class: Google::Apis::ContainerV1beta1::SecondaryBootDisk, decorator: Google::Apis::ContainerV1beta1::SecondaryBootDisk::Representation
2376
+
2369
2377
  property :service_account, as: 'serviceAccount'
2370
2378
  property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig, decorator: Google::Apis::ContainerV1beta1::ShieldedInstanceConfig::Representation
2371
2379
 
@@ -2773,6 +2781,14 @@ module Google
2773
2781
  end
2774
2782
  end
2775
2783
 
2784
+ class SecondaryBootDisk
2785
+ # @private
2786
+ class Representation < Google::Apis::Core::JsonRepresentation
2787
+ property :disk_image, as: 'diskImage'
2788
+ property :mode, as: 'mode'
2789
+ end
2790
+ end
2791
+
2776
2792
  class SecurityBulletinEvent
2777
2793
  # @private
2778
2794
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.68.0
4
+ version: 0.69.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: 2024-02-25 00:00:00.000000000 Z
11
+ date: 2024-03-03 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-container_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.68.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.69.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []