google-apis-container_v1beta1 0.3.0 → 0.8.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: 80a6a38fa394be74645bdbc23e44b6a35b85f71908d00522b442b45818d22574
|
4
|
+
data.tar.gz: b23a12df72496e0e39516bd7397498e9ddf87e48b78355746738741a0f476a07
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec75951733fe62219d6cb54380ec7aa3399f53773791ba4b66c46c01fd10f4b1e315955fa8e8e97b1ed2eca0b4607a2f28e3b7860104c0d3a2cf33e2076ecdbc
|
7
|
+
data.tar.gz: 17972bee3e05847dfbcd14cf61d97c66aff97339ac72a36ba378f73e2bfb5d3a747ac9baf8190a2f5ff087b9fb18936da5f2958c2b53934cafe6084906c0d9f5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,26 @@
|
|
1
1
|
# Release history for google-apis-container_v1beta1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-05-19)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.7.0 (2021-05-13)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210429
|
10
|
+
|
11
|
+
### v0.6.0 (2021-03-24)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210312
|
14
|
+
|
15
|
+
### v0.5.0 (2021-03-12)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210226
|
18
|
+
* Regenerated using generator version 0.2.0
|
19
|
+
|
20
|
+
### v0.4.0 (2021-03-06)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210224
|
23
|
+
|
3
24
|
### v0.3.0 (2021-02-19)
|
4
25
|
|
5
26
|
* Regenerated from discovery document revision 20210216
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1beta1'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
@@ -37,6 +37,13 @@ module Google
|
|
37
37
|
# @return [String]
|
38
38
|
attr_accessor :accelerator_type
|
39
39
|
|
40
|
+
# Size of partitions to create on the GPU. Valid values are described in the
|
41
|
+
# NVIDIA [mig user guide](https://docs.nvidia.com/datacenter/tesla/mig-user-
|
42
|
+
# guide/#partitioning).
|
43
|
+
# Corresponds to the JSON property `gpuPartitionSize`
|
44
|
+
# @return [String]
|
45
|
+
attr_accessor :gpu_partition_size
|
46
|
+
|
40
47
|
def initialize(**args)
|
41
48
|
update!(**args)
|
42
49
|
end
|
@@ -45,6 +52,7 @@ module Google
|
|
45
52
|
def update!(**args)
|
46
53
|
@accelerator_count = args[:accelerator_count] if args.key?(:accelerator_count)
|
47
54
|
@accelerator_type = args[:accelerator_type] if args.key?(:accelerator_type)
|
55
|
+
@gpu_partition_size = args[:gpu_partition_size] if args.key?(:gpu_partition_size)
|
48
56
|
end
|
49
57
|
end
|
50
58
|
|
@@ -184,8 +192,7 @@ module Google
|
|
184
192
|
end
|
185
193
|
end
|
186
194
|
|
187
|
-
# Autopilot is the configuration for Autopilot settings on the cluster.
|
188
|
-
# the official product name of what is previously known as AutoGKE
|
195
|
+
# Autopilot is the configuration for Autopilot settings on the cluster.
|
189
196
|
class Autopilot
|
190
197
|
include Google::Apis::Core::Hashable
|
191
198
|
|
@@ -503,8 +510,7 @@ module Google
|
|
503
510
|
# @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
|
504
511
|
attr_accessor :authenticator_groups_config
|
505
512
|
|
506
|
-
# Autopilot is the configuration for Autopilot settings on the cluster.
|
507
|
-
# the official product name of what is previously known as AutoGKE
|
513
|
+
# Autopilot is the configuration for Autopilot settings on the cluster.
|
508
514
|
# Corresponds to the JSON property `autopilot`
|
509
515
|
# @return [Google::Apis::ContainerV1beta1::Autopilot]
|
510
516
|
attr_accessor :autopilot
|
@@ -617,6 +623,11 @@ module Google
|
|
617
623
|
# @return [String]
|
618
624
|
attr_accessor :expire_time
|
619
625
|
|
626
|
+
# Output only. Unique id for the cluster.
|
627
|
+
# Corresponds to the JSON property `id`
|
628
|
+
# @return [String]
|
629
|
+
attr_accessor :id
|
630
|
+
|
620
631
|
# The initial Kubernetes version for this cluster. Valid versions are those
|
621
632
|
# found in validMasterVersions returned by getServerConfig. The version can be
|
622
633
|
# upgraded over time; such upgrades are reflected in currentMasterVersion and
|
@@ -880,6 +891,11 @@ module Google
|
|
880
891
|
# @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
|
881
892
|
attr_accessor :vertical_pod_autoscaling
|
882
893
|
|
894
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
895
|
+
# Corresponds to the JSON property `workloadCertificates`
|
896
|
+
# @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
|
897
|
+
attr_accessor :workload_certificates
|
898
|
+
|
883
899
|
# Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
|
884
900
|
# Corresponds to the JSON property `workloadIdentityConfig`
|
885
901
|
# @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
|
@@ -918,6 +934,7 @@ module Google
|
|
918
934
|
@enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
|
919
935
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
920
936
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
937
|
+
@id = args[:id] if args.key?(:id)
|
921
938
|
@initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
|
922
939
|
@initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
|
923
940
|
@instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
|
@@ -956,6 +973,7 @@ module Google
|
|
956
973
|
@tpu_config = args[:tpu_config] if args.key?(:tpu_config)
|
957
974
|
@tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
|
958
975
|
@vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
|
976
|
+
@workload_certificates = args[:workload_certificates] if args.key?(:workload_certificates)
|
959
977
|
@workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
|
960
978
|
@zone = args[:zone] if args.key?(:zone)
|
961
979
|
end
|
@@ -1040,6 +1058,11 @@ module Google
|
|
1040
1058
|
# @return [Google::Apis::ContainerV1beta1::AddonsConfig]
|
1041
1059
|
attr_accessor :desired_addons_config
|
1042
1060
|
|
1061
|
+
# Autopilot is the configuration for Autopilot settings on the cluster.
|
1062
|
+
# Corresponds to the JSON property `desiredAutopilot`
|
1063
|
+
# @return [Google::Apis::ContainerV1beta1::Autopilot]
|
1064
|
+
attr_accessor :desired_autopilot
|
1065
|
+
|
1043
1066
|
# Configuration for Binary Authorization.
|
1044
1067
|
# Corresponds to the JSON property `desiredBinaryAuthorization`
|
1045
1068
|
# @return [Google::Apis::ContainerV1beta1::BinaryAuthorization]
|
@@ -1073,6 +1096,11 @@ module Google
|
|
1073
1096
|
# @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
|
1074
1097
|
attr_accessor :desired_default_snat_status
|
1075
1098
|
|
1099
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
1100
|
+
# Corresponds to the JSON property `desiredDnsConfig`
|
1101
|
+
# @return [Google::Apis::ContainerV1beta1::DnsConfig]
|
1102
|
+
attr_accessor :desired_dns_config
|
1103
|
+
|
1076
1104
|
# The desired image type for the node pool. NOTE: Set the "desired_node_pool"
|
1077
1105
|
# field as well.
|
1078
1106
|
# Corresponds to the JSON property `desiredImageType`
|
@@ -1085,6 +1113,12 @@ module Google
|
|
1085
1113
|
# @return [Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig]
|
1086
1114
|
attr_accessor :desired_intra_node_visibility_config
|
1087
1115
|
|
1116
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
1117
|
+
# subsetting on this cluster.
|
1118
|
+
# Corresponds to the JSON property `desiredL4ilbSubsettingConfig`
|
1119
|
+
# @return [Google::Apis::ContainerV1beta1::IlbSubsettingConfig]
|
1120
|
+
attr_accessor :desired_l4ilb_subsetting_config
|
1121
|
+
|
1088
1122
|
# The desired list of Google Compute Engine [zones](https://cloud.google.com/
|
1089
1123
|
# compute/docs/zones#available) in which the cluster's nodes should be located.
|
1090
1124
|
# This list must always include the cluster's primary zone. Warning: changing
|
@@ -1215,6 +1249,11 @@ module Google
|
|
1215
1249
|
# @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
|
1216
1250
|
attr_accessor :desired_vertical_pod_autoscaling
|
1217
1251
|
|
1252
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
1253
|
+
# Corresponds to the JSON property `desiredWorkloadCertificates`
|
1254
|
+
# @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
|
1255
|
+
attr_accessor :desired_workload_certificates
|
1256
|
+
|
1218
1257
|
# Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
|
1219
1258
|
# Corresponds to the JSON property `desiredWorkloadIdentityConfig`
|
1220
1259
|
# @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
|
@@ -1227,14 +1266,17 @@ module Google
|
|
1227
1266
|
# Update properties of this object
|
1228
1267
|
def update!(**args)
|
1229
1268
|
@desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
|
1269
|
+
@desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
|
1230
1270
|
@desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
|
1231
1271
|
@desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
|
1232
1272
|
@desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
|
1233
1273
|
@desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
|
1234
1274
|
@desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
|
1235
1275
|
@desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
|
1276
|
+
@desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
|
1236
1277
|
@desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
|
1237
1278
|
@desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
|
1279
|
+
@desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
|
1238
1280
|
@desired_locations = args[:desired_locations] if args.key?(:desired_locations)
|
1239
1281
|
@desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
|
1240
1282
|
@desired_master = args[:desired_master] if args.key?(:desired_master)
|
@@ -1253,6 +1295,7 @@ module Google
|
|
1253
1295
|
@desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
|
1254
1296
|
@desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
|
1255
1297
|
@desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
|
1298
|
+
@desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
|
1256
1299
|
@desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
|
1257
1300
|
end
|
1258
1301
|
end
|
@@ -1458,6 +1501,37 @@ module Google
|
|
1458
1501
|
end
|
1459
1502
|
end
|
1460
1503
|
|
1504
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
1505
|
+
class DnsConfig
|
1506
|
+
include Google::Apis::Core::Hashable
|
1507
|
+
|
1508
|
+
# cluster_dns indicates which in-cluster DNS provider should be used.
|
1509
|
+
# Corresponds to the JSON property `clusterDns`
|
1510
|
+
# @return [String]
|
1511
|
+
attr_accessor :cluster_dns
|
1512
|
+
|
1513
|
+
# cluster_dns_domain is the suffix used for all cluster service records.
|
1514
|
+
# Corresponds to the JSON property `clusterDnsDomain`
|
1515
|
+
# @return [String]
|
1516
|
+
attr_accessor :cluster_dns_domain
|
1517
|
+
|
1518
|
+
# cluster_dns_scope indicates the scope of access to cluster DNS records.
|
1519
|
+
# Corresponds to the JSON property `clusterDnsScope`
|
1520
|
+
# @return [String]
|
1521
|
+
attr_accessor :cluster_dns_scope
|
1522
|
+
|
1523
|
+
def initialize(**args)
|
1524
|
+
update!(**args)
|
1525
|
+
end
|
1526
|
+
|
1527
|
+
# Update properties of this object
|
1528
|
+
def update!(**args)
|
1529
|
+
@cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
|
1530
|
+
@cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
|
1531
|
+
@cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
|
1532
|
+
end
|
1533
|
+
end
|
1534
|
+
|
1461
1535
|
# Time window specified for daily maintenance operations.
|
1462
1536
|
class DailyMaintenanceWindow
|
1463
1537
|
include Google::Apis::Core::Hashable
|
@@ -1774,6 +1848,27 @@ module Google
|
|
1774
1848
|
end
|
1775
1849
|
end
|
1776
1850
|
|
1851
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
1852
|
+
# subsetting on this cluster.
|
1853
|
+
class IlbSubsettingConfig
|
1854
|
+
include Google::Apis::Core::Hashable
|
1855
|
+
|
1856
|
+
# Enables l4 ILB subsetting for this cluster
|
1857
|
+
# Corresponds to the JSON property `enabled`
|
1858
|
+
# @return [Boolean]
|
1859
|
+
attr_accessor :enabled
|
1860
|
+
alias_method :enabled?, :enabled
|
1861
|
+
|
1862
|
+
def initialize(**args)
|
1863
|
+
update!(**args)
|
1864
|
+
end
|
1865
|
+
|
1866
|
+
# Update properties of this object
|
1867
|
+
def update!(**args)
|
1868
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
1869
|
+
end
|
1870
|
+
end
|
1871
|
+
|
1777
1872
|
# Configuration for controlling how IPs are allocated in the cluster.
|
1778
1873
|
class IpAllocationPolicy
|
1779
1874
|
include Google::Apis::Core::Hashable
|
@@ -2526,6 +2621,11 @@ module Google
|
|
2526
2621
|
# @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
|
2527
2622
|
attr_accessor :default_snat_status
|
2528
2623
|
|
2624
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
2625
|
+
# Corresponds to the JSON property `dnsConfig`
|
2626
|
+
# @return [Google::Apis::ContainerV1beta1::DnsConfig]
|
2627
|
+
attr_accessor :dns_config
|
2628
|
+
|
2529
2629
|
# Whether Intra-node visibility is enabled for this cluster. This makes same
|
2530
2630
|
# node pod to pod traffic visible for VPC network.
|
2531
2631
|
# Corresponds to the JSON property `enableIntraNodeVisibility`
|
@@ -2533,6 +2633,12 @@ module Google
|
|
2533
2633
|
attr_accessor :enable_intra_node_visibility
|
2534
2634
|
alias_method :enable_intra_node_visibility?, :enable_intra_node_visibility
|
2535
2635
|
|
2636
|
+
# Whether L4ILB Subsetting is enabled for this cluster.
|
2637
|
+
# Corresponds to the JSON property `enableL4ilbSubsetting`
|
2638
|
+
# @return [Boolean]
|
2639
|
+
attr_accessor :enable_l4ilb_subsetting
|
2640
|
+
alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
|
2641
|
+
|
2536
2642
|
# Output only. The relative name of the Google Compute Engine network(https://
|
2537
2643
|
# cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
|
2538
2644
|
# cluster is connected. Example: projects/my-project/global/networks/my-network
|
@@ -2561,7 +2667,9 @@ module Google
|
|
2561
2667
|
def update!(**args)
|
2562
2668
|
@datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
|
2563
2669
|
@default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
|
2670
|
+
@dns_config = args[:dns_config] if args.key?(:dns_config)
|
2564
2671
|
@enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
|
2672
|
+
@enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
|
2565
2673
|
@network = args[:network] if args.key?(:network)
|
2566
2674
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
2567
2675
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
@@ -2617,6 +2725,27 @@ module Google
|
|
2617
2725
|
end
|
2618
2726
|
end
|
2619
2727
|
|
2728
|
+
# Collection of Compute Engine network tags that can be applied to a node's
|
2729
|
+
# underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
|
2730
|
+
# docs/reference/rest/v1/NodeConfig)).
|
2731
|
+
class NetworkTags
|
2732
|
+
include Google::Apis::Core::Hashable
|
2733
|
+
|
2734
|
+
# List of network tags.
|
2735
|
+
# Corresponds to the JSON property `tags`
|
2736
|
+
# @return [Array<String>]
|
2737
|
+
attr_accessor :tags
|
2738
|
+
|
2739
|
+
def initialize(**args)
|
2740
|
+
update!(**args)
|
2741
|
+
end
|
2742
|
+
|
2743
|
+
# Update properties of this object
|
2744
|
+
def update!(**args)
|
2745
|
+
@tags = args[:tags] if args.key?(:tags)
|
2746
|
+
end
|
2747
|
+
end
|
2748
|
+
|
2620
2749
|
# Parameters that describe the nodes in a cluster.
|
2621
2750
|
class NodeConfig
|
2622
2751
|
include Google::Apis::Core::Hashable
|
@@ -2876,6 +3005,26 @@ module Google
|
|
2876
3005
|
end
|
2877
3006
|
end
|
2878
3007
|
|
3008
|
+
# Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
|
3009
|
+
# concepts/overview/working-with-objects/labels).
|
3010
|
+
class NodeLabels
|
3011
|
+
include Google::Apis::Core::Hashable
|
3012
|
+
|
3013
|
+
# Map of node label keys and node label values.
|
3014
|
+
# Corresponds to the JSON property `labels`
|
3015
|
+
# @return [Hash<String,String>]
|
3016
|
+
attr_accessor :labels
|
3017
|
+
|
3018
|
+
def initialize(**args)
|
3019
|
+
update!(**args)
|
3020
|
+
end
|
3021
|
+
|
3022
|
+
# Update properties of this object
|
3023
|
+
def update!(**args)
|
3024
|
+
@labels = args[:labels] if args.key?(:labels)
|
3025
|
+
end
|
3026
|
+
end
|
3027
|
+
|
2879
3028
|
# NodeManagement defines the set of node management services turned on for the
|
2880
3029
|
# node pool.
|
2881
3030
|
class NodeManagement
|
@@ -2911,6 +3060,49 @@ module Google
|
|
2911
3060
|
end
|
2912
3061
|
end
|
2913
3062
|
|
3063
|
+
# Parameters for node pool-level network config. Only applicable if `
|
3064
|
+
# ip_allocation_policy.use_ip_aliases` is true.
|
3065
|
+
class NodeNetworkConfig
|
3066
|
+
include Google::Apis::Core::Hashable
|
3067
|
+
|
3068
|
+
# Input only. Whether to create a new range for pod IPs in this node pool.
|
3069
|
+
# Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are
|
3070
|
+
# not specified. If neither `create_pod_range` or `pod_range` are specified, the
|
3071
|
+
# cluster-level default (`ip_allocation_policy.cluster_ipv4_cidr_block`) is used.
|
3072
|
+
# Corresponds to the JSON property `createPodRange`
|
3073
|
+
# @return [Boolean]
|
3074
|
+
attr_accessor :create_pod_range
|
3075
|
+
alias_method :create_pod_range?, :create_pod_range
|
3076
|
+
|
3077
|
+
# The IP address range for pod IPs in this node pool. Only applicable if `
|
3078
|
+
# create_pod_range` is true. Set to blank to have a range chosen with the
|
3079
|
+
# default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
|
3080
|
+
# specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
|
3081
|
+
# Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) to pick a
|
3082
|
+
# specific range to use.
|
3083
|
+
# Corresponds to the JSON property `podIpv4CidrBlock`
|
3084
|
+
# @return [String]
|
3085
|
+
attr_accessor :pod_ipv4_cidr_block
|
3086
|
+
|
3087
|
+
# The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
|
3088
|
+
# ID is used for the new range. If `create_pod_range` is false, uses an existing
|
3089
|
+
# secondary range with this ID.
|
3090
|
+
# Corresponds to the JSON property `podRange`
|
3091
|
+
# @return [String]
|
3092
|
+
attr_accessor :pod_range
|
3093
|
+
|
3094
|
+
def initialize(**args)
|
3095
|
+
update!(**args)
|
3096
|
+
end
|
3097
|
+
|
3098
|
+
# Update properties of this object
|
3099
|
+
def update!(**args)
|
3100
|
+
@create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
|
3101
|
+
@pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
|
3102
|
+
@pod_range = args[:pod_range] if args.key?(:pod_range)
|
3103
|
+
end
|
3104
|
+
end
|
3105
|
+
|
2914
3106
|
# NodePool contains the name and configuration for a cluster's node pool. Node
|
2915
3107
|
# pools are a set of nodes (i.e. VM's), with a common configuration and
|
2916
3108
|
# specification, under the control of the cluster master. They may have a set of
|
@@ -2977,6 +3169,12 @@ module Google
|
|
2977
3169
|
# @return [String]
|
2978
3170
|
attr_accessor :name
|
2979
3171
|
|
3172
|
+
# Parameters for node pool-level network config. Only applicable if `
|
3173
|
+
# ip_allocation_policy.use_ip_aliases` is true.
|
3174
|
+
# Corresponds to the JSON property `networkConfig`
|
3175
|
+
# @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
|
3176
|
+
attr_accessor :network_config
|
3177
|
+
|
2980
3178
|
# [Output only] The pod CIDR block size per node in this node pool.
|
2981
3179
|
# Corresponds to the JSON property `podIpv4CidrSize`
|
2982
3180
|
# @return [Fixnum]
|
@@ -3036,6 +3234,7 @@ module Google
|
|
3036
3234
|
@management = args[:management] if args.key?(:management)
|
3037
3235
|
@max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
|
3038
3236
|
@name = args[:name] if args.key?(:name)
|
3237
|
+
@network_config = args[:network_config] if args.key?(:network_config)
|
3039
3238
|
@pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
|
3040
3239
|
@self_link = args[:self_link] if args.key?(:self_link)
|
3041
3240
|
@status = args[:status] if args.key?(:status)
|
@@ -3120,6 +3319,26 @@ module Google
|
|
3120
3319
|
end
|
3121
3320
|
end
|
3122
3321
|
|
3322
|
+
# Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
|
3323
|
+
# configuration/taint-and-toleration).
|
3324
|
+
class NodeTaints
|
3325
|
+
include Google::Apis::Core::Hashable
|
3326
|
+
|
3327
|
+
# List of node taints.
|
3328
|
+
# Corresponds to the JSON property `taints`
|
3329
|
+
# @return [Array<Google::Apis::ContainerV1beta1::NodeTaint>]
|
3330
|
+
attr_accessor :taints
|
3331
|
+
|
3332
|
+
def initialize(**args)
|
3333
|
+
update!(**args)
|
3334
|
+
end
|
3335
|
+
|
3336
|
+
# Update properties of this object
|
3337
|
+
def update!(**args)
|
3338
|
+
@taints = args[:taints] if args.key?(:taints)
|
3339
|
+
end
|
3340
|
+
end
|
3341
|
+
|
3123
3342
|
# NotificationConfig is the configuration of notifications.
|
3124
3343
|
class NotificationConfig
|
3125
3344
|
include Google::Apis::Core::Hashable
|
@@ -4766,6 +4985,12 @@ module Google
|
|
4766
4985
|
# @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
|
4767
4986
|
attr_accessor :kubelet_config
|
4768
4987
|
|
4988
|
+
# Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
|
4989
|
+
# concepts/overview/working-with-objects/labels).
|
4990
|
+
# Corresponds to the JSON property `labels`
|
4991
|
+
# @return [Google::Apis::ContainerV1beta1::NodeLabels]
|
4992
|
+
attr_accessor :labels
|
4993
|
+
|
4769
4994
|
# Parameters that can be configured on Linux nodes.
|
4770
4995
|
# Corresponds to the JSON property `linuxNodeConfig`
|
4771
4996
|
# @return [Google::Apis::ContainerV1beta1::LinuxNodeConfig]
|
@@ -4810,6 +5035,19 @@ module Google
|
|
4810
5035
|
# @return [String]
|
4811
5036
|
attr_accessor :project_id
|
4812
5037
|
|
5038
|
+
# Collection of Compute Engine network tags that can be applied to a node's
|
5039
|
+
# underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
|
5040
|
+
# docs/reference/rest/v1/NodeConfig)).
|
5041
|
+
# Corresponds to the JSON property `tags`
|
5042
|
+
# @return [Google::Apis::ContainerV1beta1::NetworkTags]
|
5043
|
+
attr_accessor :tags
|
5044
|
+
|
5045
|
+
# Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
|
5046
|
+
# configuration/taint-and-toleration).
|
5047
|
+
# Corresponds to the JSON property `taints`
|
5048
|
+
# @return [Google::Apis::ContainerV1beta1::NodeTaints]
|
5049
|
+
attr_accessor :taints
|
5050
|
+
|
4813
5051
|
# These upgrade settings control the level of parallelism and the level of
|
4814
5052
|
# disruption caused by an upgrade. maxUnavailable controls the number of nodes
|
4815
5053
|
# that can be simultaneously unavailable. maxSurge controls the number of
|
@@ -4850,12 +5088,15 @@ module Google
|
|
4850
5088
|
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
4851
5089
|
@image_type = args[:image_type] if args.key?(:image_type)
|
4852
5090
|
@kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
|
5091
|
+
@labels = args[:labels] if args.key?(:labels)
|
4853
5092
|
@linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
|
4854
5093
|
@locations = args[:locations] if args.key?(:locations)
|
4855
5094
|
@name = args[:name] if args.key?(:name)
|
4856
5095
|
@node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
|
4857
5096
|
@node_version = args[:node_version] if args.key?(:node_version)
|
4858
5097
|
@project_id = args[:project_id] if args.key?(:project_id)
|
5098
|
+
@tags = args[:tags] if args.key?(:tags)
|
5099
|
+
@taints = args[:taints] if args.key?(:taints)
|
4859
5100
|
@upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
|
4860
5101
|
@workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
|
4861
5102
|
@zone = args[:zone] if args.key?(:zone)
|
@@ -4875,8 +5116,8 @@ module Google
|
|
4875
5116
|
# @return [Google::Apis::ContainerV1beta1::ReleaseChannel]
|
4876
5117
|
attr_accessor :release_channel
|
4877
5118
|
|
4878
|
-
# Optional
|
4879
|
-
#
|
5119
|
+
# Optional relative path to the resource. For example, the relative path of the
|
5120
|
+
# node pool.
|
4880
5121
|
# Corresponds to the JSON property `resource`
|
4881
5122
|
# @return [String]
|
4882
5123
|
attr_accessor :resource
|
@@ -5097,6 +5338,30 @@ module Google
|
|
5097
5338
|
end
|
5098
5339
|
end
|
5099
5340
|
|
5341
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
5342
|
+
class WorkloadCertificates
|
5343
|
+
include Google::Apis::Core::Hashable
|
5344
|
+
|
5345
|
+
# enable_certificates controls issuance of workload mTLS certificates. If set,
|
5346
|
+
# the GKE Workload Identity Certificates controller and node agent will be
|
5347
|
+
# deployed in the cluster, which can then be configured by creating a
|
5348
|
+
# WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
|
5349
|
+
# workload_pool must be non-empty).
|
5350
|
+
# Corresponds to the JSON property `enableCertificates`
|
5351
|
+
# @return [Boolean]
|
5352
|
+
attr_accessor :enable_certificates
|
5353
|
+
alias_method :enable_certificates?, :enable_certificates
|
5354
|
+
|
5355
|
+
def initialize(**args)
|
5356
|
+
update!(**args)
|
5357
|
+
end
|
5358
|
+
|
5359
|
+
# Update properties of this object
|
5360
|
+
def update!(**args)
|
5361
|
+
@enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
|
5362
|
+
end
|
5363
|
+
end
|
5364
|
+
|
5100
5365
|
# Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
|
5101
5366
|
class WorkloadIdentityConfig
|
5102
5367
|
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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.2.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210429"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -160,6 +160,12 @@ module Google
|
|
160
160
|
include Google::Apis::Core::JsonObjectSupport
|
161
161
|
end
|
162
162
|
|
163
|
+
class DnsConfig
|
164
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
|
+
|
166
|
+
include Google::Apis::Core::JsonObjectSupport
|
167
|
+
end
|
168
|
+
|
163
169
|
class DailyMaintenanceWindow
|
164
170
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
165
171
|
|
@@ -232,6 +238,12 @@ module Google
|
|
232
238
|
include Google::Apis::Core::JsonObjectSupport
|
233
239
|
end
|
234
240
|
|
241
|
+
class IlbSubsettingConfig
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
235
247
|
class IpAllocationPolicy
|
236
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
249
|
|
@@ -376,6 +388,12 @@ module Google
|
|
376
388
|
include Google::Apis::Core::JsonObjectSupport
|
377
389
|
end
|
378
390
|
|
391
|
+
class NetworkTags
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
|
+
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
395
|
+
end
|
396
|
+
|
379
397
|
class NodeConfig
|
380
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
381
399
|
|
@@ -388,12 +406,24 @@ module Google
|
|
388
406
|
include Google::Apis::Core::JsonObjectSupport
|
389
407
|
end
|
390
408
|
|
409
|
+
class NodeLabels
|
410
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
411
|
+
|
412
|
+
include Google::Apis::Core::JsonObjectSupport
|
413
|
+
end
|
414
|
+
|
391
415
|
class NodeManagement
|
392
416
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
393
417
|
|
394
418
|
include Google::Apis::Core::JsonObjectSupport
|
395
419
|
end
|
396
420
|
|
421
|
+
class NodeNetworkConfig
|
422
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
423
|
+
|
424
|
+
include Google::Apis::Core::JsonObjectSupport
|
425
|
+
end
|
426
|
+
|
397
427
|
class NodePool
|
398
428
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
399
429
|
|
@@ -412,6 +442,12 @@ module Google
|
|
412
442
|
include Google::Apis::Core::JsonObjectSupport
|
413
443
|
end
|
414
444
|
|
445
|
+
class NodeTaints
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
415
451
|
class NotificationConfig
|
416
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
453
|
|
@@ -676,6 +712,12 @@ module Google
|
|
676
712
|
include Google::Apis::Core::JsonObjectSupport
|
677
713
|
end
|
678
714
|
|
715
|
+
class WorkloadCertificates
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
|
+
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
719
|
+
end
|
720
|
+
|
679
721
|
class WorkloadIdentityConfig
|
680
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
723
|
|
@@ -693,6 +735,7 @@ module Google
|
|
693
735
|
class Representation < Google::Apis::Core::JsonRepresentation
|
694
736
|
property :accelerator_count, :numeric_string => true, as: 'acceleratorCount'
|
695
737
|
property :accelerator_type, as: 'acceleratorType'
|
738
|
+
property :gpu_partition_size, as: 'gpuPartitionSize'
|
696
739
|
end
|
697
740
|
end
|
698
741
|
|
@@ -851,6 +894,7 @@ module Google
|
|
851
894
|
property :enable_tpu, as: 'enableTpu'
|
852
895
|
property :endpoint, as: 'endpoint'
|
853
896
|
property :expire_time, as: 'expireTime'
|
897
|
+
property :id, as: 'id'
|
854
898
|
property :initial_cluster_version, as: 'initialClusterVersion'
|
855
899
|
property :initial_node_count, as: 'initialNodeCount'
|
856
900
|
collection :instance_group_urls, as: 'instanceGroupUrls'
|
@@ -907,6 +951,8 @@ module Google
|
|
907
951
|
property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
|
908
952
|
property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
|
909
953
|
|
954
|
+
property :workload_certificates, as: 'workloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
|
955
|
+
|
910
956
|
property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
|
911
957
|
|
912
958
|
property :zone, as: 'zone'
|
@@ -938,6 +984,8 @@ module Google
|
|
938
984
|
class Representation < Google::Apis::Core::JsonRepresentation
|
939
985
|
property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
|
940
986
|
|
987
|
+
property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
|
988
|
+
|
941
989
|
property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
|
942
990
|
|
943
991
|
property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
|
@@ -949,9 +997,13 @@ module Google
|
|
949
997
|
property :desired_datapath_provider, as: 'desiredDatapathProvider'
|
950
998
|
property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
|
951
999
|
|
1000
|
+
property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
|
1001
|
+
|
952
1002
|
property :desired_image_type, as: 'desiredImageType'
|
953
1003
|
property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
|
954
1004
|
|
1005
|
+
property :desired_l4ilb_subsetting_config, as: 'desiredL4ilbSubsettingConfig', class: Google::Apis::ContainerV1beta1::IlbSubsettingConfig, decorator: Google::Apis::ContainerV1beta1::IlbSubsettingConfig::Representation
|
1006
|
+
|
955
1007
|
collection :desired_locations, as: 'desiredLocations'
|
956
1008
|
property :desired_logging_service, as: 'desiredLoggingService'
|
957
1009
|
property :desired_master, as: 'desiredMaster', class: Google::Apis::ContainerV1beta1::Master, decorator: Google::Apis::ContainerV1beta1::Master::Representation
|
@@ -981,6 +1033,8 @@ module Google
|
|
981
1033
|
|
982
1034
|
property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
|
983
1035
|
|
1036
|
+
property :desired_workload_certificates, as: 'desiredWorkloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
|
1037
|
+
|
984
1038
|
property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
|
985
1039
|
|
986
1040
|
end
|
@@ -1040,6 +1094,15 @@ module Google
|
|
1040
1094
|
end
|
1041
1095
|
end
|
1042
1096
|
|
1097
|
+
class DnsConfig
|
1098
|
+
# @private
|
1099
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1100
|
+
property :cluster_dns, as: 'clusterDns'
|
1101
|
+
property :cluster_dns_domain, as: 'clusterDnsDomain'
|
1102
|
+
property :cluster_dns_scope, as: 'clusterDnsScope'
|
1103
|
+
end
|
1104
|
+
end
|
1105
|
+
|
1043
1106
|
class DailyMaintenanceWindow
|
1044
1107
|
# @private
|
1045
1108
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1138,6 +1201,13 @@ module Google
|
|
1138
1201
|
end
|
1139
1202
|
end
|
1140
1203
|
|
1204
|
+
class IlbSubsettingConfig
|
1205
|
+
# @private
|
1206
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1207
|
+
property :enabled, as: 'enabled'
|
1208
|
+
end
|
1209
|
+
end
|
1210
|
+
|
1141
1211
|
class IpAllocationPolicy
|
1142
1212
|
# @private
|
1143
1213
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1341,7 +1411,10 @@ module Google
|
|
1341
1411
|
property :datapath_provider, as: 'datapathProvider'
|
1342
1412
|
property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
|
1343
1413
|
|
1414
|
+
property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
|
1415
|
+
|
1344
1416
|
property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
|
1417
|
+
property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
|
1345
1418
|
property :network, as: 'network'
|
1346
1419
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
1347
1420
|
property :subnetwork, as: 'subnetwork'
|
@@ -1363,6 +1436,13 @@ module Google
|
|
1363
1436
|
end
|
1364
1437
|
end
|
1365
1438
|
|
1439
|
+
class NetworkTags
|
1440
|
+
# @private
|
1441
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1442
|
+
collection :tags, as: 'tags'
|
1443
|
+
end
|
1444
|
+
end
|
1445
|
+
|
1366
1446
|
class NodeConfig
|
1367
1447
|
# @private
|
1368
1448
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1410,6 +1490,13 @@ module Google
|
|
1410
1490
|
end
|
1411
1491
|
end
|
1412
1492
|
|
1493
|
+
class NodeLabels
|
1494
|
+
# @private
|
1495
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1496
|
+
hash :labels, as: 'labels'
|
1497
|
+
end
|
1498
|
+
end
|
1499
|
+
|
1413
1500
|
class NodeManagement
|
1414
1501
|
# @private
|
1415
1502
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1420,6 +1507,15 @@ module Google
|
|
1420
1507
|
end
|
1421
1508
|
end
|
1422
1509
|
|
1510
|
+
class NodeNetworkConfig
|
1511
|
+
# @private
|
1512
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1513
|
+
property :create_pod_range, as: 'createPodRange'
|
1514
|
+
property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
|
1515
|
+
property :pod_range, as: 'podRange'
|
1516
|
+
end
|
1517
|
+
end
|
1518
|
+
|
1423
1519
|
class NodePool
|
1424
1520
|
# @private
|
1425
1521
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1437,6 +1533,8 @@ module Google
|
|
1437
1533
|
property :max_pods_constraint, as: 'maxPodsConstraint', class: Google::Apis::ContainerV1beta1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1beta1::MaxPodsConstraint::Representation
|
1438
1534
|
|
1439
1535
|
property :name, as: 'name'
|
1536
|
+
property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
|
1537
|
+
|
1440
1538
|
property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
|
1441
1539
|
property :self_link, as: 'selfLink'
|
1442
1540
|
property :status, as: 'status'
|
@@ -1466,6 +1564,14 @@ module Google
|
|
1466
1564
|
end
|
1467
1565
|
end
|
1468
1566
|
|
1567
|
+
class NodeTaints
|
1568
|
+
# @private
|
1569
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1570
|
+
collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
|
1571
|
+
|
1572
|
+
end
|
1573
|
+
end
|
1574
|
+
|
1469
1575
|
class NotificationConfig
|
1470
1576
|
# @private
|
1471
1577
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1869,6 +1975,8 @@ module Google
|
|
1869
1975
|
property :image_type, as: 'imageType'
|
1870
1976
|
property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
|
1871
1977
|
|
1978
|
+
property :labels, as: 'labels', class: Google::Apis::ContainerV1beta1::NodeLabels, decorator: Google::Apis::ContainerV1beta1::NodeLabels::Representation
|
1979
|
+
|
1872
1980
|
property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1beta1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1beta1::LinuxNodeConfig::Representation
|
1873
1981
|
|
1874
1982
|
collection :locations, as: 'locations'
|
@@ -1876,6 +1984,10 @@ module Google
|
|
1876
1984
|
property :node_pool_id, as: 'nodePoolId'
|
1877
1985
|
property :node_version, as: 'nodeVersion'
|
1878
1986
|
property :project_id, as: 'projectId'
|
1987
|
+
property :tags, as: 'tags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
|
1988
|
+
|
1989
|
+
property :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaints, decorator: Google::Apis::ContainerV1beta1::NodeTaints::Representation
|
1990
|
+
|
1879
1991
|
property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1beta1::UpgradeSettings, decorator: Google::Apis::ContainerV1beta1::UpgradeSettings::Representation
|
1880
1992
|
|
1881
1993
|
property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig::Representation
|
@@ -1943,6 +2055,13 @@ module Google
|
|
1943
2055
|
end
|
1944
2056
|
end
|
1945
2057
|
|
2058
|
+
class WorkloadCertificates
|
2059
|
+
# @private
|
2060
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2061
|
+
property :enable_certificates, as: 'enableCertificates'
|
2062
|
+
end
|
2063
|
+
end
|
2064
|
+
|
1946
2065
|
class WorkloadIdentityConfig
|
1947
2066
|
# @private
|
1948
2067
|
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.8.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-
|
11
|
+
date: 2021-05-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -52,7 +52,7 @@ licenses:
|
|
52
52
|
metadata:
|
53
53
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
54
|
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.
|
55
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.8.0
|
56
56
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
|
57
57
|
post_install_message:
|
58
58
|
rdoc_options: []
|
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
62
62
|
requirements:
|
63
63
|
- - ">="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
version: '2.
|
65
|
+
version: '2.5'
|
66
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
67
67
|
requirements:
|
68
68
|
- - ">="
|
69
69
|
- !ruby/object:Gem::Version
|
70
70
|
version: '0'
|
71
71
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
72
|
+
rubygems_version: 3.2.17
|
73
73
|
signing_key:
|
74
74
|
specification_version: 4
|
75
75
|
summary: Simple REST client for Kubernetes Engine API V1beta1
|