google-apis-container_v1 0.110.0 → 0.112.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: 835ca2595a99cee38ad0dee18250e3a8f2ea1b88515f3255868b1359a580c5cf
|
|
4
|
+
data.tar.gz: 872f6142817dec1a025b810767c8eff278a1e01d19a260272a878b258361e48d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ccc4312c67d2a2f3904911269a8932d8119285860ff34860746beb4777deadf508b86ce65ab33f065fa0956f6ba3ed9576fc87b3cb455c0d045ab1c77331e71
|
|
7
|
+
data.tar.gz: a3970c07f6d1e68c4e99fa0215c8878d88f16c7c2fbe2c589bf6040906350c5031a3589837c2ba23ed87a6e7cd21b4c2de7cab2bb07268de4ac87938e8b1e39e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-container_v1
|
|
2
2
|
|
|
3
|
+
### v0.112.0 (2026-01-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260113
|
|
6
|
+
|
|
7
|
+
### v0.111.0 (2025-12-14)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251202
|
|
10
|
+
|
|
3
11
|
### v0.110.0 (2025-12-07)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251125
|
|
@@ -81,6 +81,11 @@ module Google
|
|
|
81
81
|
# @return [Array<String>]
|
|
82
82
|
attr_accessor :pod_ipv4_range_names
|
|
83
83
|
|
|
84
|
+
# Draining status of the additional subnet.
|
|
85
|
+
# Corresponds to the JSON property `status`
|
|
86
|
+
# @return [String]
|
|
87
|
+
attr_accessor :status
|
|
88
|
+
|
|
84
89
|
# Name of the subnetwork. This can be the full path of the subnetwork or just
|
|
85
90
|
# the name. Example1: my-subnet Example2: projects/gke-project/regions/us-
|
|
86
91
|
# central1/subnetworks/my-subnet
|
|
@@ -95,6 +100,7 @@ module Google
|
|
|
95
100
|
# Update properties of this object
|
|
96
101
|
def update!(**args)
|
|
97
102
|
@pod_ipv4_range_names = args[:pod_ipv4_range_names] if args.key?(:pod_ipv4_range_names)
|
|
103
|
+
@status = args[:status] if args.key?(:status)
|
|
98
104
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
|
99
105
|
end
|
|
100
106
|
end
|
|
@@ -1198,7 +1204,7 @@ module Google
|
|
|
1198
1204
|
# @return [Google::Apis::ContainerV1::BinaryAuthorization]
|
|
1199
1205
|
attr_accessor :binary_authorization
|
|
1200
1206
|
|
|
1201
|
-
# The IP address range of the container pods in this cluster, in [CIDR](
|
|
1207
|
+
# The IP address range of the container pods in this cluster, in [CIDR](https://
|
|
1202
1208
|
# en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.
|
|
1203
1209
|
# 0/14`). Leave blank to have one automatically chosen or specify a `/14` block
|
|
1204
1210
|
# in `10.0.0.0/8`.
|
|
@@ -1432,6 +1438,12 @@ module Google
|
|
|
1432
1438
|
# @return [Google::Apis::ContainerV1::MaintenancePolicy]
|
|
1433
1439
|
attr_accessor :maintenance_policy
|
|
1434
1440
|
|
|
1441
|
+
# ManagedOpenTelemetryConfig is the configuration for the GKE Managed
|
|
1442
|
+
# OpenTelemetry pipeline.
|
|
1443
|
+
# Corresponds to the JSON property `managedOpentelemetryConfig`
|
|
1444
|
+
# @return [Google::Apis::ContainerV1::ManagedOpenTelemetryConfig]
|
|
1445
|
+
attr_accessor :managed_opentelemetry_config
|
|
1446
|
+
|
|
1435
1447
|
# The authentication information for accessing the master endpoint.
|
|
1436
1448
|
# Authentication can be done using HTTP basic auth or using client certificates.
|
|
1437
1449
|
# Corresponds to the JSON property `masterAuth`
|
|
@@ -1601,7 +1613,7 @@ module Google
|
|
|
1601
1613
|
attr_accessor :self_link
|
|
1602
1614
|
|
|
1603
1615
|
# Output only. The IP address range of the Kubernetes services in this cluster,
|
|
1604
|
-
# in [CIDR](
|
|
1616
|
+
# in [CIDR](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
|
|
1605
1617
|
# notation (e.g. `1.2.3.4/29`). Service addresses are typically put in the last `
|
|
1606
1618
|
# /16` from the container CIDR.
|
|
1607
1619
|
# Corresponds to the JSON property `servicesIpv4Cidr`
|
|
@@ -1631,8 +1643,8 @@ module Google
|
|
|
1631
1643
|
attr_accessor :subnetwork
|
|
1632
1644
|
|
|
1633
1645
|
# Output only. The IP address range of the Cloud TPUs in this cluster, in [CIDR](
|
|
1634
|
-
#
|
|
1635
|
-
# 2.3.4/29`). This field is deprecated due to the deprecation of 2VM TPU. The
|
|
1646
|
+
# https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `
|
|
1647
|
+
# 1.2.3.4/29`). This field is deprecated due to the deprecation of 2VM TPU. The
|
|
1636
1648
|
# end of life date for 2VM TPU is 2025-04-25.
|
|
1637
1649
|
# Corresponds to the JSON property `tpuIpv4CidrBlock`
|
|
1638
1650
|
# @return [String]
|
|
@@ -1711,6 +1723,7 @@ module Google
|
|
|
1711
1723
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
|
1712
1724
|
@logging_service = args[:logging_service] if args.key?(:logging_service)
|
|
1713
1725
|
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
|
1726
|
+
@managed_opentelemetry_config = args[:managed_opentelemetry_config] if args.key?(:managed_opentelemetry_config)
|
|
1714
1727
|
@master_auth = args[:master_auth] if args.key?(:master_auth)
|
|
1715
1728
|
@master_authorized_networks_config = args[:master_authorized_networks_config] if args.key?(:master_authorized_networks_config)
|
|
1716
1729
|
@mesh_certificates = args[:mesh_certificates] if args.key?(:mesh_certificates)
|
|
@@ -1757,6 +1770,12 @@ module Google
|
|
|
1757
1770
|
class ClusterAutoscaling
|
|
1758
1771
|
include Google::Apis::Core::Hashable
|
|
1759
1772
|
|
|
1773
|
+
# Autopilot general profile for the cluster, which defines the configuration for
|
|
1774
|
+
# the cluster.
|
|
1775
|
+
# Corresponds to the JSON property `autopilotGeneralProfile`
|
|
1776
|
+
# @return [String]
|
|
1777
|
+
attr_accessor :autopilot_general_profile
|
|
1778
|
+
|
|
1760
1779
|
# The list of Google Compute Engine [zones](https://cloud.google.com/compute/
|
|
1761
1780
|
# docs/zones#available) in which the NodePool's nodes can be created by NAP.
|
|
1762
1781
|
# Corresponds to the JSON property `autoprovisioningLocations`
|
|
@@ -1797,6 +1816,7 @@ module Google
|
|
|
1797
1816
|
|
|
1798
1817
|
# Update properties of this object
|
|
1799
1818
|
def update!(**args)
|
|
1819
|
+
@autopilot_general_profile = args[:autopilot_general_profile] if args.key?(:autopilot_general_profile)
|
|
1800
1820
|
@autoprovisioning_locations = args[:autoprovisioning_locations] if args.key?(:autoprovisioning_locations)
|
|
1801
1821
|
@autoprovisioning_node_pool_defaults = args[:autoprovisioning_node_pool_defaults] if args.key?(:autoprovisioning_node_pool_defaults)
|
|
1802
1822
|
@autoscaling_profile = args[:autoscaling_profile] if args.key?(:autoscaling_profile)
|
|
@@ -2046,6 +2066,12 @@ module Google
|
|
|
2046
2066
|
# @return [String]
|
|
2047
2067
|
attr_accessor :desired_logging_service
|
|
2048
2068
|
|
|
2069
|
+
# ManagedOpenTelemetryConfig is the configuration for the GKE Managed
|
|
2070
|
+
# OpenTelemetry pipeline.
|
|
2071
|
+
# Corresponds to the JSON property `desiredManagedOpentelemetryConfig`
|
|
2072
|
+
# @return [Google::Apis::ContainerV1::ManagedOpenTelemetryConfig]
|
|
2073
|
+
attr_accessor :desired_managed_opentelemetry_config
|
|
2074
|
+
|
|
2049
2075
|
# Configuration options for the master authorized networks feature. Enabled
|
|
2050
2076
|
# master authorized networks will disallow all external traffic to access
|
|
2051
2077
|
# Kubernetes master through HTTPS except traffic from the given CIDR blocks,
|
|
@@ -2325,6 +2351,7 @@ module Google
|
|
|
2325
2351
|
@desired_locations = args[:desired_locations] if args.key?(:desired_locations)
|
|
2326
2352
|
@desired_logging_config = args[:desired_logging_config] if args.key?(:desired_logging_config)
|
|
2327
2353
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
|
2354
|
+
@desired_managed_opentelemetry_config = args[:desired_managed_opentelemetry_config] if args.key?(:desired_managed_opentelemetry_config)
|
|
2328
2355
|
@desired_master_authorized_networks_config = args[:desired_master_authorized_networks_config] if args.key?(:desired_master_authorized_networks_config)
|
|
2329
2356
|
@desired_master_version = args[:desired_master_version] if args.key?(:desired_master_version)
|
|
2330
2357
|
@desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
|
|
@@ -3975,10 +4002,10 @@ module Google
|
|
|
3975
4002
|
# cluster.cluster_ipv4_cidr` must be left blank. This field is only applicable
|
|
3976
4003
|
# when `use_ip_aliases` is true. Set to blank to have a range chosen with the
|
|
3977
4004
|
# default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
|
3978
|
-
# specific netmask. Set to a [CIDR](
|
|
3979
|
-
# Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
3980
|
-
# networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
3981
|
-
# specific range to use.
|
|
4005
|
+
# specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
|
|
4006
|
+
# Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
4007
|
+
# 1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
4008
|
+
# to pick a specific range to use.
|
|
3982
4009
|
# Corresponds to the JSON property `clusterIpv4CidrBlock`
|
|
3983
4010
|
# @return [String]
|
|
3984
4011
|
attr_accessor :cluster_ipv4_cidr_block
|
|
@@ -4023,10 +4050,10 @@ module Google
|
|
|
4023
4050
|
# The IP address range of the instance IPs in this cluster. This is applicable
|
|
4024
4051
|
# only if `create_subnetwork` is true. Set to blank to have a range chosen with
|
|
4025
4052
|
# the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
|
4026
|
-
# specific netmask. Set to a [CIDR](
|
|
4027
|
-
# Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
4028
|
-
# networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
4029
|
-
# specific range to use.
|
|
4053
|
+
# specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
|
|
4054
|
+
# Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
4055
|
+
# 1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
4056
|
+
# to pick a specific range to use.
|
|
4030
4057
|
# Corresponds to the JSON property `nodeIpv4CidrBlock`
|
|
4031
4058
|
# @return [String]
|
|
4032
4059
|
attr_accessor :node_ipv4_cidr_block
|
|
@@ -4045,7 +4072,7 @@ module Google
|
|
|
4045
4072
|
# will be automatically chosen with the default size. This field is only
|
|
4046
4073
|
# applicable when `use_ip_aliases` is true. Set to blank to have a range chosen
|
|
4047
4074
|
# with the default size. Set to /netmask (e.g. `/14`) to have a range chosen
|
|
4048
|
-
# with a specific netmask. Set to a [CIDR](
|
|
4075
|
+
# with a specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
|
|
4049
4076
|
# Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
4050
4077
|
# 1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
4051
4078
|
# to pick a specific range to use.
|
|
@@ -4086,11 +4113,11 @@ module Google
|
|
|
4086
4113
|
# range will be automatically chosen with the default size. This field is only
|
|
4087
4114
|
# applicable when `use_ip_aliases` is true. If unspecified, the range will use
|
|
4088
4115
|
# the default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
|
4089
|
-
# specific netmask. Set to a [CIDR](
|
|
4090
|
-
# Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
4091
|
-
# networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
4092
|
-
# specific range to use. This field is deprecated due to the
|
|
4093
|
-
# TPU. The end of life date for 2VM TPU is 2025-04-25.
|
|
4116
|
+
# specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
|
|
4117
|
+
# Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-
|
|
4118
|
+
# 1918 private networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`)
|
|
4119
|
+
# to pick a specific range to use. This field is deprecated due to the
|
|
4120
|
+
# deprecation of 2VM TPU. The end of life date for 2VM TPU is 2025-04-25.
|
|
4094
4121
|
# Corresponds to the JSON property `tpuIpv4CidrBlock`
|
|
4095
4122
|
# @return [String]
|
|
4096
4123
|
attr_accessor :tpu_ipv4_cidr_block
|
|
@@ -4767,6 +4794,26 @@ module Google
|
|
|
4767
4794
|
end
|
|
4768
4795
|
end
|
|
4769
4796
|
|
|
4797
|
+
# ManagedOpenTelemetryConfig is the configuration for the GKE Managed
|
|
4798
|
+
# OpenTelemetry pipeline.
|
|
4799
|
+
class ManagedOpenTelemetryConfig
|
|
4800
|
+
include Google::Apis::Core::Hashable
|
|
4801
|
+
|
|
4802
|
+
# Scope of the Managed OpenTelemetry pipeline.
|
|
4803
|
+
# Corresponds to the JSON property `scope`
|
|
4804
|
+
# @return [String]
|
|
4805
|
+
attr_accessor :scope
|
|
4806
|
+
|
|
4807
|
+
def initialize(**args)
|
|
4808
|
+
update!(**args)
|
|
4809
|
+
end
|
|
4810
|
+
|
|
4811
|
+
# Update properties of this object
|
|
4812
|
+
def update!(**args)
|
|
4813
|
+
@scope = args[:scope] if args.key?(:scope)
|
|
4814
|
+
end
|
|
4815
|
+
end
|
|
4816
|
+
|
|
4770
4817
|
# ManagedPrometheusConfig defines the configuration for Google Cloud Managed
|
|
4771
4818
|
# Service for Prometheus.
|
|
4772
4819
|
class ManagedPrometheusConfig
|
|
@@ -5371,6 +5418,13 @@ module Google
|
|
|
5371
5418
|
# @return [Google::Apis::ContainerV1::ConfidentialNodes]
|
|
5372
5419
|
attr_accessor :confidential_nodes
|
|
5373
5420
|
|
|
5421
|
+
# Consolidation delay defines duration after which the Cluster Autoscaler can
|
|
5422
|
+
# scale down underutilized nodes. If not set, nodes are scaled down by default
|
|
5423
|
+
# behavior, i.e. according to the chosen autoscaling profile.
|
|
5424
|
+
# Corresponds to the JSON property `consolidationDelay`
|
|
5425
|
+
# @return [String]
|
|
5426
|
+
attr_accessor :consolidation_delay
|
|
5427
|
+
|
|
5374
5428
|
# ContainerdConfig contains configuration to customize containerd.
|
|
5375
5429
|
# Corresponds to the JSON property `containerdConfig`
|
|
5376
5430
|
# @return [Google::Apis::ContainerV1::ContainerdConfig]
|
|
@@ -5659,6 +5713,7 @@ module Google
|
|
|
5659
5713
|
@boot_disk = args[:boot_disk] if args.key?(:boot_disk)
|
|
5660
5714
|
@boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
|
|
5661
5715
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
|
5716
|
+
@consolidation_delay = args[:consolidation_delay] if args.key?(:consolidation_delay)
|
|
5662
5717
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
|
5663
5718
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
5664
5719
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
|
@@ -6121,10 +6176,13 @@ module Google
|
|
|
6121
6176
|
# @return [String]
|
|
6122
6177
|
attr_accessor :pod_range
|
|
6123
6178
|
|
|
6124
|
-
# The subnetwork path for the node pool. Format: projects/`
|
|
6125
|
-
# region`/subnetworks/`subnetwork` If the cluster is
|
|
6126
|
-
# subnetworks, the subnetwork
|
|
6127
|
-
#
|
|
6179
|
+
# Optional. The subnetwork name/path for the node pool. Format: projects/`
|
|
6180
|
+
# project`/regions/`region`/subnetworks/`subnetwork` If the cluster is
|
|
6181
|
+
# associated with multiple subnetworks, the subnetwork can be either: 1. A user
|
|
6182
|
+
# supplied subnetwork name/full path during node pool creation. Example1: my-
|
|
6183
|
+
# subnet Example2: projects/gke-project/regions/us-central1/subnetworks/my-
|
|
6184
|
+
# subnet 2. A subnetwork path picked based on the IP utilization during node
|
|
6185
|
+
# pool creation and is immutable.
|
|
6128
6186
|
# Corresponds to the JSON property `subnetwork`
|
|
6129
6187
|
# @return [String]
|
|
6130
6188
|
attr_accessor :subnetwork
|
|
@@ -9102,6 +9160,13 @@ module Google
|
|
|
9102
9160
|
# @return [Google::Apis::ContainerV1::ConfidentialNodes]
|
|
9103
9161
|
attr_accessor :confidential_nodes
|
|
9104
9162
|
|
|
9163
|
+
# Consolidation delay defines duration after which the Cluster Autoscaler can
|
|
9164
|
+
# scale down underutilized nodes. If not set, nodes are scaled down by default
|
|
9165
|
+
# behavior, i.e. according to the chosen autoscaling profile.
|
|
9166
|
+
# Corresponds to the JSON property `consolidationDelay`
|
|
9167
|
+
# @return [String]
|
|
9168
|
+
attr_accessor :consolidation_delay
|
|
9169
|
+
|
|
9105
9170
|
# ContainerdConfig contains configuration to customize containerd.
|
|
9106
9171
|
# Corresponds to the JSON property `containerdConfig`
|
|
9107
9172
|
# @return [Google::Apis::ContainerV1::ContainerdConfig]
|
|
@@ -9351,6 +9416,7 @@ module Google
|
|
|
9351
9416
|
@boot_disk = args[:boot_disk] if args.key?(:boot_disk)
|
|
9352
9417
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
|
9353
9418
|
@confidential_nodes = args[:confidential_nodes] if args.key?(:confidential_nodes)
|
|
9419
|
+
@consolidation_delay = args[:consolidation_delay] if args.key?(:consolidation_delay)
|
|
9354
9420
|
@containerd_config = args[:containerd_config] if args.key?(:containerd_config)
|
|
9355
9421
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
|
9356
9422
|
@disk_type = args[:disk_type] if args.key?(:disk_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.112.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 = "20260113"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -670,6 +670,12 @@ module Google
|
|
|
670
670
|
include Google::Apis::Core::JsonObjectSupport
|
|
671
671
|
end
|
|
672
672
|
|
|
673
|
+
class ManagedOpenTelemetryConfig
|
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
|
+
|
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
677
|
+
end
|
|
678
|
+
|
|
673
679
|
class ManagedPrometheusConfig
|
|
674
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
675
681
|
|
|
@@ -1371,6 +1377,7 @@ module Google
|
|
|
1371
1377
|
# @private
|
|
1372
1378
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1373
1379
|
collection :pod_ipv4_range_names, as: 'podIpv4RangeNames'
|
|
1380
|
+
property :status, as: 'status'
|
|
1374
1381
|
property :subnetwork, as: 'subnetwork'
|
|
1375
1382
|
end
|
|
1376
1383
|
end
|
|
@@ -1743,6 +1750,8 @@ module Google
|
|
|
1743
1750
|
property :logging_service, as: 'loggingService'
|
|
1744
1751
|
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::ContainerV1::MaintenancePolicy, decorator: Google::Apis::ContainerV1::MaintenancePolicy::Representation
|
|
1745
1752
|
|
|
1753
|
+
property :managed_opentelemetry_config, as: 'managedOpentelemetryConfig', class: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig, decorator: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig::Representation
|
|
1754
|
+
|
|
1746
1755
|
property :master_auth, as: 'masterAuth', class: Google::Apis::ContainerV1::MasterAuth, decorator: Google::Apis::ContainerV1::MasterAuth::Representation
|
|
1747
1756
|
|
|
1748
1757
|
property :master_authorized_networks_config, as: 'masterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
|
@@ -1809,6 +1818,7 @@ module Google
|
|
|
1809
1818
|
class ClusterAutoscaling
|
|
1810
1819
|
# @private
|
|
1811
1820
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1821
|
+
property :autopilot_general_profile, as: 'autopilotGeneralProfile'
|
|
1812
1822
|
collection :autoprovisioning_locations, as: 'autoprovisioningLocations'
|
|
1813
1823
|
property :autoprovisioning_node_pool_defaults, as: 'autoprovisioningNodePoolDefaults', class: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults, decorator: Google::Apis::ContainerV1::AutoprovisioningNodePoolDefaults::Representation
|
|
1814
1824
|
|
|
@@ -1892,6 +1902,8 @@ module Google
|
|
|
1892
1902
|
property :desired_logging_config, as: 'desiredLoggingConfig', class: Google::Apis::ContainerV1::LoggingConfig, decorator: Google::Apis::ContainerV1::LoggingConfig::Representation
|
|
1893
1903
|
|
|
1894
1904
|
property :desired_logging_service, as: 'desiredLoggingService'
|
|
1905
|
+
property :desired_managed_opentelemetry_config, as: 'desiredManagedOpentelemetryConfig', class: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig, decorator: Google::Apis::ContainerV1::ManagedOpenTelemetryConfig::Representation
|
|
1906
|
+
|
|
1895
1907
|
property :desired_master_authorized_networks_config, as: 'desiredMasterAuthorizedNetworksConfig', class: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig, decorator: Google::Apis::ContainerV1::MasterAuthorizedNetworksConfig::Representation
|
|
1896
1908
|
|
|
1897
1909
|
property :desired_master_version, as: 'desiredMasterVersion'
|
|
@@ -2623,6 +2635,13 @@ module Google
|
|
|
2623
2635
|
end
|
|
2624
2636
|
end
|
|
2625
2637
|
|
|
2638
|
+
class ManagedOpenTelemetryConfig
|
|
2639
|
+
# @private
|
|
2640
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2641
|
+
property :scope, as: 'scope'
|
|
2642
|
+
end
|
|
2643
|
+
end
|
|
2644
|
+
|
|
2626
2645
|
class ManagedPrometheusConfig
|
|
2627
2646
|
# @private
|
|
2628
2647
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -2791,6 +2810,7 @@ module Google
|
|
|
2791
2810
|
property :boot_disk_kms_key, as: 'bootDiskKmsKey'
|
|
2792
2811
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
|
2793
2812
|
|
|
2813
|
+
property :consolidation_delay, as: 'consolidationDelay'
|
|
2794
2814
|
property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
|
|
2795
2815
|
|
|
2796
2816
|
property :disk_size_gb, as: 'diskSizeGb'
|
|
@@ -3715,6 +3735,7 @@ module Google
|
|
|
3715
3735
|
property :cluster_id, as: 'clusterId'
|
|
3716
3736
|
property :confidential_nodes, as: 'confidentialNodes', class: Google::Apis::ContainerV1::ConfidentialNodes, decorator: Google::Apis::ContainerV1::ConfidentialNodes::Representation
|
|
3717
3737
|
|
|
3738
|
+
property :consolidation_delay, as: 'consolidationDelay'
|
|
3718
3739
|
property :containerd_config, as: 'containerdConfig', class: Google::Apis::ContainerV1::ContainerdConfig, decorator: Google::Apis::ContainerV1::ContainerdConfig::Representation
|
|
3719
3740
|
|
|
3720
3741
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
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.112.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.112.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:
|