google-apis-container_v1 0.107.0 → 0.109.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: e368e4cfb0058f5cc62e005ef9abc18f145d3aebb58497ae2b514beb72f03da9
|
|
4
|
+
data.tar.gz: f00fdcc3efad0b68efb2b6a75b5d3612298acaf6217067d4d66c07d74773dbd8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2aa0c349d46f8f67a24fb072e2d5e69e9d7407ee0751dac5361e5bf7ca91d68b630db20698fe70039f97e934ab4f01f4e621ce662cd05464a6a1112e19b334eb
|
|
7
|
+
data.tar.gz: f933f2d69ff7d0c73e45e8172a413bb1522c613964b66175b3b853f8b67091ffa7f4e7a6edf2db50a052c3536a96dafbafd6ae4c9a4493b14b6378c86f64e828
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1
|
|
2
2
|
|
|
3
|
+
### v0.109.0 (2025-11-16)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251104
|
|
6
|
+
|
|
7
|
+
### v0.108.0 (2025-11-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251028
|
|
10
|
+
|
|
3
11
|
### v0.107.0 (2025-11-02)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251021
|
|
@@ -1008,6 +1008,55 @@ module Google
|
|
|
1008
1008
|
end
|
|
1009
1009
|
end
|
|
1010
1010
|
|
|
1011
|
+
# CertificateConfig configures certificate for the registry.
|
|
1012
|
+
class CertificateConfig
|
|
1013
|
+
include Google::Apis::Core::Hashable
|
|
1014
|
+
|
|
1015
|
+
# The URI configures a secret from [Secret Manager](https://cloud.google.com/
|
|
1016
|
+
# secret-manager) in the format "projects/$PROJECT_ID/secrets/$SECRET_NAME/
|
|
1017
|
+
# versions/$VERSION" for global secret or "projects/$PROJECT_ID/locations/$
|
|
1018
|
+
# REGION/secrets/$SECRET_NAME/versions/$VERSION" for regional secret. Version
|
|
1019
|
+
# can be fixed (e.g. "2") or "latest"
|
|
1020
|
+
# Corresponds to the JSON property `gcpSecretManagerSecretUri`
|
|
1021
|
+
# @return [String]
|
|
1022
|
+
attr_accessor :gcp_secret_manager_secret_uri
|
|
1023
|
+
|
|
1024
|
+
def initialize(**args)
|
|
1025
|
+
update!(**args)
|
|
1026
|
+
end
|
|
1027
|
+
|
|
1028
|
+
# Update properties of this object
|
|
1029
|
+
def update!(**args)
|
|
1030
|
+
@gcp_secret_manager_secret_uri = args[:gcp_secret_manager_secret_uri] if args.key?(:gcp_secret_manager_secret_uri)
|
|
1031
|
+
end
|
|
1032
|
+
end
|
|
1033
|
+
|
|
1034
|
+
# CertificateConfigPair configures pairs of certificates, which is used for
|
|
1035
|
+
# client certificate and key pairs under a registry.
|
|
1036
|
+
class CertificateConfigPair
|
|
1037
|
+
include Google::Apis::Core::Hashable
|
|
1038
|
+
|
|
1039
|
+
# CertificateConfig configures certificate for the registry.
|
|
1040
|
+
# Corresponds to the JSON property `cert`
|
|
1041
|
+
# @return [Google::Apis::ContainerV1::CertificateConfig]
|
|
1042
|
+
attr_accessor :cert
|
|
1043
|
+
|
|
1044
|
+
# CertificateConfig configures certificate for the registry.
|
|
1045
|
+
# Corresponds to the JSON property `key`
|
|
1046
|
+
# @return [Google::Apis::ContainerV1::CertificateConfig]
|
|
1047
|
+
attr_accessor :key
|
|
1048
|
+
|
|
1049
|
+
def initialize(**args)
|
|
1050
|
+
update!(**args)
|
|
1051
|
+
end
|
|
1052
|
+
|
|
1053
|
+
# Update properties of this object
|
|
1054
|
+
def update!(**args)
|
|
1055
|
+
@cert = args[:cert] if args.key?(:cert)
|
|
1056
|
+
@key = args[:key] if args.key?(:key)
|
|
1057
|
+
end
|
|
1058
|
+
end
|
|
1059
|
+
|
|
1011
1060
|
# CheckAutopilotCompatibilityResponse has a list of compatibility issues.
|
|
1012
1061
|
class CheckAutopilotCompatibilityResponse
|
|
1013
1062
|
include Google::Apis::Core::Hashable
|
|
@@ -2134,6 +2183,12 @@ module Google
|
|
|
2134
2183
|
# @return [String]
|
|
2135
2184
|
attr_accessor :desired_private_ipv6_google_access
|
|
2136
2185
|
|
|
2186
|
+
# PrivilegedAdmissionConfig stores the list of authorized allowlist paths for
|
|
2187
|
+
# the cluster.
|
|
2188
|
+
# Corresponds to the JSON property `desiredPrivilegedAdmissionConfig`
|
|
2189
|
+
# @return [Google::Apis::ContainerV1::PrivilegedAdmissionConfig]
|
|
2190
|
+
attr_accessor :desired_privileged_admission_config
|
|
2191
|
+
|
|
2137
2192
|
# RBACBindingConfig allows user to restrict ClusterRoleBindings an RoleBindings
|
|
2138
2193
|
# that can be created.
|
|
2139
2194
|
# Corresponds to the JSON property `desiredRbacBindingConfig`
|
|
@@ -2291,6 +2346,7 @@ module Google
|
|
|
2291
2346
|
@desired_pod_autoscaling = args[:desired_pod_autoscaling] if args.key?(:desired_pod_autoscaling)
|
|
2292
2347
|
@desired_private_cluster_config = args[:desired_private_cluster_config] if args.key?(:desired_private_cluster_config)
|
|
2293
2348
|
@desired_private_ipv6_google_access = args[:desired_private_ipv6_google_access] if args.key?(:desired_private_ipv6_google_access)
|
|
2349
|
+
@desired_privileged_admission_config = args[:desired_privileged_admission_config] if args.key?(:desired_privileged_admission_config)
|
|
2294
2350
|
@desired_rbac_binding_config = args[:desired_rbac_binding_config] if args.key?(:desired_rbac_binding_config)
|
|
2295
2351
|
@desired_release_channel = args[:desired_release_channel] if args.key?(:desired_release_channel)
|
|
2296
2352
|
@desired_resource_usage_export_config = args[:desired_resource_usage_export_config] if args.key?(:desired_resource_usage_export_config)
|
|
@@ -2545,6 +2601,13 @@ module Google
|
|
|
2545
2601
|
# @return [Google::Apis::ContainerV1::PrivateRegistryAccessConfig]
|
|
2546
2602
|
attr_accessor :private_registry_access_config
|
|
2547
2603
|
|
|
2604
|
+
# RegistryHostConfig configures containerd registry host configuration. Each
|
|
2605
|
+
# registry_hosts represents a hosts.toml file. At most 25 registry_hosts are
|
|
2606
|
+
# allowed.
|
|
2607
|
+
# Corresponds to the JSON property `registryHosts`
|
|
2608
|
+
# @return [Array<Google::Apis::ContainerV1::RegistryHostConfig>]
|
|
2609
|
+
attr_accessor :registry_hosts
|
|
2610
|
+
|
|
2548
2611
|
# Defines writable cgroups configuration.
|
|
2549
2612
|
# Corresponds to the JSON property `writableCgroups`
|
|
2550
2613
|
# @return [Google::Apis::ContainerV1::WritableCgroups]
|
|
@@ -2557,6 +2620,7 @@ module Google
|
|
|
2557
2620
|
# Update properties of this object
|
|
2558
2621
|
def update!(**args)
|
|
2559
2622
|
@private_registry_access_config = args[:private_registry_access_config] if args.key?(:private_registry_access_config)
|
|
2623
|
+
@registry_hosts = args[:registry_hosts] if args.key?(:registry_hosts)
|
|
2560
2624
|
@writable_cgroups = args[:writable_cgroups] if args.key?(:writable_cgroups)
|
|
2561
2625
|
end
|
|
2562
2626
|
end
|
|
@@ -3671,6 +3735,73 @@ module Google
|
|
|
3671
3735
|
end
|
|
3672
3736
|
end
|
|
3673
3737
|
|
|
3738
|
+
# HostConfig configures the registry host under a given Server.
|
|
3739
|
+
class HostConfig
|
|
3740
|
+
include Google::Apis::Core::Hashable
|
|
3741
|
+
|
|
3742
|
+
# CA configures the registry host certificate.
|
|
3743
|
+
# Corresponds to the JSON property `ca`
|
|
3744
|
+
# @return [Array<Google::Apis::ContainerV1::CertificateConfig>]
|
|
3745
|
+
attr_accessor :ca
|
|
3746
|
+
|
|
3747
|
+
# Capabilities represent the capabilities of the registry host, specifying what
|
|
3748
|
+
# operations a host is capable of performing. If not set, containerd enables all
|
|
3749
|
+
# capabilities by default.
|
|
3750
|
+
# Corresponds to the JSON property `capabilities`
|
|
3751
|
+
# @return [Array<String>]
|
|
3752
|
+
attr_accessor :capabilities
|
|
3753
|
+
|
|
3754
|
+
# Client configures the registry host client certificate and key.
|
|
3755
|
+
# Corresponds to the JSON property `client`
|
|
3756
|
+
# @return [Array<Google::Apis::ContainerV1::CertificateConfigPair>]
|
|
3757
|
+
attr_accessor :client
|
|
3758
|
+
|
|
3759
|
+
# Specifies the maximum duration allowed for a connection attempt to complete. A
|
|
3760
|
+
# shorter timeout helps reduce delays when falling back to the original registry
|
|
3761
|
+
# if the mirror is unreachable. Maximum allowed value is 180s. If not set,
|
|
3762
|
+
# containerd sets default 30s. The value should be a decimal number of seconds
|
|
3763
|
+
# with an `s` suffix.
|
|
3764
|
+
# Corresponds to the JSON property `dialTimeout`
|
|
3765
|
+
# @return [String]
|
|
3766
|
+
attr_accessor :dial_timeout
|
|
3767
|
+
|
|
3768
|
+
# Header configures the registry host headers.
|
|
3769
|
+
# Corresponds to the JSON property `header`
|
|
3770
|
+
# @return [Array<Google::Apis::ContainerV1::RegistryHeader>]
|
|
3771
|
+
attr_accessor :header
|
|
3772
|
+
|
|
3773
|
+
# Host configures the registry host/mirror. It supports fully qualified domain
|
|
3774
|
+
# names (FQDN) and IP addresses: Specifying port is supported. Wildcards are NOT
|
|
3775
|
+
# supported. Examples: - my.customdomain.com - 10.0.1.2:5000
|
|
3776
|
+
# Corresponds to the JSON property `host`
|
|
3777
|
+
# @return [String]
|
|
3778
|
+
attr_accessor :host
|
|
3779
|
+
|
|
3780
|
+
# OverridePath is used to indicate the host's API root endpoint is defined in
|
|
3781
|
+
# the URL path rather than by the API specification. This may be used with non-
|
|
3782
|
+
# compliant OCI registries which are missing the /v2 prefix. If not set,
|
|
3783
|
+
# containerd sets default false.
|
|
3784
|
+
# Corresponds to the JSON property `overridePath`
|
|
3785
|
+
# @return [Boolean]
|
|
3786
|
+
attr_accessor :override_path
|
|
3787
|
+
alias_method :override_path?, :override_path
|
|
3788
|
+
|
|
3789
|
+
def initialize(**args)
|
|
3790
|
+
update!(**args)
|
|
3791
|
+
end
|
|
3792
|
+
|
|
3793
|
+
# Update properties of this object
|
|
3794
|
+
def update!(**args)
|
|
3795
|
+
@ca = args[:ca] if args.key?(:ca)
|
|
3796
|
+
@capabilities = args[:capabilities] if args.key?(:capabilities)
|
|
3797
|
+
@client = args[:client] if args.key?(:client)
|
|
3798
|
+
@dial_timeout = args[:dial_timeout] if args.key?(:dial_timeout)
|
|
3799
|
+
@header = args[:header] if args.key?(:header)
|
|
3800
|
+
@host = args[:host] if args.key?(:host)
|
|
3801
|
+
@override_path = args[:override_path] if args.key?(:override_path)
|
|
3802
|
+
end
|
|
3803
|
+
end
|
|
3804
|
+
|
|
3674
3805
|
# RFC-2616: cache control support
|
|
3675
3806
|
class HttpCacheControlResponseHeader
|
|
3676
3807
|
include Google::Apis::Core::Hashable
|
|
@@ -4237,16 +4368,20 @@ module Google
|
|
|
4237
4368
|
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
|
|
4238
4369
|
# net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn
|
|
4239
4370
|
# net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.ipv4.
|
|
4240
|
-
# tcp_max_orphans net.
|
|
4241
|
-
#
|
|
4242
|
-
# netfilter.
|
|
4371
|
+
# tcp_mtu_probing net.ipv4.tcp_max_orphans net.ipv4.tcp_max_tw_buckets net.ipv4.
|
|
4372
|
+
# tcp_syn_retries net.ipv4.tcp_ecn net.ipv4.tcp_congestion_control net.netfilter.
|
|
4373
|
+
# nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.
|
|
4374
|
+
# nf_conntrack_tcp_timeout_close_wait net.netfilter.
|
|
4375
|
+
# nf_conntrack_tcp_timeout_time_wait net.netfilter.
|
|
4243
4376
|
# nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
|
|
4244
|
-
# shmmni kernel.shmmax kernel.shmall
|
|
4245
|
-
#
|
|
4246
|
-
#
|
|
4247
|
-
#
|
|
4248
|
-
#
|
|
4249
|
-
# vm.
|
|
4377
|
+
# shmmni kernel.shmmax kernel.shmall kernel.perf_event_paranoid kernel.
|
|
4378
|
+
# sched_rt_runtime_us kernel.softlockup_panic kernel.yama.ptrace_scope kernel.
|
|
4379
|
+
# kptr_restrict kernel.dmesg_restrict kernel.sysrq fs.aio-max-nr fs.file-max fs.
|
|
4380
|
+
# inotify.max_user_instances fs.inotify.max_user_watches fs.nr_open vm.
|
|
4381
|
+
# dirty_background_ratio vm.dirty_background_bytes vm.dirty_expire_centisecs vm.
|
|
4382
|
+
# dirty_ratio vm.dirty_bytes vm.dirty_writeback_centisecs vm.max_map_count vm.
|
|
4383
|
+
# overcommit_memory vm.overcommit_ratio vm.vfs_cache_pressure vm.swappiness vm.
|
|
4384
|
+
# watermark_scale_factor vm.min_free_kbytes
|
|
4250
4385
|
# Corresponds to the JSON property `sysctls`
|
|
4251
4386
|
# @return [Hash<String,String>]
|
|
4252
4387
|
attr_accessor :sysctls
|
|
@@ -4478,7 +4613,10 @@ module Google
|
|
|
4478
4613
|
# port 6988. This serves as a workaround for a port conflict with the gke-
|
|
4479
4614
|
# metadata-server. This field is required ONLY under the following conditions: 1.
|
|
4480
4615
|
# The GKE node version is older than 1.33.2-gke.4655000. 2. You're connecting
|
|
4481
|
-
# to a Lustre instance that has the 'gke-support-enabled' flag.
|
|
4616
|
+
# to a Lustre instance that has the 'gke-support-enabled' flag. Deprecated: This
|
|
4617
|
+
# flag is no longer required as of GKE node version 1.33.2-gke.4655000, unless
|
|
4618
|
+
# you are connecting to a Lustre instance that has the `gke-support-enabled`
|
|
4619
|
+
# flag.
|
|
4482
4620
|
# Corresponds to the JSON property `enableLegacyLustrePort`
|
|
4483
4621
|
# @return [Boolean]
|
|
4484
4622
|
attr_accessor :enable_legacy_lustre_port
|
|
@@ -7119,6 +7257,62 @@ module Google
|
|
|
7119
7257
|
end
|
|
7120
7258
|
end
|
|
7121
7259
|
|
|
7260
|
+
# RegistryHeader configures headers for the registry.
|
|
7261
|
+
class RegistryHeader
|
|
7262
|
+
include Google::Apis::Core::Hashable
|
|
7263
|
+
|
|
7264
|
+
# Key configures the header key.
|
|
7265
|
+
# Corresponds to the JSON property `key`
|
|
7266
|
+
# @return [String]
|
|
7267
|
+
attr_accessor :key
|
|
7268
|
+
|
|
7269
|
+
# Value configures the header value.
|
|
7270
|
+
# Corresponds to the JSON property `value`
|
|
7271
|
+
# @return [Array<String>]
|
|
7272
|
+
attr_accessor :value
|
|
7273
|
+
|
|
7274
|
+
def initialize(**args)
|
|
7275
|
+
update!(**args)
|
|
7276
|
+
end
|
|
7277
|
+
|
|
7278
|
+
# Update properties of this object
|
|
7279
|
+
def update!(**args)
|
|
7280
|
+
@key = args[:key] if args.key?(:key)
|
|
7281
|
+
@value = args[:value] if args.key?(:value)
|
|
7282
|
+
end
|
|
7283
|
+
end
|
|
7284
|
+
|
|
7285
|
+
# RegistryHostConfig configures the top-level structure for a single containerd
|
|
7286
|
+
# registry server's configuration, which represents one hosts.toml file on the
|
|
7287
|
+
# node. It will override the same fqdns in PrivateRegistryAccessConfig.
|
|
7288
|
+
class RegistryHostConfig
|
|
7289
|
+
include Google::Apis::Core::Hashable
|
|
7290
|
+
|
|
7291
|
+
# HostConfig configures a list of host-specific configurations for the server.
|
|
7292
|
+
# Each server can have at most 10 host configurations.
|
|
7293
|
+
# Corresponds to the JSON property `hosts`
|
|
7294
|
+
# @return [Array<Google::Apis::ContainerV1::HostConfig>]
|
|
7295
|
+
attr_accessor :hosts
|
|
7296
|
+
|
|
7297
|
+
# Defines the host name of the registry server, which will be used to create
|
|
7298
|
+
# configuration file as /etc/containerd/hosts.d//hosts.toml. It supports fully
|
|
7299
|
+
# qualified domain names (FQDN) and IP addresses: Specifying port is supported.
|
|
7300
|
+
# Wildcards are NOT supported. Examples: - my.customdomain.com - 10.0.1.2:5000
|
|
7301
|
+
# Corresponds to the JSON property `server`
|
|
7302
|
+
# @return [String]
|
|
7303
|
+
attr_accessor :server
|
|
7304
|
+
|
|
7305
|
+
def initialize(**args)
|
|
7306
|
+
update!(**args)
|
|
7307
|
+
end
|
|
7308
|
+
|
|
7309
|
+
# Update properties of this object
|
|
7310
|
+
def update!(**args)
|
|
7311
|
+
@hosts = args[:hosts] if args.key?(:hosts)
|
|
7312
|
+
@server = args[:server] if args.key?(:server)
|
|
7313
|
+
end
|
|
7314
|
+
end
|
|
7315
|
+
|
|
7122
7316
|
# ReleaseChannel indicates which release channel a cluster is subscribed to.
|
|
7123
7317
|
# Release channels are arranged in order of risk. When a cluster is subscribed
|
|
7124
7318
|
# to a release channel, Google maintains both the master version and the node
|
|
@@ -9492,6 +9686,12 @@ module Google
|
|
|
9492
9686
|
# @return [String]
|
|
9493
9687
|
attr_accessor :control_plane_disk_encryption_key
|
|
9494
9688
|
|
|
9689
|
+
# Output only. All of the versions of the Cloud KMS cryptoKey that are used by
|
|
9690
|
+
# Confidential Hyperdisks on the control plane nodes.
|
|
9691
|
+
# Corresponds to the JSON property `controlPlaneDiskEncryptionKeyVersions`
|
|
9692
|
+
# @return [Array<String>]
|
|
9693
|
+
attr_accessor :control_plane_disk_encryption_key_versions
|
|
9694
|
+
|
|
9495
9695
|
# Resource path of the Certificate Authority Service caPool to use for the etcd
|
|
9496
9696
|
# API CA in this cluster.
|
|
9497
9697
|
# Corresponds to the JSON property `etcdApiCa`
|
|
@@ -9533,6 +9733,7 @@ module Google
|
|
|
9533
9733
|
@aggregation_ca = args[:aggregation_ca] if args.key?(:aggregation_ca)
|
|
9534
9734
|
@cluster_ca = args[:cluster_ca] if args.key?(:cluster_ca)
|
|
9535
9735
|
@control_plane_disk_encryption_key = args[:control_plane_disk_encryption_key] if args.key?(:control_plane_disk_encryption_key)
|
|
9736
|
+
@control_plane_disk_encryption_key_versions = args[:control_plane_disk_encryption_key_versions] if args.key?(:control_plane_disk_encryption_key_versions)
|
|
9536
9737
|
@etcd_api_ca = args[:etcd_api_ca] if args.key?(:etcd_api_ca)
|
|
9537
9738
|
@etcd_peer_ca = args[:etcd_peer_ca] if args.key?(:etcd_peer_ca)
|
|
9538
9739
|
@gkeops_etcd_backup_encryption_key = args[:gkeops_etcd_backup_encryption_key] if args.key?(:gkeops_etcd_backup_encryption_key)
|
|
@@ -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.109.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251104"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -178,6 +178,18 @@ module Google
|
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
179
179
|
end
|
|
180
180
|
|
|
181
|
+
class CertificateConfig
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
class CertificateConfigPair
|
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
189
|
+
|
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
191
|
+
end
|
|
192
|
+
|
|
181
193
|
class CheckAutopilotCompatibilityResponse
|
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
195
|
|
|
@@ -496,6 +508,12 @@ module Google
|
|
|
496
508
|
include Google::Apis::Core::JsonObjectSupport
|
|
497
509
|
end
|
|
498
510
|
|
|
511
|
+
class HostConfig
|
|
512
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
513
|
+
|
|
514
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
515
|
+
end
|
|
516
|
+
|
|
499
517
|
class HttpCacheControlResponseHeader
|
|
500
518
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
501
519
|
|
|
@@ -958,6 +976,18 @@ module Google
|
|
|
958
976
|
include Google::Apis::Core::JsonObjectSupport
|
|
959
977
|
end
|
|
960
978
|
|
|
979
|
+
class RegistryHeader
|
|
980
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
981
|
+
|
|
982
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
983
|
+
end
|
|
984
|
+
|
|
985
|
+
class RegistryHostConfig
|
|
986
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
987
|
+
|
|
988
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
989
|
+
end
|
|
990
|
+
|
|
961
991
|
class ReleaseChannel
|
|
962
992
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
963
993
|
|
|
@@ -1579,6 +1609,23 @@ module Google
|
|
|
1579
1609
|
end
|
|
1580
1610
|
end
|
|
1581
1611
|
|
|
1612
|
+
class CertificateConfig
|
|
1613
|
+
# @private
|
|
1614
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1615
|
+
property :gcp_secret_manager_secret_uri, as: 'gcpSecretManagerSecretUri'
|
|
1616
|
+
end
|
|
1617
|
+
end
|
|
1618
|
+
|
|
1619
|
+
class CertificateConfigPair
|
|
1620
|
+
# @private
|
|
1621
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1622
|
+
property :cert, as: 'cert', class: Google::Apis::ContainerV1::CertificateConfig, decorator: Google::Apis::ContainerV1::CertificateConfig::Representation
|
|
1623
|
+
|
|
1624
|
+
property :key, as: 'key', class: Google::Apis::ContainerV1::CertificateConfig, decorator: Google::Apis::ContainerV1::CertificateConfig::Representation
|
|
1625
|
+
|
|
1626
|
+
end
|
|
1627
|
+
end
|
|
1628
|
+
|
|
1582
1629
|
class CheckAutopilotCompatibilityResponse
|
|
1583
1630
|
# @private
|
|
1584
1631
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1864,6 +1911,8 @@ module Google
|
|
|
1864
1911
|
property :desired_private_cluster_config, as: 'desiredPrivateClusterConfig', class: Google::Apis::ContainerV1::PrivateClusterConfig, decorator: Google::Apis::ContainerV1::PrivateClusterConfig::Representation
|
|
1865
1912
|
|
|
1866
1913
|
property :desired_private_ipv6_google_access, as: 'desiredPrivateIpv6GoogleAccess'
|
|
1914
|
+
property :desired_privileged_admission_config, as: 'desiredPrivilegedAdmissionConfig', class: Google::Apis::ContainerV1::PrivilegedAdmissionConfig, decorator: Google::Apis::ContainerV1::PrivilegedAdmissionConfig::Representation
|
|
1915
|
+
|
|
1867
1916
|
property :desired_rbac_binding_config, as: 'desiredRbacBindingConfig', class: Google::Apis::ContainerV1::RbacBindingConfig, decorator: Google::Apis::ContainerV1::RbacBindingConfig::Representation
|
|
1868
1917
|
|
|
1869
1918
|
property :desired_release_channel, as: 'desiredReleaseChannel', class: Google::Apis::ContainerV1::ReleaseChannel, decorator: Google::Apis::ContainerV1::ReleaseChannel::Representation
|
|
@@ -1970,6 +2019,8 @@ module Google
|
|
|
1970
2019
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1971
2020
|
property :private_registry_access_config, as: 'privateRegistryAccessConfig', class: Google::Apis::ContainerV1::PrivateRegistryAccessConfig, decorator: Google::Apis::ContainerV1::PrivateRegistryAccessConfig::Representation
|
|
1972
2021
|
|
|
2022
|
+
collection :registry_hosts, as: 'registryHosts', class: Google::Apis::ContainerV1::RegistryHostConfig, decorator: Google::Apis::ContainerV1::RegistryHostConfig::Representation
|
|
2023
|
+
|
|
1973
2024
|
property :writable_cgroups, as: 'writableCgroups', class: Google::Apis::ContainerV1::WritableCgroups, decorator: Google::Apis::ContainerV1::WritableCgroups::Representation
|
|
1974
2025
|
|
|
1975
2026
|
end
|
|
@@ -2283,6 +2334,22 @@ module Google
|
|
|
2283
2334
|
end
|
|
2284
2335
|
end
|
|
2285
2336
|
|
|
2337
|
+
class HostConfig
|
|
2338
|
+
# @private
|
|
2339
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2340
|
+
collection :ca, as: 'ca', class: Google::Apis::ContainerV1::CertificateConfig, decorator: Google::Apis::ContainerV1::CertificateConfig::Representation
|
|
2341
|
+
|
|
2342
|
+
collection :capabilities, as: 'capabilities'
|
|
2343
|
+
collection :client, as: 'client', class: Google::Apis::ContainerV1::CertificateConfigPair, decorator: Google::Apis::ContainerV1::CertificateConfigPair::Representation
|
|
2344
|
+
|
|
2345
|
+
property :dial_timeout, as: 'dialTimeout'
|
|
2346
|
+
collection :header, as: 'header', class: Google::Apis::ContainerV1::RegistryHeader, decorator: Google::Apis::ContainerV1::RegistryHeader::Representation
|
|
2347
|
+
|
|
2348
|
+
property :host, as: 'host'
|
|
2349
|
+
property :override_path, as: 'overridePath'
|
|
2350
|
+
end
|
|
2351
|
+
end
|
|
2352
|
+
|
|
2286
2353
|
class HttpCacheControlResponseHeader
|
|
2287
2354
|
# @private
|
|
2288
2355
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3159,6 +3226,23 @@ module Google
|
|
|
3159
3226
|
end
|
|
3160
3227
|
end
|
|
3161
3228
|
|
|
3229
|
+
class RegistryHeader
|
|
3230
|
+
# @private
|
|
3231
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3232
|
+
property :key, as: 'key'
|
|
3233
|
+
collection :value, as: 'value'
|
|
3234
|
+
end
|
|
3235
|
+
end
|
|
3236
|
+
|
|
3237
|
+
class RegistryHostConfig
|
|
3238
|
+
# @private
|
|
3239
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3240
|
+
collection :hosts, as: 'hosts', class: Google::Apis::ContainerV1::HostConfig, decorator: Google::Apis::ContainerV1::HostConfig::Representation
|
|
3241
|
+
|
|
3242
|
+
property :server, as: 'server'
|
|
3243
|
+
end
|
|
3244
|
+
end
|
|
3245
|
+
|
|
3162
3246
|
class ReleaseChannel
|
|
3163
3247
|
# @private
|
|
3164
3248
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3727,6 +3811,7 @@ module Google
|
|
|
3727
3811
|
property :aggregation_ca, as: 'aggregationCa'
|
|
3728
3812
|
property :cluster_ca, as: 'clusterCa'
|
|
3729
3813
|
property :control_plane_disk_encryption_key, as: 'controlPlaneDiskEncryptionKey'
|
|
3814
|
+
collection :control_plane_disk_encryption_key_versions, as: 'controlPlaneDiskEncryptionKeyVersions'
|
|
3730
3815
|
property :etcd_api_ca, as: 'etcdApiCa'
|
|
3731
3816
|
property :etcd_peer_ca, as: 'etcdPeerCa'
|
|
3732
3817
|
property :gkeops_etcd_backup_encryption_key, as: 'gkeopsEtcdBackupEncryptionKey'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.109.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -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.109.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:
|