google-apis-container_v1beta1 0.54.0 → 0.56.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: 5b5aa3f8d41821db6c8f59f541e240eabf93eb417fc4e24d61ae05594b1a6602
|
4
|
+
data.tar.gz: 3e6c70be4b1e4786aa2e63ad75160f66678d08d38fb822cb167165bb0dd35839
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 73a32aaf429d30490af43d0c2c5c440dd37f4f0993c7e918124124a2ee7e989a72eff4b364337fa1ddf3a17905e27557cdf0c7f946dd01a6636095f5e154b31b
|
7
|
+
data.tar.gz: b94b767601edad00d17023e79ace5c8087d80b6d1df612d5961c786d1519eb42f5f3f2f95e9e574470e9da519636ef31b9bd9c51efb70557cea00e4c9f8aca5e
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.56.0 (2023-08-13)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230802
|
6
|
+
|
7
|
+
### v0.55.0 (2023-07-16)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230629
|
10
|
+
|
3
11
|
### v0.54.0 (2023-07-09)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230626
|
@@ -76,6 +76,65 @@ module Google
|
|
76
76
|
end
|
77
77
|
end
|
78
78
|
|
79
|
+
# AdditionalNodeNetworkConfig is the configuration for additional node networks
|
80
|
+
# within the NodeNetworkConfig message
|
81
|
+
class AdditionalNodeNetworkConfig
|
82
|
+
include Google::Apis::Core::Hashable
|
83
|
+
|
84
|
+
# Name of the VPC where the additional interface belongs
|
85
|
+
# Corresponds to the JSON property `network`
|
86
|
+
# @return [String]
|
87
|
+
attr_accessor :network
|
88
|
+
|
89
|
+
# Name of the subnetwork where the additional interface belongs
|
90
|
+
# Corresponds to the JSON property `subnetwork`
|
91
|
+
# @return [String]
|
92
|
+
attr_accessor :subnetwork
|
93
|
+
|
94
|
+
def initialize(**args)
|
95
|
+
update!(**args)
|
96
|
+
end
|
97
|
+
|
98
|
+
# Update properties of this object
|
99
|
+
def update!(**args)
|
100
|
+
@network = args[:network] if args.key?(:network)
|
101
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
102
|
+
end
|
103
|
+
end
|
104
|
+
|
105
|
+
# AdditionalPodNetworkConfig is the configuration for additional pod networks
|
106
|
+
# within the NodeNetworkConfig message
|
107
|
+
class AdditionalPodNetworkConfig
|
108
|
+
include Google::Apis::Core::Hashable
|
109
|
+
|
110
|
+
# Constraints applied to pods.
|
111
|
+
# Corresponds to the JSON property `maxPodsPerNode`
|
112
|
+
# @return [Google::Apis::ContainerV1beta1::MaxPodsConstraint]
|
113
|
+
attr_accessor :max_pods_per_node
|
114
|
+
|
115
|
+
# The name of the secondary range on the subnet which provides IP address for
|
116
|
+
# this pod range
|
117
|
+
# Corresponds to the JSON property `secondaryPodRange`
|
118
|
+
# @return [String]
|
119
|
+
attr_accessor :secondary_pod_range
|
120
|
+
|
121
|
+
# Name of the subnetwork where the additional pod network belongs
|
122
|
+
# Corresponds to the JSON property `subnetwork`
|
123
|
+
# @return [String]
|
124
|
+
attr_accessor :subnetwork
|
125
|
+
|
126
|
+
def initialize(**args)
|
127
|
+
update!(**args)
|
128
|
+
end
|
129
|
+
|
130
|
+
# Update properties of this object
|
131
|
+
def update!(**args)
|
132
|
+
@max_pods_per_node = args[:max_pods_per_node] if args.key?(:max_pods_per_node)
|
133
|
+
@secondary_pod_range = args[:secondary_pod_range] if args.key?(:secondary_pod_range)
|
134
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
79
138
|
# AdditionalPodRangesConfig is the configuration for additional pod secondary
|
80
139
|
# ranges supporting the ClusterUpdate message.
|
81
140
|
class AdditionalPodRangesConfig
|
@@ -596,6 +655,11 @@ module Google
|
|
596
655
|
# @return [String]
|
597
656
|
attr_accessor :evaluation_mode
|
598
657
|
|
658
|
+
# Optional. Binauthz policies that apply to this cluster.
|
659
|
+
# Corresponds to the JSON property `policyBindings`
|
660
|
+
# @return [Array<Google::Apis::ContainerV1beta1::PolicyBinding>]
|
661
|
+
attr_accessor :policy_bindings
|
662
|
+
|
599
663
|
def initialize(**args)
|
600
664
|
update!(**args)
|
601
665
|
end
|
@@ -604,6 +668,7 @@ module Google
|
|
604
668
|
def update!(**args)
|
605
669
|
@enabled = args[:enabled] if args.key?(:enabled)
|
606
670
|
@evaluation_mode = args[:evaluation_mode] if args.key?(:evaluation_mode)
|
671
|
+
@policy_bindings = args[:policy_bindings] if args.key?(:policy_bindings)
|
607
672
|
end
|
608
673
|
end
|
609
674
|
|
@@ -1573,6 +1638,12 @@ module Google
|
|
1573
1638
|
# @return [Google::Apis::ContainerV1beta1::GcfsConfig]
|
1574
1639
|
attr_accessor :desired_gcfs_config
|
1575
1640
|
|
1641
|
+
# HostMaintenancePolicy contains the maintenance policy for the hosts on which
|
1642
|
+
# the GKE VMs run on.
|
1643
|
+
# Corresponds to the JSON property `desiredHostMaintenancePolicy`
|
1644
|
+
# @return [Google::Apis::ContainerV1beta1::HostMaintenancePolicy]
|
1645
|
+
attr_accessor :desired_host_maintenance_policy
|
1646
|
+
|
1576
1647
|
# IdentityServiceConfig is configuration for Identity Service which allows
|
1577
1648
|
# customers to use external identity providers with the K8S API
|
1578
1649
|
# Corresponds to the JSON property `desiredIdentityServiceConfig`
|
@@ -1844,6 +1915,7 @@ module Google
|
|
1844
1915
|
@desired_fleet = args[:desired_fleet] if args.key?(:desired_fleet)
|
1845
1916
|
@desired_gateway_api_config = args[:desired_gateway_api_config] if args.key?(:desired_gateway_api_config)
|
1846
1917
|
@desired_gcfs_config = args[:desired_gcfs_config] if args.key?(:desired_gcfs_config)
|
1918
|
+
@desired_host_maintenance_policy = args[:desired_host_maintenance_policy] if args.key?(:desired_host_maintenance_policy)
|
1847
1919
|
@desired_identity_service_config = args[:desired_identity_service_config] if args.key?(:desired_identity_service_config)
|
1848
1920
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1849
1921
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
@@ -2715,6 +2787,26 @@ module Google
|
|
2715
2787
|
end
|
2716
2788
|
end
|
2717
2789
|
|
2790
|
+
# HostMaintenancePolicy contains the maintenance policy for the hosts on which
|
2791
|
+
# the GKE VMs run on.
|
2792
|
+
class HostMaintenancePolicy
|
2793
|
+
include Google::Apis::Core::Hashable
|
2794
|
+
|
2795
|
+
# Specifies the frequency of planned maintenance events.
|
2796
|
+
# Corresponds to the JSON property `maintenanceInterval`
|
2797
|
+
# @return [String]
|
2798
|
+
attr_accessor :maintenance_interval
|
2799
|
+
|
2800
|
+
def initialize(**args)
|
2801
|
+
update!(**args)
|
2802
|
+
end
|
2803
|
+
|
2804
|
+
# Update properties of this object
|
2805
|
+
def update!(**args)
|
2806
|
+
@maintenance_interval = args[:maintenance_interval] if args.key?(:maintenance_interval)
|
2807
|
+
end
|
2808
|
+
end
|
2809
|
+
|
2718
2810
|
# RFC-2616: cache control support
|
2719
2811
|
class HttpCacheControlResponseHeader
|
2720
2812
|
include Google::Apis::Core::Hashable
|
@@ -3862,6 +3954,12 @@ module Google
|
|
3862
3954
|
attr_accessor :enable_l4ilb_subsetting
|
3863
3955
|
alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
|
3864
3956
|
|
3957
|
+
# Whether multi-networking is enabled for this cluster.
|
3958
|
+
# Corresponds to the JSON property `enableMultiNetworking`
|
3959
|
+
# @return [Boolean]
|
3960
|
+
attr_accessor :enable_multi_networking
|
3961
|
+
alias_method :enable_multi_networking?, :enable_multi_networking
|
3962
|
+
|
3865
3963
|
# GatewayAPIConfig contains the desired config of Gateway API on this cluster.
|
3866
3964
|
# Corresponds to the JSON property `gatewayApiConfig`
|
3867
3965
|
# @return [Google::Apis::ContainerV1beta1::GatewayApiConfig]
|
@@ -3909,6 +4007,7 @@ module Google
|
|
3909
4007
|
@enable_fqdn_network_policy = args[:enable_fqdn_network_policy] if args.key?(:enable_fqdn_network_policy)
|
3910
4008
|
@enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
|
3911
4009
|
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
4010
|
+
@enable_multi_networking = args[:enable_multi_networking] if args.key?(:enable_multi_networking)
|
3912
4011
|
@gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
|
3913
4012
|
@network = args[:network] if args.key?(:network)
|
3914
4013
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
@@ -4118,6 +4217,12 @@ module Google
|
|
4118
4217
|
# @return [Google::Apis::ContainerV1beta1::VirtualNic]
|
4119
4218
|
attr_accessor :gvnic
|
4120
4219
|
|
4220
|
+
# HostMaintenancePolicy contains the maintenance policy for the hosts on which
|
4221
|
+
# the GKE VMs run on.
|
4222
|
+
# Corresponds to the JSON property `hostMaintenancePolicy`
|
4223
|
+
# @return [Google::Apis::ContainerV1beta1::HostMaintenancePolicy]
|
4224
|
+
attr_accessor :host_maintenance_policy
|
4225
|
+
|
4121
4226
|
# The image type to use for this node. Note that for a given image type, the
|
4122
4227
|
# latest version of it will be used. Please see https://cloud.google.com/
|
4123
4228
|
# kubernetes-engine/docs/concepts/node-images for available image types.
|
@@ -4316,6 +4421,7 @@ module Google
|
|
4316
4421
|
@fast_socket = args[:fast_socket] if args.key?(:fast_socket)
|
4317
4422
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
4318
4423
|
@gvnic = args[:gvnic] if args.key?(:gvnic)
|
4424
|
+
@host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
|
4319
4425
|
@image_type = args[:image_type] if args.key?(:image_type)
|
4320
4426
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
4321
4427
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -4352,6 +4458,12 @@ module Google
|
|
4352
4458
|
# @return [Google::Apis::ContainerV1beta1::GcfsConfig]
|
4353
4459
|
attr_accessor :gcfs_config
|
4354
4460
|
|
4461
|
+
# HostMaintenancePolicy contains the maintenance policy for the hosts on which
|
4462
|
+
# the GKE VMs run on.
|
4463
|
+
# Corresponds to the JSON property `hostMaintenancePolicy`
|
4464
|
+
# @return [Google::Apis::ContainerV1beta1::HostMaintenancePolicy]
|
4465
|
+
attr_accessor :host_maintenance_policy
|
4466
|
+
|
4355
4467
|
# NodePoolLoggingConfig specifies logging configuration for nodepools.
|
4356
4468
|
# Corresponds to the JSON property `loggingConfig`
|
4357
4469
|
# @return [Google::Apis::ContainerV1beta1::NodePoolLoggingConfig]
|
@@ -4364,6 +4476,7 @@ module Google
|
|
4364
4476
|
# Update properties of this object
|
4365
4477
|
def update!(**args)
|
4366
4478
|
@gcfs_config = args[:gcfs_config] if args.key?(:gcfs_config)
|
4479
|
+
@host_maintenance_policy = args[:host_maintenance_policy] if args.key?(:host_maintenance_policy)
|
4367
4480
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
4368
4481
|
end
|
4369
4482
|
end
|
@@ -4489,6 +4602,18 @@ module Google
|
|
4489
4602
|
class NodeNetworkConfig
|
4490
4603
|
include Google::Apis::Core::Hashable
|
4491
4604
|
|
4605
|
+
# We specify the additional node networks for this node pool using this list.
|
4606
|
+
# Each node network corresponds to an additional interface
|
4607
|
+
# Corresponds to the JSON property `additionalNodeNetworkConfigs`
|
4608
|
+
# @return [Array<Google::Apis::ContainerV1beta1::AdditionalNodeNetworkConfig>]
|
4609
|
+
attr_accessor :additional_node_network_configs
|
4610
|
+
|
4611
|
+
# We specify the additional pod networks for this node pool using this list.
|
4612
|
+
# Each pod network corresponds to an additional alias IP range for the node
|
4613
|
+
# Corresponds to the JSON property `additionalPodNetworkConfigs`
|
4614
|
+
# @return [Array<Google::Apis::ContainerV1beta1::AdditionalPodNetworkConfig>]
|
4615
|
+
attr_accessor :additional_pod_network_configs
|
4616
|
+
|
4492
4617
|
# Input only. Whether to create a new range for pod IPs in this node pool.
|
4493
4618
|
# Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are
|
4494
4619
|
# not specified. If neither `create_pod_range` or `pod_range` are specified, the
|
@@ -4551,6 +4676,8 @@ module Google
|
|
4551
4676
|
|
4552
4677
|
# Update properties of this object
|
4553
4678
|
def update!(**args)
|
4679
|
+
@additional_node_network_configs = args[:additional_node_network_configs] if args.key?(:additional_node_network_configs)
|
4680
|
+
@additional_pod_network_configs = args[:additional_pod_network_configs] if args.key?(:additional_pod_network_configs)
|
4554
4681
|
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
4555
4682
|
@enable_private_nodes = args[:enable_private_nodes] if args.key?(:enable_private_nodes)
|
4556
4683
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
@@ -5118,6 +5245,13 @@ module Google
|
|
5118
5245
|
class PlacementPolicy
|
5119
5246
|
include Google::Apis::Core::Hashable
|
5120
5247
|
|
5248
|
+
# If set, refers to the name of a custom resource policy supplied by the user.
|
5249
|
+
# The resource policy must be in the same project and region as the node pool.
|
5250
|
+
# If not found, InvalidArgument error is returned.
|
5251
|
+
# Corresponds to the JSON property `policyName`
|
5252
|
+
# @return [String]
|
5253
|
+
attr_accessor :policy_name
|
5254
|
+
|
5121
5255
|
# TPU placement topology for pod slice node pool. https://cloud.google.com/tpu/
|
5122
5256
|
# docs/types-topologies#tpu_topologies
|
5123
5257
|
# Corresponds to the JSON property `tpuTopology`
|
@@ -5135,6 +5269,7 @@ module Google
|
|
5135
5269
|
|
5136
5270
|
# Update properties of this object
|
5137
5271
|
def update!(**args)
|
5272
|
+
@policy_name = args[:policy_name] if args.key?(:policy_name)
|
5138
5273
|
@tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
|
5139
5274
|
@type = args[:type] if args.key?(:type)
|
5140
5275
|
end
|
@@ -5182,6 +5317,27 @@ module Google
|
|
5182
5317
|
end
|
5183
5318
|
end
|
5184
5319
|
|
5320
|
+
# Binauthz policy that applies to this cluster.
|
5321
|
+
class PolicyBinding
|
5322
|
+
include Google::Apis::Core::Hashable
|
5323
|
+
|
5324
|
+
# The relative resource name of the binauthz platform policy to audit. GKE
|
5325
|
+
# platform policies have the following format: `projects/`project_number`/
|
5326
|
+
# platforms/gke/policies/`policy_id``.
|
5327
|
+
# Corresponds to the JSON property `name`
|
5328
|
+
# @return [String]
|
5329
|
+
attr_accessor :name
|
5330
|
+
|
5331
|
+
def initialize(**args)
|
5332
|
+
update!(**args)
|
5333
|
+
end
|
5334
|
+
|
5335
|
+
# Update properties of this object
|
5336
|
+
def update!(**args)
|
5337
|
+
@name = args[:name] if args.key?(:name)
|
5338
|
+
end
|
5339
|
+
end
|
5340
|
+
|
5185
5341
|
# Configuration options for private clusters.
|
5186
5342
|
class PrivateClusterConfig
|
5187
5343
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ContainerV1beta1
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.56.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230802"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,18 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AdditionalNodeNetworkConfig
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
37
|
+
class AdditionalPodNetworkConfig
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
31
43
|
class AdditionalPodRangesConfig
|
32
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
45
|
|
@@ -364,6 +376,12 @@ module Google
|
|
364
376
|
include Google::Apis::Core::JsonObjectSupport
|
365
377
|
end
|
366
378
|
|
379
|
+
class HostMaintenancePolicy
|
380
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
|
+
|
382
|
+
include Google::Apis::Core::JsonObjectSupport
|
383
|
+
end
|
384
|
+
|
367
385
|
class HttpCacheControlResponseHeader
|
368
386
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
387
|
|
@@ -724,6 +742,12 @@ module Google
|
|
724
742
|
include Google::Apis::Core::JsonObjectSupport
|
725
743
|
end
|
726
744
|
|
745
|
+
class PolicyBinding
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
727
751
|
class PrivateClusterConfig
|
728
752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
729
753
|
|
@@ -1092,6 +1116,24 @@ module Google
|
|
1092
1116
|
end
|
1093
1117
|
end
|
1094
1118
|
|
1119
|
+
class AdditionalNodeNetworkConfig
|
1120
|
+
# @private
|
1121
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1122
|
+
property :network, as: 'network'
|
1123
|
+
property :subnetwork, as: 'subnetwork'
|
1124
|
+
end
|
1125
|
+
end
|
1126
|
+
|
1127
|
+
class AdditionalPodNetworkConfig
|
1128
|
+
# @private
|
1129
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1130
|
+
property :max_pods_per_node, as: 'maxPodsPerNode', class: Google::Apis::ContainerV1beta1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1beta1::MaxPodsConstraint::Representation
|
1131
|
+
|
1132
|
+
property :secondary_pod_range, as: 'secondaryPodRange'
|
1133
|
+
property :subnetwork, as: 'subnetwork'
|
1134
|
+
end
|
1135
|
+
end
|
1136
|
+
|
1095
1137
|
class AdditionalPodRangesConfig
|
1096
1138
|
# @private
|
1097
1139
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1233,6 +1275,8 @@ module Google
|
|
1233
1275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1234
1276
|
property :enabled, as: 'enabled'
|
1235
1277
|
property :evaluation_mode, as: 'evaluationMode'
|
1278
|
+
collection :policy_bindings, as: 'policyBindings', class: Google::Apis::ContainerV1beta1::PolicyBinding, decorator: Google::Apis::ContainerV1beta1::PolicyBinding::Representation
|
1279
|
+
|
1236
1280
|
end
|
1237
1281
|
end
|
1238
1282
|
|
@@ -1482,6 +1526,8 @@ module Google
|
|
1482
1526
|
|
1483
1527
|
property :desired_gcfs_config, as: 'desiredGcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
|
1484
1528
|
|
1529
|
+
property :desired_host_maintenance_policy, as: 'desiredHostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
|
1530
|
+
|
1485
1531
|
property :desired_identity_service_config, as: 'desiredIdentityServiceConfig', class: Google::Apis::ContainerV1beta1::IdentityServiceConfig, decorator: Google::Apis::ContainerV1beta1::IdentityServiceConfig::Representation
|
1486
1532
|
|
1487
1533
|
property :desired_image_type, as: 'desiredImageType'
|
@@ -1800,6 +1846,13 @@ module Google
|
|
1800
1846
|
end
|
1801
1847
|
end
|
1802
1848
|
|
1849
|
+
class HostMaintenancePolicy
|
1850
|
+
# @private
|
1851
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1852
|
+
property :maintenance_interval, as: 'maintenanceInterval'
|
1853
|
+
end
|
1854
|
+
end
|
1855
|
+
|
1803
1856
|
class HttpCacheControlResponseHeader
|
1804
1857
|
# @private
|
1805
1858
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2125,6 +2178,7 @@ module Google
|
|
2125
2178
|
property :enable_fqdn_network_policy, as: 'enableFqdnNetworkPolicy'
|
2126
2179
|
property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
|
2127
2180
|
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
2181
|
+
property :enable_multi_networking, as: 'enableMultiNetworking'
|
2128
2182
|
property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1beta1::GatewayApiConfig, decorator: Google::Apis::ContainerV1beta1::GatewayApiConfig::Representation
|
2129
2183
|
|
2130
2184
|
property :network, as: 'network'
|
@@ -2198,6 +2252,8 @@ module Google
|
|
2198
2252
|
|
2199
2253
|
property :gvnic, as: 'gvnic', class: Google::Apis::ContainerV1beta1::VirtualNic, decorator: Google::Apis::ContainerV1beta1::VirtualNic::Representation
|
2200
2254
|
|
2255
|
+
property :host_maintenance_policy, as: 'hostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
|
2256
|
+
|
2201
2257
|
property :image_type, as: 'imageType'
|
2202
2258
|
property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
|
2203
2259
|
|
@@ -2241,6 +2297,8 @@ module Google
|
|
2241
2297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2242
2298
|
property :gcfs_config, as: 'gcfsConfig', class: Google::Apis::ContainerV1beta1::GcfsConfig, decorator: Google::Apis::ContainerV1beta1::GcfsConfig::Representation
|
2243
2299
|
|
2300
|
+
property :host_maintenance_policy, as: 'hostMaintenancePolicy', class: Google::Apis::ContainerV1beta1::HostMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::HostMaintenancePolicy::Representation
|
2301
|
+
|
2244
2302
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
|
2245
2303
|
|
2246
2304
|
end
|
@@ -2277,6 +2335,10 @@ module Google
|
|
2277
2335
|
class NodeNetworkConfig
|
2278
2336
|
# @private
|
2279
2337
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2338
|
+
collection :additional_node_network_configs, as: 'additionalNodeNetworkConfigs', class: Google::Apis::ContainerV1beta1::AdditionalNodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalNodeNetworkConfig::Representation
|
2339
|
+
|
2340
|
+
collection :additional_pod_network_configs, as: 'additionalPodNetworkConfigs', class: Google::Apis::ContainerV1beta1::AdditionalPodNetworkConfig, decorator: Google::Apis::ContainerV1beta1::AdditionalPodNetworkConfig::Representation
|
2341
|
+
|
2280
2342
|
property :create_pod_range, as: 'createPodRange'
|
2281
2343
|
property :enable_private_nodes, as: 'enablePrivateNodes'
|
2282
2344
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::NetworkPerformanceConfig::Representation
|
@@ -2427,6 +2489,7 @@ module Google
|
|
2427
2489
|
class PlacementPolicy
|
2428
2490
|
# @private
|
2429
2491
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2492
|
+
property :policy_name, as: 'policyName'
|
2430
2493
|
property :tpu_topology, as: 'tpuTopology'
|
2431
2494
|
property :type, as: 'type'
|
2432
2495
|
end
|
@@ -2446,6 +2509,13 @@ module Google
|
|
2446
2509
|
end
|
2447
2510
|
end
|
2448
2511
|
|
2512
|
+
class PolicyBinding
|
2513
|
+
# @private
|
2514
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2515
|
+
property :name, as: 'name'
|
2516
|
+
end
|
2517
|
+
end
|
2518
|
+
|
2449
2519
|
class PrivateClusterConfig
|
2450
2520
|
# @private
|
2451
2521
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.56.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: 2023-
|
11
|
+
date: 2023-08-13 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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.56.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|