google-apis-container_v1 0.80.0 → 0.81.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: bd22b8159224beacdf11440b41150962dd5a5c9df0f3bfbf3a0a4954625e09fb
|
4
|
+
data.tar.gz: b82cc5284072aa9f840b649e68f7878d25fcee51325b8a87ee242b54a0c548f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec6202a85957ebb86c629208b6db2da3b16c3a831823f1ea7bac5c8408778650f3db7ddc7e6a23d00edaffc0ac02bd54cb34a90b5f9959584a645e3aa67e06a0
|
7
|
+
data.tar.gz: ee24fee2917c770c7917f4b95ab2b01eb9786d28f3102e4ad2ba693893913a17e25b1d17b0d956fff124150b120f7cc2ad5e9113f204a86b86252510f116d468
|
data/CHANGELOG.md
CHANGED
@@ -1351,6 +1351,12 @@ module Google
|
|
1351
1351
|
# @return [String]
|
1352
1352
|
attr_accessor :tpu_ipv4_cidr_block
|
1353
1353
|
|
1354
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
1355
|
+
# signing certs and token that are used for communication within cluster.
|
1356
|
+
# Corresponds to the JSON property `userManagedKeysConfig`
|
1357
|
+
# @return [Google::Apis::ContainerV1::UserManagedKeysConfig]
|
1358
|
+
attr_accessor :user_managed_keys_config
|
1359
|
+
|
1354
1360
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
1355
1361
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
1356
1362
|
# controlled by it.
|
@@ -1446,6 +1452,7 @@ module Google
|
|
1446
1452
|
@status_message = args[:status_message] if args.key?(:status_message)
|
1447
1453
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
1448
1454
|
@tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
|
1455
|
+
@user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
|
1449
1456
|
@vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
|
1450
1457
|
@workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
|
1451
1458
|
@zone = args[:zone] if args.key?(:zone)
|
@@ -1894,6 +1901,12 @@ module Google
|
|
1894
1901
|
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
1895
1902
|
attr_accessor :removed_additional_pod_ranges_config
|
1896
1903
|
|
1904
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
1905
|
+
# signing certs and token that are used for communication within cluster.
|
1906
|
+
# Corresponds to the JSON property `userManagedKeysConfig`
|
1907
|
+
# @return [Google::Apis::ContainerV1::UserManagedKeysConfig]
|
1908
|
+
attr_accessor :user_managed_keys_config
|
1909
|
+
|
1897
1910
|
def initialize(**args)
|
1898
1911
|
update!(**args)
|
1899
1912
|
end
|
@@ -1960,6 +1973,7 @@ module Google
|
|
1960
1973
|
@enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
|
1961
1974
|
@etag = args[:etag] if args.key?(:etag)
|
1962
1975
|
@removed_additional_pod_ranges_config = args[:removed_additional_pod_ranges_config] if args.key?(:removed_additional_pod_ranges_config)
|
1976
|
+
@user_managed_keys_config = args[:user_managed_keys_config] if args.key?(:user_managed_keys_config)
|
1963
1977
|
end
|
1964
1978
|
end
|
1965
1979
|
|
@@ -4151,6 +4165,14 @@ module Google
|
|
4151
4165
|
# @return [String]
|
4152
4166
|
attr_accessor :disk_type
|
4153
4167
|
|
4168
|
+
# Output only. effective_cgroup_mode is the cgroup mode actually used by the
|
4169
|
+
# node pool. It is determined by the cgroup mode specified in the
|
4170
|
+
# LinuxNodeConfig or the default cgroup mode based on the cluster creation
|
4171
|
+
# version.
|
4172
|
+
# Corresponds to the JSON property `effectiveCgroupMode`
|
4173
|
+
# @return [String]
|
4174
|
+
attr_accessor :effective_cgroup_mode
|
4175
|
+
|
4154
4176
|
# Optional. Reserved for future use.
|
4155
4177
|
# Corresponds to the JSON property `enableConfidentialStorage`
|
4156
4178
|
# @return [Boolean]
|
@@ -4398,6 +4420,7 @@ module Google
|
|
4398
4420
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
4399
4421
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
4400
4422
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
4423
|
+
@effective_cgroup_mode = args[:effective_cgroup_mode] if args.key?(:effective_cgroup_mode)
|
4401
4424
|
@enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
|
4402
4425
|
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
4403
4426
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
@@ -7805,6 +7828,78 @@ module Google
|
|
7805
7828
|
end
|
7806
7829
|
end
|
7807
7830
|
|
7831
|
+
# UserManagedKeysConfig holds the resource address to Keys which are used for
|
7832
|
+
# signing certs and token that are used for communication within cluster.
|
7833
|
+
class UserManagedKeysConfig
|
7834
|
+
include Google::Apis::Core::Hashable
|
7835
|
+
|
7836
|
+
# The Certificate Authority Service caPool to use for the aggregation CA in this
|
7837
|
+
# cluster.
|
7838
|
+
# Corresponds to the JSON property `aggregationCa`
|
7839
|
+
# @return [String]
|
7840
|
+
attr_accessor :aggregation_ca
|
7841
|
+
|
7842
|
+
# The Certificate Authority Service caPool to use for the cluster CA in this
|
7843
|
+
# cluster.
|
7844
|
+
# Corresponds to the JSON property `clusterCa`
|
7845
|
+
# @return [String]
|
7846
|
+
attr_accessor :cluster_ca
|
7847
|
+
|
7848
|
+
# The Cloud KMS cryptoKey to use for Confidential Hyperdisk on the control plane
|
7849
|
+
# nodes.
|
7850
|
+
# Corresponds to the JSON property `controlPlaneDiskEncryptionKey`
|
7851
|
+
# @return [String]
|
7852
|
+
attr_accessor :control_plane_disk_encryption_key
|
7853
|
+
|
7854
|
+
# Resource path of the Certificate Authority Service caPool to use for the etcd
|
7855
|
+
# API CA in this cluster.
|
7856
|
+
# Corresponds to the JSON property `etcdApiCa`
|
7857
|
+
# @return [String]
|
7858
|
+
attr_accessor :etcd_api_ca
|
7859
|
+
|
7860
|
+
# Resource path of the Certificate Authority Service caPool to use for the etcd
|
7861
|
+
# peer CA in this cluster.
|
7862
|
+
# Corresponds to the JSON property `etcdPeerCa`
|
7863
|
+
# @return [String]
|
7864
|
+
attr_accessor :etcd_peer_ca
|
7865
|
+
|
7866
|
+
# Resource path of the Cloud KMS cryptoKey to use for encryption of internal
|
7867
|
+
# etcd backups.
|
7868
|
+
# Corresponds to the JSON property `gkeopsEtcdBackupEncryptionKey`
|
7869
|
+
# @return [String]
|
7870
|
+
attr_accessor :gkeops_etcd_backup_encryption_key
|
7871
|
+
|
7872
|
+
# The Cloud KMS cryptoKeyVersions to use for signing service account JWTs issued
|
7873
|
+
# by this cluster. Format: `projects/`project`/locations/`location`/keyRings/`
|
7874
|
+
# keyring`/cryptoKeys/`cryptoKey`/cryptoKeyVersions/`cryptoKeyVersion``
|
7875
|
+
# Corresponds to the JSON property `serviceAccountSigningKeys`
|
7876
|
+
# @return [Array<String>]
|
7877
|
+
attr_accessor :service_account_signing_keys
|
7878
|
+
|
7879
|
+
# The Cloud KMS cryptoKeyVersions to use for verifying service account JWTs
|
7880
|
+
# issued by this cluster. Format: `projects/`project`/locations/`location`/
|
7881
|
+
# keyRings/`keyring`/cryptoKeys/`cryptoKey`/cryptoKeyVersions/`cryptoKeyVersion``
|
7882
|
+
# Corresponds to the JSON property `serviceAccountVerificationKeys`
|
7883
|
+
# @return [Array<String>]
|
7884
|
+
attr_accessor :service_account_verification_keys
|
7885
|
+
|
7886
|
+
def initialize(**args)
|
7887
|
+
update!(**args)
|
7888
|
+
end
|
7889
|
+
|
7890
|
+
# Update properties of this object
|
7891
|
+
def update!(**args)
|
7892
|
+
@aggregation_ca = args[:aggregation_ca] if args.key?(:aggregation_ca)
|
7893
|
+
@cluster_ca = args[:cluster_ca] if args.key?(:cluster_ca)
|
7894
|
+
@control_plane_disk_encryption_key = args[:control_plane_disk_encryption_key] if args.key?(:control_plane_disk_encryption_key)
|
7895
|
+
@etcd_api_ca = args[:etcd_api_ca] if args.key?(:etcd_api_ca)
|
7896
|
+
@etcd_peer_ca = args[:etcd_peer_ca] if args.key?(:etcd_peer_ca)
|
7897
|
+
@gkeops_etcd_backup_encryption_key = args[:gkeops_etcd_backup_encryption_key] if args.key?(:gkeops_etcd_backup_encryption_key)
|
7898
|
+
@service_account_signing_keys = args[:service_account_signing_keys] if args.key?(:service_account_signing_keys)
|
7899
|
+
@service_account_verification_keys = args[:service_account_verification_keys] if args.key?(:service_account_verification_keys)
|
7900
|
+
end
|
7901
|
+
end
|
7902
|
+
|
7808
7903
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
7809
7904
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
7810
7905
|
# controlled by it.
|
@@ -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.81.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240912"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1072,6 +1072,12 @@ module Google
|
|
1072
1072
|
include Google::Apis::Core::JsonObjectSupport
|
1073
1073
|
end
|
1074
1074
|
|
1075
|
+
class UserManagedKeysConfig
|
1076
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
|
+
|
1078
|
+
include Google::Apis::Core::JsonObjectSupport
|
1079
|
+
end
|
1080
|
+
|
1075
1081
|
class VerticalPodAutoscaling
|
1076
1082
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1077
1083
|
|
@@ -1460,6 +1466,8 @@ module Google
|
|
1460
1466
|
property :status_message, as: 'statusMessage'
|
1461
1467
|
property :subnetwork, as: 'subnetwork'
|
1462
1468
|
property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
|
1469
|
+
property :user_managed_keys_config, as: 'userManagedKeysConfig', class: Google::Apis::ContainerV1::UserManagedKeysConfig, decorator: Google::Apis::ContainerV1::UserManagedKeysConfig::Representation
|
1470
|
+
|
1463
1471
|
property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1::VerticalPodAutoscaling::Representation
|
1464
1472
|
|
1465
1473
|
property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
|
@@ -1595,6 +1603,8 @@ module Google
|
|
1595
1603
|
property :etag, as: 'etag'
|
1596
1604
|
property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1::AdditionalPodRangesConfig::Representation
|
1597
1605
|
|
1606
|
+
property :user_managed_keys_config, as: 'userManagedKeysConfig', class: Google::Apis::ContainerV1::UserManagedKeysConfig, decorator: Google::Apis::ContainerV1::UserManagedKeysConfig::Representation
|
1607
|
+
|
1598
1608
|
end
|
1599
1609
|
end
|
1600
1610
|
|
@@ -2234,6 +2244,7 @@ module Google
|
|
2234
2244
|
|
2235
2245
|
property :disk_size_gb, as: 'diskSizeGb'
|
2236
2246
|
property :disk_type, as: 'diskType'
|
2247
|
+
property :effective_cgroup_mode, as: 'effectiveCgroupMode'
|
2237
2248
|
property :enable_confidential_storage, as: 'enableConfidentialStorage'
|
2238
2249
|
property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig::Representation
|
2239
2250
|
|
@@ -3128,6 +3139,20 @@ module Google
|
|
3128
3139
|
end
|
3129
3140
|
end
|
3130
3141
|
|
3142
|
+
class UserManagedKeysConfig
|
3143
|
+
# @private
|
3144
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3145
|
+
property :aggregation_ca, as: 'aggregationCa'
|
3146
|
+
property :cluster_ca, as: 'clusterCa'
|
3147
|
+
property :control_plane_disk_encryption_key, as: 'controlPlaneDiskEncryptionKey'
|
3148
|
+
property :etcd_api_ca, as: 'etcdApiCa'
|
3149
|
+
property :etcd_peer_ca, as: 'etcdPeerCa'
|
3150
|
+
property :gkeops_etcd_backup_encryption_key, as: 'gkeopsEtcdBackupEncryptionKey'
|
3151
|
+
collection :service_account_signing_keys, as: 'serviceAccountSigningKeys'
|
3152
|
+
collection :service_account_verification_keys, as: 'serviceAccountVerificationKeys'
|
3153
|
+
end
|
3154
|
+
end
|
3155
|
+
|
3131
3156
|
class VerticalPodAutoscaling
|
3132
3157
|
# @private
|
3133
3158
|
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.81.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-10-06 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.81.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: []
|