google-apis-container_v1 0.91.0 → 0.93.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: 2def6e7f35ea38b80c86defb9dfcab714b38838675a1fe04f9a6068d7013421b
|
4
|
+
data.tar.gz: d04222a114ac7ad7cb00a6392b626ae6ca2c869fca3148eca50bd2c1a9a2d5e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 98410699fe77716899c2478a400ebfe1b401bd34e1e5032c490cb3a85a375b4941599a783f1e52f0474260413279bbce43284f6571f33df62c47f53c0fccdfb2
|
7
|
+
data.tar.gz: 2efc0455eb4314e5d35522c118993411c58f770a40eec5b39e21177b991fcfd4fca8f3ba19c34cd341be7154dacf61138ca46d8da8bc76df891005ddd623a3c8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.93.0 (2025-04-20)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250408
|
6
|
+
|
7
|
+
### v0.92.0 (2025-03-30)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250318
|
10
|
+
|
3
11
|
### v0.91.0 (2025-03-23)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250311
|
@@ -2243,6 +2243,11 @@ module Google
|
|
2243
2243
|
class ConfidentialNodes
|
2244
2244
|
include Google::Apis::Core::Hashable
|
2245
2245
|
|
2246
|
+
# Defines the type of technology used by the confidential node.
|
2247
|
+
# Corresponds to the JSON property `confidentialInstanceType`
|
2248
|
+
# @return [String]
|
2249
|
+
attr_accessor :confidential_instance_type
|
2250
|
+
|
2246
2251
|
# Whether Confidential Nodes feature is enabled.
|
2247
2252
|
# Corresponds to the JSON property `enabled`
|
2248
2253
|
# @return [Boolean]
|
@@ -2255,6 +2260,7 @@ module Google
|
|
2255
2260
|
|
2256
2261
|
# Update properties of this object
|
2257
2262
|
def update!(**args)
|
2263
|
+
@confidential_instance_type = args[:confidential_instance_type] if args.key?(:confidential_instance_type)
|
2258
2264
|
@enabled = args[:enabled] if args.key?(:enabled)
|
2259
2265
|
end
|
2260
2266
|
end
|
@@ -2708,6 +2714,11 @@ module Google
|
|
2708
2714
|
class EphemeralStorageLocalSsdConfig
|
2709
2715
|
include Google::Apis::Core::Hashable
|
2710
2716
|
|
2717
|
+
# Number of local SSDs to use for GKE Data Cache.
|
2718
|
+
# Corresponds to the JSON property `dataCacheCount`
|
2719
|
+
# @return [Fixnum]
|
2720
|
+
attr_accessor :data_cache_count
|
2721
|
+
|
2711
2722
|
# Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. A
|
2712
2723
|
# zero (or unset) value has different meanings depending on machine type being
|
2713
2724
|
# used: 1. For pre-Gen3 machines, which support flexible numbers of local ssds,
|
@@ -2730,6 +2741,7 @@ module Google
|
|
2730
2741
|
|
2731
2742
|
# Update properties of this object
|
2732
2743
|
def update!(**args)
|
2744
|
+
@data_cache_count = args[:data_cache_count] if args.key?(:data_cache_count)
|
2733
2745
|
@local_ssd_count = args[:local_ssd_count] if args.key?(:local_ssd_count)
|
2734
2746
|
end
|
2735
2747
|
end
|
@@ -4536,6 +4548,12 @@ module Google
|
|
4536
4548
|
# @return [Google::Apis::ContainerV1::FastSocket]
|
4537
4549
|
attr_accessor :fast_socket
|
4538
4550
|
|
4551
|
+
# Flex Start flag for enabling Flex Start VM.
|
4552
|
+
# Corresponds to the JSON property `flexStart`
|
4553
|
+
# @return [Boolean]
|
4554
|
+
attr_accessor :flex_start
|
4555
|
+
alias_method :flex_start?, :flex_start
|
4556
|
+
|
4539
4557
|
# GcfsConfig contains configurations of Google Container File System (image
|
4540
4558
|
# streaming).
|
4541
4559
|
# Corresponds to the JSON property `gcfsConfig`
|
@@ -4782,6 +4800,7 @@ module Google
|
|
4782
4800
|
@enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
|
4783
4801
|
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
4784
4802
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
4803
|
+
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
4785
4804
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
4786
4805
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
4787
4806
|
@image_type = args[:image_type] if args.key?(:image_type)
|
@@ -7926,6 +7945,12 @@ module Google
|
|
7926
7945
|
# @return [Google::Apis::ContainerV1::FastSocket]
|
7927
7946
|
attr_accessor :fast_socket
|
7928
7947
|
|
7948
|
+
# Flex Start flag for enabling Flex Start VM.
|
7949
|
+
# Corresponds to the JSON property `flexStart`
|
7950
|
+
# @return [Boolean]
|
7951
|
+
attr_accessor :flex_start
|
7952
|
+
alias_method :flex_start?, :flex_start
|
7953
|
+
|
7929
7954
|
# GcfsConfig contains configurations of Google Container File System (image
|
7930
7955
|
# streaming).
|
7931
7956
|
# Corresponds to the JSON property `gcfsConfig`
|
@@ -8130,6 +8155,7 @@ module Google
|
|
8130
8155
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
8131
8156
|
@etag = args[:etag] if args.key?(:etag)
|
8132
8157
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
8158
|
+
@flex_start = args[:flex_start] if args.key?(:flex_start)
|
8133
8159
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
8134
8160
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
8135
8161
|
@image_type = args[:image_type] if args.key?(:image_type)
|
@@ -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.93.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250408"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1759,6 +1759,7 @@ module Google
|
|
1759
1759
|
class ConfidentialNodes
|
1760
1760
|
# @private
|
1761
1761
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1762
|
+
property :confidential_instance_type, as: 'confidentialInstanceType'
|
1762
1763
|
property :enabled, as: 'enabled'
|
1763
1764
|
end
|
1764
1765
|
end
|
@@ -1901,6 +1902,7 @@ module Google
|
|
1901
1902
|
class EphemeralStorageLocalSsdConfig
|
1902
1903
|
# @private
|
1903
1904
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1905
|
+
property :data_cache_count, as: 'dataCacheCount'
|
1904
1906
|
property :local_ssd_count, as: 'localSsdCount'
|
1905
1907
|
end
|
1906
1908
|
end
|
@@ -2411,6 +2413,7 @@ module Google
|
|
2411
2413
|
|
2412
2414
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
2413
2415
|
|
2416
|
+
property :flex_start, as: 'flexStart'
|
2414
2417
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
2415
2418
|
|
2416
2419
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
@@ -3246,6 +3249,7 @@ module Google
|
|
3246
3249
|
property :etag, as: 'etag'
|
3247
3250
|
property :fast_socket, as: 'fastSocket', class: Google::Apis::ContainerV1::FastSocket, decorator: Google::Apis::ContainerV1::FastSocket::Representation
|
3248
3251
|
|
3252
|
+
property :flex_start, as: 'flexStart'
|
3249
3253
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1::GcfsConfig, decorator: Google::Apis::ContainerV1::GcfsConfig::Representation
|
3250
3254
|
|
3251
3255
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1::VirtualNic, decorator: Google::Apis::ContainerV1::VirtualNic::Representation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.93.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-04-20 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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-container_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.93.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|