google-apis-container_v1 0.79.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
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1
|
2
2
|
|
3
|
+
### v0.81.0 (2024-10-06)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240912
|
6
|
+
|
7
|
+
### v0.80.0 (2024-09-22)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240905
|
10
|
+
|
3
11
|
### v0.79.0 (2024-09-15)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240814
|
@@ -106,6 +106,12 @@ module Google
|
|
106
106
|
# @return [Google::Apis::ContainerV1::MaxPodsConstraint]
|
107
107
|
attr_accessor :max_pods_per_node
|
108
108
|
|
109
|
+
# The name of the network attachment for pods to communicate to; cannot be
|
110
|
+
# specified along with subnetwork or secondary_pod_range.
|
111
|
+
# Corresponds to the JSON property `networkAttachment`
|
112
|
+
# @return [String]
|
113
|
+
attr_accessor :network_attachment
|
114
|
+
|
109
115
|
# The name of the secondary range on the subnet which provides IP address for
|
110
116
|
# this pod range.
|
111
117
|
# Corresponds to the JSON property `secondaryPodRange`
|
@@ -124,6 +130,7 @@ module Google
|
|
124
130
|
# Update properties of this object
|
125
131
|
def update!(**args)
|
126
132
|
@max_pods_per_node = args[:max_pods_per_node] if args.key?(:max_pods_per_node)
|
133
|
+
@network_attachment = args[:network_attachment] if args.key?(:network_attachment)
|
127
134
|
@secondary_pod_range = args[:secondary_pod_range] if args.key?(:secondary_pod_range)
|
128
135
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
129
136
|
end
|
@@ -1344,6 +1351,12 @@ module Google
|
|
1344
1351
|
# @return [String]
|
1345
1352
|
attr_accessor :tpu_ipv4_cidr_block
|
1346
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
|
+
|
1347
1360
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
1348
1361
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
1349
1362
|
# controlled by it.
|
@@ -1439,6 +1452,7 @@ module Google
|
|
1439
1452
|
@status_message = args[:status_message] if args.key?(:status_message)
|
1440
1453
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
1441
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)
|
1442
1456
|
@vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
|
1443
1457
|
@workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
|
1444
1458
|
@zone = args[:zone] if args.key?(:zone)
|
@@ -1887,6 +1901,12 @@ module Google
|
|
1887
1901
|
# @return [Google::Apis::ContainerV1::AdditionalPodRangesConfig]
|
1888
1902
|
attr_accessor :removed_additional_pod_ranges_config
|
1889
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
|
+
|
1890
1910
|
def initialize(**args)
|
1891
1911
|
update!(**args)
|
1892
1912
|
end
|
@@ -1953,6 +1973,7 @@ module Google
|
|
1953
1973
|
@enable_k8s_beta_apis = args[:enable_k8s_beta_apis] if args.key?(:enable_k8s_beta_apis)
|
1954
1974
|
@etag = args[:etag] if args.key?(:etag)
|
1955
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)
|
1956
1977
|
end
|
1957
1978
|
end
|
1958
1979
|
|
@@ -4144,6 +4165,14 @@ module Google
|
|
4144
4165
|
# @return [String]
|
4145
4166
|
attr_accessor :disk_type
|
4146
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
|
+
|
4147
4176
|
# Optional. Reserved for future use.
|
4148
4177
|
# Corresponds to the JSON property `enableConfidentialStorage`
|
4149
4178
|
# @return [Boolean]
|
@@ -4391,6 +4420,7 @@ module Google
|
|
4391
4420
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
4392
4421
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
4393
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)
|
4394
4424
|
@enable_confidential_storage = args[:enable_confidential_storage] if args.key?(:enable_confidential_storage)
|
4395
4425
|
@ephemeral_storage_local_ssd_config = args[:ephemeral_storage_local_ssd_config] if args.key?(:ephemeral_storage_local_ssd_config)
|
4396
4426
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
@@ -7798,6 +7828,78 @@ module Google
|
|
7798
7828
|
end
|
7799
7829
|
end
|
7800
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
|
+
|
7801
7903
|
# VerticalPodAutoscaling contains global, per-cluster information required by
|
7802
7904
|
# Vertical Pod Autoscaler to automatically adjust the resources of pods
|
7803
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
|
|
@@ -1134,6 +1140,7 @@ module Google
|
|
1134
1140
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1135
1141
|
property :max_pods_per_node, as: 'maxPodsPerNode', class: Google::Apis::ContainerV1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1::MaxPodsConstraint::Representation
|
1136
1142
|
|
1143
|
+
property :network_attachment, as: 'networkAttachment'
|
1137
1144
|
property :secondary_pod_range, as: 'secondaryPodRange'
|
1138
1145
|
property :subnetwork, as: 'subnetwork'
|
1139
1146
|
end
|
@@ -1459,6 +1466,8 @@ module Google
|
|
1459
1466
|
property :status_message, as: 'statusMessage'
|
1460
1467
|
property :subnetwork, as: 'subnetwork'
|
1461
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
|
+
|
1462
1471
|
property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1::VerticalPodAutoscaling::Representation
|
1463
1472
|
|
1464
1473
|
property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1::WorkloadIdentityConfig::Representation
|
@@ -1594,6 +1603,8 @@ module Google
|
|
1594
1603
|
property :etag, as: 'etag'
|
1595
1604
|
property :removed_additional_pod_ranges_config, as: 'removedAdditionalPodRangesConfig', class: Google::Apis::ContainerV1::AdditionalPodRangesConfig, decorator: Google::Apis::ContainerV1::AdditionalPodRangesConfig::Representation
|
1596
1605
|
|
1606
|
+
property :user_managed_keys_config, as: 'userManagedKeysConfig', class: Google::Apis::ContainerV1::UserManagedKeysConfig, decorator: Google::Apis::ContainerV1::UserManagedKeysConfig::Representation
|
1607
|
+
|
1597
1608
|
end
|
1598
1609
|
end
|
1599
1610
|
|
@@ -2233,6 +2244,7 @@ module Google
|
|
2233
2244
|
|
2234
2245
|
property :disk_size_gb, as: 'diskSizeGb'
|
2235
2246
|
property :disk_type, as: 'diskType'
|
2247
|
+
property :effective_cgroup_mode, as: 'effectiveCgroupMode'
|
2236
2248
|
property :enable_confidential_storage, as: 'enableConfidentialStorage'
|
2237
2249
|
property :ephemeral_storage_local_ssd_config, as: 'ephemeralStorageLocalSsdConfig', class: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig, decorator: Google::Apis::ContainerV1::EphemeralStorageLocalSsdConfig::Representation
|
2238
2250
|
|
@@ -3127,6 +3139,20 @@ module Google
|
|
3127
3139
|
end
|
3128
3140
|
end
|
3129
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
|
+
|
3130
3156
|
class VerticalPodAutoscaling
|
3131
3157
|
# @private
|
3132
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: []
|