google-apis-container_v1beta1 0.8.0 → 0.13.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: cbb3bae4eee8eeb39acd475e179d8cf0c9288d06310c6073ec0b3716902d776e
|
4
|
+
data.tar.gz: f016664a940f326d101b8dfbfd72477c18a6a6e5ad48e37f666d7d3ddf0c6b00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '08448ca3c3de1b383ba4a862f0aac0985c478169a60f5576d15fb719cf3dc2e0bb6c2f6dc8852b06707e2dbbe3c4011283188126eaac1cbe457d7704446f16ed'
|
7
|
+
data.tar.gz: 58486eb0d47763326a528d2f7647718c1a7c73451bb3536fc20135d013370c330768cb1f6df83e6a436d79639b1eedc02497da91c394753061eacb3b11c14877
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.13.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210617
|
6
|
+
* Regenerated using generator version 0.4.0
|
7
|
+
|
8
|
+
### v0.12.0 (2021-06-24)
|
9
|
+
|
10
|
+
* Unspecified changes
|
11
|
+
|
12
|
+
### v0.11.0 (2021-06-16)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20210607
|
15
|
+
|
16
|
+
### v0.10.0 (2021-06-03)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210521
|
19
|
+
* Regenerated using generator version 0.3.0
|
20
|
+
|
21
|
+
### v0.9.0 (2021-05-26)
|
22
|
+
|
23
|
+
* Regenerated from discovery document revision 20210517
|
24
|
+
|
3
25
|
### v0.8.0 (2021-05-19)
|
4
26
|
|
5
27
|
* Unspecified changes
|
@@ -238,6 +238,11 @@ module Google
|
|
238
238
|
# @return [String]
|
239
239
|
attr_accessor :disk_type
|
240
240
|
|
241
|
+
# The image type to use for NAP created node.
|
242
|
+
# Corresponds to the JSON property `imageType`
|
243
|
+
# @return [String]
|
244
|
+
attr_accessor :image_type
|
245
|
+
|
241
246
|
# NodeManagement defines the set of node management services turned on for the
|
242
247
|
# node pool.
|
243
248
|
# Corresponds to the JSON property `management`
|
@@ -280,20 +285,7 @@ module Google
|
|
280
285
|
# @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
|
281
286
|
attr_accessor :shielded_instance_config
|
282
287
|
|
283
|
-
#
|
284
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
285
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
286
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
287
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
288
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
289
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
290
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
291
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
292
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
293
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
294
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
295
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
296
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
288
|
+
# Upgrade settings control disruption and speed of the upgrade.
|
297
289
|
# Corresponds to the JSON property `upgradeSettings`
|
298
290
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
299
291
|
attr_accessor :upgrade_settings
|
@@ -307,6 +299,7 @@ module Google
|
|
307
299
|
@boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
|
308
300
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
309
301
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
302
|
+
@image_type = args[:image_type] if args.key?(:image_type)
|
310
303
|
@management = args[:management] if args.key?(:management)
|
311
304
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
312
305
|
@oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
|
@@ -787,6 +780,11 @@ module Google
|
|
787
780
|
# @return [Fixnum]
|
788
781
|
attr_accessor :node_ipv4_cidr_size
|
789
782
|
|
783
|
+
# Subset of Nodepool message that has defaults.
|
784
|
+
# Corresponds to the JSON property `nodePoolDefaults`
|
785
|
+
# @return [Google::Apis::ContainerV1beta1::NodePoolDefaults]
|
786
|
+
attr_accessor :node_pool_defaults
|
787
|
+
|
790
788
|
# The node pools associated with this cluster. This field should not be set if "
|
791
789
|
# node_config" or "initial_node_count" are specified.
|
792
790
|
# Corresponds to the JSON property `nodePools`
|
@@ -956,6 +954,7 @@ module Google
|
|
956
954
|
@network_policy = args[:network_policy] if args.key?(:network_policy)
|
957
955
|
@node_config = args[:node_config] if args.key?(:node_config)
|
958
956
|
@node_ipv4_cidr_size = args[:node_ipv4_cidr_size] if args.key?(:node_ipv4_cidr_size)
|
957
|
+
@node_pool_defaults = args[:node_pool_defaults] if args.key?(:node_pool_defaults)
|
959
958
|
@node_pools = args[:node_pools] if args.key?(:node_pools)
|
960
959
|
@notification_config = args[:notification_config] if args.key?(:notification_config)
|
961
960
|
@pod_security_policy_config = args[:pod_security_policy_config] if args.key?(:pod_security_policy_config)
|
@@ -1058,6 +1057,11 @@ module Google
|
|
1058
1057
|
# @return [Google::Apis::ContainerV1beta1::AddonsConfig]
|
1059
1058
|
attr_accessor :desired_addons_config
|
1060
1059
|
|
1060
|
+
# Configuration for returning group information from authenticators.
|
1061
|
+
# Corresponds to the JSON property `desiredAuthenticatorGroupsConfig`
|
1062
|
+
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
1063
|
+
attr_accessor :desired_authenticator_groups_config
|
1064
|
+
|
1061
1065
|
# Autopilot is the configuration for Autopilot settings on the cluster.
|
1062
1066
|
# Corresponds to the JSON property `desiredAutopilot`
|
1063
1067
|
# @return [Google::Apis::ContainerV1beta1::Autopilot]
|
@@ -1266,6 +1270,7 @@ module Google
|
|
1266
1270
|
# Update properties of this object
|
1267
1271
|
def update!(**args)
|
1268
1272
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
1273
|
+
@desired_authenticator_groups_config = args[:desired_authenticator_groups_config] if args.key?(:desired_authenticator_groups_config)
|
1269
1274
|
@desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
|
1270
1275
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
1271
1276
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
@@ -1462,7 +1467,20 @@ module Google
|
|
1462
1467
|
# specification, under the control of the cluster master. They may have a set of
|
1463
1468
|
# Kubernetes labels applied to them, which may be used to reference them during
|
1464
1469
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
1465
|
-
# workload.
|
1470
|
+
# workload. These upgrade settings control the level of parallelism and the
|
1471
|
+
# level of disruption caused by an upgrade. maxUnavailable controls the number
|
1472
|
+
# of nodes that can be simultaneously unavailable. maxSurge controls the number
|
1473
|
+
# of additional nodes that can be added to the node pool temporarily for the
|
1474
|
+
# time of the upgrade to increase the number of available nodes. (maxUnavailable
|
1475
|
+
# + maxSurge) determines the level of parallelism (how many nodes are being
|
1476
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
1477
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
1478
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
1479
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
1480
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
1481
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
1482
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
1483
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
1466
1484
|
# Corresponds to the JSON property `nodePool`
|
1467
1485
|
# @return [Google::Apis::ContainerV1beta1::NodePool]
|
1468
1486
|
attr_accessor :node_pool
|
@@ -1585,6 +1603,47 @@ module Google
|
|
1585
1603
|
end
|
1586
1604
|
end
|
1587
1605
|
|
1606
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
1607
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
1608
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
1609
|
+
# following: * A full date, with non-zero year, month, and day values * A month
|
1610
|
+
# and day value, with a zero year, such as an anniversary * A year on its own,
|
1611
|
+
# with zero month and day values * A year and month value, with a zero day, such
|
1612
|
+
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
1613
|
+
# google.protobuf.Timestamp`.
|
1614
|
+
class Date
|
1615
|
+
include Google::Apis::Core::Hashable
|
1616
|
+
|
1617
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
1618
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
1619
|
+
# Corresponds to the JSON property `day`
|
1620
|
+
# @return [Fixnum]
|
1621
|
+
attr_accessor :day
|
1622
|
+
|
1623
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
1624
|
+
# and day.
|
1625
|
+
# Corresponds to the JSON property `month`
|
1626
|
+
# @return [Fixnum]
|
1627
|
+
attr_accessor :month
|
1628
|
+
|
1629
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
1630
|
+
# year.
|
1631
|
+
# Corresponds to the JSON property `year`
|
1632
|
+
# @return [Fixnum]
|
1633
|
+
attr_accessor :year
|
1634
|
+
|
1635
|
+
def initialize(**args)
|
1636
|
+
update!(**args)
|
1637
|
+
end
|
1638
|
+
|
1639
|
+
# Update properties of this object
|
1640
|
+
def update!(**args)
|
1641
|
+
@day = args[:day] if args.key?(:day)
|
1642
|
+
@month = args[:month] if args.key?(:month)
|
1643
|
+
@year = args[:year] if args.key?(:year)
|
1644
|
+
end
|
1645
|
+
end
|
1646
|
+
|
1588
1647
|
# DefaultSnatStatus contains the desired state of whether default sNAT should be
|
1589
1648
|
# disabled on the cluster.
|
1590
1649
|
class DefaultSnatStatus
|
@@ -2652,6 +2711,11 @@ module Google
|
|
2652
2711
|
# @return [String]
|
2653
2712
|
attr_accessor :private_ipv6_google_access
|
2654
2713
|
|
2714
|
+
# Config to block services with externalIPs field.
|
2715
|
+
# Corresponds to the JSON property `serviceExternalIpsConfig`
|
2716
|
+
# @return [Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig]
|
2717
|
+
attr_accessor :service_external_ips_config
|
2718
|
+
|
2655
2719
|
# Output only. The relative name of the Google Compute Engine [subnetwork](https:
|
2656
2720
|
# //cloud.google.com/compute/docs/vpc) to which the cluster is connected.
|
2657
2721
|
# Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
|
@@ -2672,6 +2736,7 @@ module Google
|
|
2672
2736
|
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
2673
2737
|
@network = args[:network] if args.key?(:network)
|
2674
2738
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
2739
|
+
@service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
|
2675
2740
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
2676
2741
|
end
|
2677
2742
|
end
|
@@ -2959,6 +3024,19 @@ module Google
|
|
2959
3024
|
end
|
2960
3025
|
end
|
2961
3026
|
|
3027
|
+
# Subset of NodeConfig message that has defaults.
|
3028
|
+
class NodeConfigDefaults
|
3029
|
+
include Google::Apis::Core::Hashable
|
3030
|
+
|
3031
|
+
def initialize(**args)
|
3032
|
+
update!(**args)
|
3033
|
+
end
|
3034
|
+
|
3035
|
+
# Update properties of this object
|
3036
|
+
def update!(**args)
|
3037
|
+
end
|
3038
|
+
end
|
3039
|
+
|
2962
3040
|
# Node kubelet configs.
|
2963
3041
|
class NodeKubeletConfig
|
2964
3042
|
include Google::Apis::Core::Hashable
|
@@ -3108,7 +3186,20 @@ module Google
|
|
3108
3186
|
# specification, under the control of the cluster master. They may have a set of
|
3109
3187
|
# Kubernetes labels applied to them, which may be used to reference them during
|
3110
3188
|
# pod scheduling. They may also be resized up or down, to accommodate the
|
3111
|
-
# workload.
|
3189
|
+
# workload. These upgrade settings control the level of parallelism and the
|
3190
|
+
# level of disruption caused by an upgrade. maxUnavailable controls the number
|
3191
|
+
# of nodes that can be simultaneously unavailable. maxSurge controls the number
|
3192
|
+
# of additional nodes that can be added to the node pool temporarily for the
|
3193
|
+
# time of the upgrade to increase the number of available nodes. (maxUnavailable
|
3194
|
+
# + maxSurge) determines the level of parallelism (how many nodes are being
|
3195
|
+
# upgraded at the same time). Note: upgrades inevitably introduce some
|
3196
|
+
# disruption since workloads need to be moved from old nodes to new, upgraded
|
3197
|
+
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
3198
|
+
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
3199
|
+
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
3200
|
+
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
3201
|
+
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
3202
|
+
# same time. This ensures that there are always at least 4 nodes available.
|
3112
3203
|
class NodePool
|
3113
3204
|
include Google::Apis::Core::Hashable
|
3114
3205
|
|
@@ -3196,20 +3287,7 @@ module Google
|
|
3196
3287
|
# @return [String]
|
3197
3288
|
attr_accessor :status_message
|
3198
3289
|
|
3199
|
-
#
|
3200
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
3201
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
3202
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
3203
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
3204
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
3205
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
3206
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
3207
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
3208
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
3209
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
3210
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
3211
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
3212
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
3290
|
+
# Upgrade settings control disruption and speed of the upgrade.
|
3213
3291
|
# Corresponds to the JSON property `upgradeSettings`
|
3214
3292
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
3215
3293
|
attr_accessor :upgrade_settings
|
@@ -3285,6 +3363,25 @@ module Google
|
|
3285
3363
|
end
|
3286
3364
|
end
|
3287
3365
|
|
3366
|
+
# Subset of Nodepool message that has defaults.
|
3367
|
+
class NodePoolDefaults
|
3368
|
+
include Google::Apis::Core::Hashable
|
3369
|
+
|
3370
|
+
# Subset of NodeConfig message that has defaults.
|
3371
|
+
# Corresponds to the JSON property `nodeConfigDefaults`
|
3372
|
+
# @return [Google::Apis::ContainerV1beta1::NodeConfigDefaults]
|
3373
|
+
attr_accessor :node_config_defaults
|
3374
|
+
|
3375
|
+
def initialize(**args)
|
3376
|
+
update!(**args)
|
3377
|
+
end
|
3378
|
+
|
3379
|
+
# Update properties of this object
|
3380
|
+
def update!(**args)
|
3381
|
+
@node_config_defaults = args[:node_config_defaults] if args.key?(:node_config_defaults)
|
3382
|
+
end
|
3383
|
+
end
|
3384
|
+
|
3288
3385
|
# Kubernetes taint is comprised of three fields: key, value, and effect. Effect
|
3289
3386
|
# can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
|
3290
3387
|
# [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
|
@@ -3958,6 +4055,11 @@ module Google
|
|
3958
4055
|
# @return [Array<String>]
|
3959
4056
|
attr_accessor :valid_node_versions
|
3960
4057
|
|
4058
|
+
# Maps of Kubernetes version and supported Windows server versions.
|
4059
|
+
# Corresponds to the JSON property `windowsVersionMaps`
|
4060
|
+
# @return [Hash<String,Google::Apis::ContainerV1beta1::WindowsVersions>]
|
4061
|
+
attr_accessor :windows_version_maps
|
4062
|
+
|
3961
4063
|
def initialize(**args)
|
3962
4064
|
update!(**args)
|
3963
4065
|
end
|
@@ -3970,6 +4072,27 @@ module Google
|
|
3970
4072
|
@valid_image_types = args[:valid_image_types] if args.key?(:valid_image_types)
|
3971
4073
|
@valid_master_versions = args[:valid_master_versions] if args.key?(:valid_master_versions)
|
3972
4074
|
@valid_node_versions = args[:valid_node_versions] if args.key?(:valid_node_versions)
|
4075
|
+
@windows_version_maps = args[:windows_version_maps] if args.key?(:windows_version_maps)
|
4076
|
+
end
|
4077
|
+
end
|
4078
|
+
|
4079
|
+
# Config to block services with externalIPs field.
|
4080
|
+
class ServiceExternalIPsConfig
|
4081
|
+
include Google::Apis::Core::Hashable
|
4082
|
+
|
4083
|
+
# Whether Services with ExternalIPs field are allowed or not.
|
4084
|
+
# Corresponds to the JSON property `enabled`
|
4085
|
+
# @return [Boolean]
|
4086
|
+
attr_accessor :enabled
|
4087
|
+
alias_method :enabled?, :enabled
|
4088
|
+
|
4089
|
+
def initialize(**args)
|
4090
|
+
update!(**args)
|
4091
|
+
end
|
4092
|
+
|
4093
|
+
# Update properties of this object
|
4094
|
+
def update!(**args)
|
4095
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
3973
4096
|
end
|
3974
4097
|
end
|
3975
4098
|
|
@@ -5048,20 +5171,7 @@ module Google
|
|
5048
5171
|
# @return [Google::Apis::ContainerV1beta1::NodeTaints]
|
5049
5172
|
attr_accessor :taints
|
5050
5173
|
|
5051
|
-
#
|
5052
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
5053
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
5054
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
5055
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
5056
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
5057
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
5058
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
5059
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
5060
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
5061
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
5062
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
5063
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
5064
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
5174
|
+
# Upgrade settings control disruption and speed of the upgrade.
|
5065
5175
|
# Corresponds to the JSON property `upgradeSettings`
|
5066
5176
|
# @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
|
5067
5177
|
attr_accessor :upgrade_settings
|
@@ -5196,20 +5306,7 @@ module Google
|
|
5196
5306
|
end
|
5197
5307
|
end
|
5198
5308
|
|
5199
|
-
#
|
5200
|
-
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
5201
|
-
# that can be simultaneously unavailable. maxSurge controls the number of
|
5202
|
-
# additional nodes that can be added to the node pool temporarily for the time
|
5203
|
-
# of the upgrade to increase the number of available nodes. (maxUnavailable +
|
5204
|
-
# maxSurge) determines the level of parallelism (how many nodes are being
|
5205
|
-
# upgraded at the same time). Note: upgrades inevitably introduce some
|
5206
|
-
# disruption since workloads need to be moved from old nodes to new, upgraded
|
5207
|
-
# ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
|
5208
|
-
# limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
|
5209
|
-
# node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
|
5210
|
-
# upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
|
5211
|
-
# upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
|
5212
|
-
# same time. This ensures that there are always at least 4 nodes available.
|
5309
|
+
#
|
5213
5310
|
class UpgradeSettings
|
5214
5311
|
include Google::Apis::Core::Hashable
|
5215
5312
|
|
@@ -5338,6 +5435,63 @@ module Google
|
|
5338
5435
|
end
|
5339
5436
|
end
|
5340
5437
|
|
5438
|
+
# Windows server version.
|
5439
|
+
class WindowsVersion
|
5440
|
+
include Google::Apis::Core::Hashable
|
5441
|
+
|
5442
|
+
# Windows server image type
|
5443
|
+
# Corresponds to the JSON property `imageType`
|
5444
|
+
# @return [String]
|
5445
|
+
attr_accessor :image_type
|
5446
|
+
|
5447
|
+
# Windows server build number
|
5448
|
+
# Corresponds to the JSON property `osVersion`
|
5449
|
+
# @return [String]
|
5450
|
+
attr_accessor :os_version
|
5451
|
+
|
5452
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
5453
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
5454
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
5455
|
+
# following: * A full date, with non-zero year, month, and day values * A month
|
5456
|
+
# and day value, with a zero year, such as an anniversary * A year on its own,
|
5457
|
+
# with zero month and day values * A year and month value, with a zero day, such
|
5458
|
+
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
5459
|
+
# google.protobuf.Timestamp`.
|
5460
|
+
# Corresponds to the JSON property `supportEndDate`
|
5461
|
+
# @return [Google::Apis::ContainerV1beta1::Date]
|
5462
|
+
attr_accessor :support_end_date
|
5463
|
+
|
5464
|
+
def initialize(**args)
|
5465
|
+
update!(**args)
|
5466
|
+
end
|
5467
|
+
|
5468
|
+
# Update properties of this object
|
5469
|
+
def update!(**args)
|
5470
|
+
@image_type = args[:image_type] if args.key?(:image_type)
|
5471
|
+
@os_version = args[:os_version] if args.key?(:os_version)
|
5472
|
+
@support_end_date = args[:support_end_date] if args.key?(:support_end_date)
|
5473
|
+
end
|
5474
|
+
end
|
5475
|
+
|
5476
|
+
# Windows server versions.
|
5477
|
+
class WindowsVersions
|
5478
|
+
include Google::Apis::Core::Hashable
|
5479
|
+
|
5480
|
+
# List of Windows server versions.
|
5481
|
+
# Corresponds to the JSON property `windowsVersions`
|
5482
|
+
# @return [Array<Google::Apis::ContainerV1beta1::WindowsVersion>]
|
5483
|
+
attr_accessor :windows_versions
|
5484
|
+
|
5485
|
+
def initialize(**args)
|
5486
|
+
update!(**args)
|
5487
|
+
end
|
5488
|
+
|
5489
|
+
# Update properties of this object
|
5490
|
+
def update!(**args)
|
5491
|
+
@windows_versions = args[:windows_versions] if args.key?(:windows_versions)
|
5492
|
+
end
|
5493
|
+
end
|
5494
|
+
|
5341
5495
|
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
5342
5496
|
class WorkloadCertificates
|
5343
5497
|
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.13.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210617"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -178,6 +178,12 @@ module Google
|
|
178
178
|
include Google::Apis::Core::JsonObjectSupport
|
179
179
|
end
|
180
180
|
|
181
|
+
class Date
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
|
+
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
185
|
+
end
|
186
|
+
|
181
187
|
class DefaultSnatStatus
|
182
188
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
189
|
|
@@ -400,6 +406,12 @@ module Google
|
|
400
406
|
include Google::Apis::Core::JsonObjectSupport
|
401
407
|
end
|
402
408
|
|
409
|
+
class NodeConfigDefaults
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
403
415
|
class NodeKubeletConfig
|
404
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
405
417
|
|
@@ -436,6 +448,12 @@ module Google
|
|
436
448
|
include Google::Apis::Core::JsonObjectSupport
|
437
449
|
end
|
438
450
|
|
451
|
+
class NodePoolDefaults
|
452
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
453
|
+
|
454
|
+
include Google::Apis::Core::JsonObjectSupport
|
455
|
+
end
|
456
|
+
|
439
457
|
class NodeTaint
|
440
458
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
459
|
|
@@ -544,6 +562,12 @@ module Google
|
|
544
562
|
include Google::Apis::Core::JsonObjectSupport
|
545
563
|
end
|
546
564
|
|
565
|
+
class ServiceExternalIPsConfig
|
566
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
567
|
+
|
568
|
+
include Google::Apis::Core::JsonObjectSupport
|
569
|
+
end
|
570
|
+
|
547
571
|
class SetAddonsConfigRequest
|
548
572
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
549
573
|
|
@@ -712,6 +736,18 @@ module Google
|
|
712
736
|
include Google::Apis::Core::JsonObjectSupport
|
713
737
|
end
|
714
738
|
|
739
|
+
class WindowsVersion
|
740
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
|
+
|
742
|
+
include Google::Apis::Core::JsonObjectSupport
|
743
|
+
end
|
744
|
+
|
745
|
+
class WindowsVersions
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
715
751
|
class WorkloadCertificates
|
716
752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
753
|
|
@@ -794,6 +830,7 @@ module Google
|
|
794
830
|
property :boot_disk_kms_key, as: 'bootDiskKmsKey'
|
795
831
|
property :disk_size_gb, as: 'diskSizeGb'
|
796
832
|
property :disk_type, as: 'diskType'
|
833
|
+
property :image_type, as: 'imageType'
|
797
834
|
property :management, as: 'management', class: Google::Apis::ContainerV1beta1::NodeManagement, decorator: Google::Apis::ContainerV1beta1::NodeManagement::Representation
|
798
835
|
|
799
836
|
property :min_cpu_platform, as: 'minCpuPlatform'
|
@@ -925,6 +962,8 @@ module Google
|
|
925
962
|
property :node_config, as: 'nodeConfig', class: Google::Apis::ContainerV1beta1::NodeConfig, decorator: Google::Apis::ContainerV1beta1::NodeConfig::Representation
|
926
963
|
|
927
964
|
property :node_ipv4_cidr_size, as: 'nodeIpv4CidrSize'
|
965
|
+
property :node_pool_defaults, as: 'nodePoolDefaults', class: Google::Apis::ContainerV1beta1::NodePoolDefaults, decorator: Google::Apis::ContainerV1beta1::NodePoolDefaults::Representation
|
966
|
+
|
928
967
|
collection :node_pools, as: 'nodePools', class: Google::Apis::ContainerV1beta1::NodePool, decorator: Google::Apis::ContainerV1beta1::NodePool::Representation
|
929
968
|
|
930
969
|
property :notification_config, as: 'notificationConfig', class: Google::Apis::ContainerV1beta1::NotificationConfig, decorator: Google::Apis::ContainerV1beta1::NotificationConfig::Representation
|
@@ -984,6 +1023,8 @@ module Google
|
|
984
1023
|
class Representation < Google::Apis::Core::JsonRepresentation
|
985
1024
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
986
1025
|
|
1026
|
+
property :desired_authenticator_groups_config, as: 'desiredAuthenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
|
1027
|
+
|
987
1028
|
property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
|
988
1029
|
|
989
1030
|
property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
|
@@ -1119,6 +1160,15 @@ module Google
|
|
1119
1160
|
end
|
1120
1161
|
end
|
1121
1162
|
|
1163
|
+
class Date
|
1164
|
+
# @private
|
1165
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1166
|
+
property :day, as: 'day'
|
1167
|
+
property :month, as: 'month'
|
1168
|
+
property :year, as: 'year'
|
1169
|
+
end
|
1170
|
+
end
|
1171
|
+
|
1122
1172
|
class DefaultSnatStatus
|
1123
1173
|
# @private
|
1124
1174
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1417,6 +1467,8 @@ module Google
|
|
1417
1467
|
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1418
1468
|
property :network, as: 'network'
|
1419
1469
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
1470
|
+
property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig::Representation
|
1471
|
+
|
1420
1472
|
property :subnetwork, as: 'subnetwork'
|
1421
1473
|
end
|
1422
1474
|
end
|
@@ -1481,6 +1533,12 @@ module Google
|
|
1481
1533
|
end
|
1482
1534
|
end
|
1483
1535
|
|
1536
|
+
class NodeConfigDefaults
|
1537
|
+
# @private
|
1538
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1539
|
+
end
|
1540
|
+
end
|
1541
|
+
|
1484
1542
|
class NodeKubeletConfig
|
1485
1543
|
# @private
|
1486
1544
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1555,6 +1613,14 @@ module Google
|
|
1555
1613
|
end
|
1556
1614
|
end
|
1557
1615
|
|
1616
|
+
class NodePoolDefaults
|
1617
|
+
# @private
|
1618
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1619
|
+
property :node_config_defaults, as: 'nodeConfigDefaults', class: Google::Apis::ContainerV1beta1::NodeConfigDefaults, decorator: Google::Apis::ContainerV1beta1::NodeConfigDefaults::Representation
|
1620
|
+
|
1621
|
+
end
|
1622
|
+
end
|
1623
|
+
|
1558
1624
|
class NodeTaint
|
1559
1625
|
# @private
|
1560
1626
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1738,6 +1804,15 @@ module Google
|
|
1738
1804
|
collection :valid_image_types, as: 'validImageTypes'
|
1739
1805
|
collection :valid_master_versions, as: 'validMasterVersions'
|
1740
1806
|
collection :valid_node_versions, as: 'validNodeVersions'
|
1807
|
+
hash :windows_version_maps, as: 'windowsVersionMaps', class: Google::Apis::ContainerV1beta1::WindowsVersions, decorator: Google::Apis::ContainerV1beta1::WindowsVersions::Representation
|
1808
|
+
|
1809
|
+
end
|
1810
|
+
end
|
1811
|
+
|
1812
|
+
class ServiceExternalIPsConfig
|
1813
|
+
# @private
|
1814
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1815
|
+
property :enabled, as: 'enabled'
|
1741
1816
|
end
|
1742
1817
|
end
|
1743
1818
|
|
@@ -2055,6 +2130,24 @@ module Google
|
|
2055
2130
|
end
|
2056
2131
|
end
|
2057
2132
|
|
2133
|
+
class WindowsVersion
|
2134
|
+
# @private
|
2135
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2136
|
+
property :image_type, as: 'imageType'
|
2137
|
+
property :os_version, as: 'osVersion'
|
2138
|
+
property :support_end_date, as: 'supportEndDate', class: Google::Apis::ContainerV1beta1::Date, decorator: Google::Apis::ContainerV1beta1::Date::Representation
|
2139
|
+
|
2140
|
+
end
|
2141
|
+
end
|
2142
|
+
|
2143
|
+
class WindowsVersions
|
2144
|
+
# @private
|
2145
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2146
|
+
collection :windows_versions, as: 'windowsVersions', class: Google::Apis::ContainerV1beta1::WindowsVersion, decorator: Google::Apis::ContainerV1beta1::WindowsVersion::Representation
|
2147
|
+
|
2148
|
+
end
|
2149
|
+
end
|
2150
|
+
|
2058
2151
|
class WorkloadCertificates
|
2059
2152
|
# @private
|
2060
2153
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.13.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: 2021-05
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Kubernetes Engine API V1beta1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.13.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|