google-apis-container_v1beta1 0.67.0 → 0.69.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: 550ec9015c02340dd6e09893ffca44f09c90fc0ad58a636de691f3133a9a9ffc
4
- data.tar.gz: 8a0467cb67ea3bbce7faf30982a920ac499cf1a29ddb24a3c85f78e110de4008
3
+ metadata.gz: 2ec29ae5b1a47d3bc2c73ebc121dc027369d7e6261216992c4246712069c55db
4
+ data.tar.gz: a4415d93df36f4bb1a893b88f0ed16c96b2c260f4dc363f8427b442349e15880
5
5
  SHA512:
6
- metadata.gz: 5c1717772999dc2e83ad4d0bffd4c7aee67d59cd3528e21b615c7b20c02f86d43bd67cf213cf1c3366e22b172ddeb853019d58fa25bb86e6b9e18bfaa65ac640
7
- data.tar.gz: ec110ef1d458c0c6a8252b77b6a89028fe4889d1b655540ac995aec7fba57fcb15c09a9f44f8d1cb025f7a5ba1ba6a532a414e34ad9f2d0cc8ab176b36aa28f3
6
+ metadata.gz: 4094efa625ae1e6b5041d4b2484bad3f1a1eae7a44b2782d5a0309f367e32f4d871093bbf1494ec389d674d4abee32a1a6342d6d6cfdde8441c4c60be84d230e
7
+ data.tar.gz: 0adaf89ca103d7b9e95bf2c47dbd4dd89167b5541987b7a7501e0b3f73e7a519e744c14bb9cf29fb620263784909a88623dfe69f528dc0097d466e2d2b3213b7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.68.0 (2024-02-23)
8
+
9
+ * Regenerated using generator version 0.14.0
10
+
3
11
  ### v0.67.0 (2024-02-18)
4
12
 
5
13
  * Regenerated from discovery document revision 20240206
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/container-engine/) may prov
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
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. Currently, this means Ruby 2.5 and later. 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.
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
 
90
90
  ## License
91
91
 
@@ -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.67.0"
19
+ GEM_VERSION = "0.69.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
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.67.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-18 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
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.12.0
19
+ version: 0.14.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.12.0
29
+ version: 0.14.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.67.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Kubernetes Engine API V1beta1