google-apis-container_v1 0.66.0 → 0.67.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 909712160c2cf741d25fadcc78d7ee363f8d112c1375470d721a592744339776
|
4
|
+
data.tar.gz: 517c689f4a814ffee80a996ce5c70388ec0807215731440191bbd85a59102d28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 829d49ba2d42397442d6af7b882095a0752d060c8b8acbabd7b3b45b6f8f67517fd1def1916e28fa723f4192bf5bd462fd98d432105d66249a49672916bd4316
|
7
|
+
data.tar.gz: 9123dac3d839e2ba5a576b829746ddaa11b43f3f5c33367fbc9b3bc184a73126085ae345db1f6804fc62cc43f62c214ff60f3d902e187954fbca3ef1849ff9fb
|
data/CHANGELOG.md
CHANGED
@@ -4028,6 +4028,11 @@ module Google
|
|
4028
4028
|
# @return [Google::Apis::ContainerV1::SandboxConfig]
|
4029
4029
|
attr_accessor :sandbox_config
|
4030
4030
|
|
4031
|
+
# List of secondary boot disks attached to the nodes.
|
4032
|
+
# Corresponds to the JSON property `secondaryBootDisks`
|
4033
|
+
# @return [Array<Google::Apis::ContainerV1::SecondaryBootDisk>]
|
4034
|
+
attr_accessor :secondary_boot_disks
|
4035
|
+
|
4031
4036
|
# The Google Cloud Platform Service Account to be used by the node VMs. Specify
|
4032
4037
|
# the email address of the Service Account; otherwise, if no Service Account is
|
4033
4038
|
# specified, the "default" service account is used.
|
@@ -4115,6 +4120,7 @@ module Google
|
|
4115
4120
|
@resource_labels = args[:resource_labels] if args.key?(:resource_labels)
|
4116
4121
|
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
4117
4122
|
@sandbox_config = args[:sandbox_config] if args.key?(:sandbox_config)
|
4123
|
+
@secondary_boot_disks = args[:secondary_boot_disks] if args.key?(:secondary_boot_disks)
|
4118
4124
|
@service_account = args[:service_account] if args.key?(:service_account)
|
4119
4125
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
4120
4126
|
@sole_tenant_config = args[:sole_tenant_config] if args.key?(:sole_tenant_config)
|
@@ -5502,6 +5508,32 @@ module Google
|
|
5502
5508
|
end
|
5503
5509
|
end
|
5504
5510
|
|
5511
|
+
# SecondaryBootDisk represents a persistent disk attached to a node with special
|
5512
|
+
# configurations based on its mode.
|
5513
|
+
class SecondaryBootDisk
|
5514
|
+
include Google::Apis::Core::Hashable
|
5515
|
+
|
5516
|
+
# Fully-qualified resource ID for an existing disk image.
|
5517
|
+
# Corresponds to the JSON property `diskImage`
|
5518
|
+
# @return [String]
|
5519
|
+
attr_accessor :disk_image
|
5520
|
+
|
5521
|
+
# Disk mode (container image cache, etc.)
|
5522
|
+
# Corresponds to the JSON property `mode`
|
5523
|
+
# @return [String]
|
5524
|
+
attr_accessor :mode
|
5525
|
+
|
5526
|
+
def initialize(**args)
|
5527
|
+
update!(**args)
|
5528
|
+
end
|
5529
|
+
|
5530
|
+
# Update properties of this object
|
5531
|
+
def update!(**args)
|
5532
|
+
@disk_image = args[:disk_image] if args.key?(:disk_image)
|
5533
|
+
@mode = args[:mode] if args.key?(:mode)
|
5534
|
+
end
|
5535
|
+
end
|
5536
|
+
|
5505
5537
|
# SecurityBulletinEvent is a notification sent to customers when a security
|
5506
5538
|
# bulletin has been posted that they are vulnerable to.
|
5507
5539
|
class SecurityBulletinEvent
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1
|
18
18
|
# Version of the google-apis-container_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.67.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 = "
|
25
|
+
REVISION = "20240214"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -778,6 +778,12 @@ module Google
|
|
778
778
|
include Google::Apis::Core::JsonObjectSupport
|
779
779
|
end
|
780
780
|
|
781
|
+
class SecondaryBootDisk
|
782
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
|
+
|
784
|
+
include Google::Apis::Core::JsonObjectSupport
|
785
|
+
end
|
786
|
+
|
781
787
|
class SecurityBulletinEvent
|
782
788
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
789
|
|
@@ -2093,6 +2099,8 @@ module Google
|
|
2093
2099
|
|
2094
2100
|
property :sandbox_config, as: 'sandboxConfig', class: Google::Apis::ContainerV1::SandboxConfig, decorator: Google::Apis::ContainerV1::SandboxConfig::Representation
|
2095
2101
|
|
2102
|
+
collection :secondary_boot_disks, as: 'secondaryBootDisks', class: Google::Apis::ContainerV1::SecondaryBootDisk, decorator: Google::Apis::ContainerV1::SecondaryBootDisk::Representation
|
2103
|
+
|
2096
2104
|
property :service_account, as: 'serviceAccount'
|
2097
2105
|
property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::ContainerV1::ShieldedInstanceConfig, decorator: Google::Apis::ContainerV1::ShieldedInstanceConfig::Representation
|
2098
2106
|
|
@@ -2463,6 +2471,14 @@ module Google
|
|
2463
2471
|
end
|
2464
2472
|
end
|
2465
2473
|
|
2474
|
+
class SecondaryBootDisk
|
2475
|
+
# @private
|
2476
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2477
|
+
property :disk_image, as: 'diskImage'
|
2478
|
+
property :mode, as: 'mode'
|
2479
|
+
end
|
2480
|
+
end
|
2481
|
+
|
2466
2482
|
class SecurityBulletinEvent
|
2467
2483
|
# @private
|
2468
2484
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.67.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-
|
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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.67.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|