google-apis-container_v1beta1 0.6.0 → 0.11.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: adde408d57f43f442b3eac9ad7a57c295dc22059bfa553eb81ffbc2e5766608c
4
- data.tar.gz: c70f806064994d643b9c115b950f935660aad1c7a26bd7bd27659cca76d7c4dd
3
+ metadata.gz: 4868cc1a29aa23cc7ef52e7a69de5ab1187df3ce943269e426421c000f5a27c2
4
+ data.tar.gz: 7bc181ba0a79dbf95b02955634b603175bed868e19bbf7fdfa5ff6c8d2719c4f
5
5
  SHA512:
6
- metadata.gz: 85b7b979c1c6f3879b004c53cc25fd60bc5fcfe66c6ce5fc8497fb0a57e82047865bb4bcd6426d122b31bc50eb05fcebc4c27d365313bd20972c1f9f28365539
7
- data.tar.gz: 7e8e8f0b8464feb3561a2ab2db6af78336301376bca12d5e3f3e7f816de86764eba1b623ea087e2baf288cd7a4bd19d80bcbc761157bfdae971c0cfaa8f9c12f
6
+ metadata.gz: 7956599592ae7776e221a71cc016a018a1fdec1625bd4234483db6a54df6a830ff677f2813285ce4fbba782d21c8d1a77eeb8f31c8f04e9c5fd15a60706ede91
7
+ data.tar.gz: f82d5b73f9cd10b5056d300a6de2c283b238479c1776437ec52492a57bb77cb1560d95b4c5af64de56f07dcbdac9a0fd515cc3967fe817c42a0342fb043cecc9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.11.0 (2021-06-16)
4
+
5
+ * Regenerated from discovery document revision 20210607
6
+
7
+ ### v0.10.0 (2021-06-03)
8
+
9
+ * Regenerated from discovery document revision 20210521
10
+ * Regenerated using generator version 0.3.0
11
+
12
+ ### v0.9.0 (2021-05-26)
13
+
14
+ * Regenerated from discovery document revision 20210517
15
+
16
+ ### v0.8.0 (2021-05-19)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.7.0 (2021-05-13)
21
+
22
+ * Regenerated from discovery document revision 20210429
23
+
3
24
  ### v0.6.0 (2021-03-24)
4
25
 
5
26
  * Regenerated from discovery document revision 20210312
@@ -30,7 +30,7 @@ module Google
30
30
  # This is NOT the gem version.
31
31
  VERSION = 'V1beta1'
32
32
 
33
- # View and manage your data across Google Cloud Platform services
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
 
@@ -230,6 +238,11 @@ module Google
230
238
  # @return [String]
231
239
  attr_accessor :disk_type
232
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
+
233
246
  # NodeManagement defines the set of node management services turned on for the
234
247
  # node pool.
235
248
  # Corresponds to the JSON property `management`
@@ -272,20 +285,7 @@ module Google
272
285
  # @return [Google::Apis::ContainerV1beta1::ShieldedInstanceConfig]
273
286
  attr_accessor :shielded_instance_config
274
287
 
275
- # These upgrade settings control the level of parallelism and the level of
276
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
277
- # that can be simultaneously unavailable. maxSurge controls the number of
278
- # additional nodes that can be added to the node pool temporarily for the time
279
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
280
- # maxSurge) determines the level of parallelism (how many nodes are being
281
- # upgraded at the same time). Note: upgrades inevitably introduce some
282
- # disruption since workloads need to be moved from old nodes to new, upgraded
283
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
284
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
285
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
286
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
287
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
288
- # same time. This ensures that there are always at least 4 nodes available.
288
+ # Upgrade settings control disruption and speed of the upgrade.
289
289
  # Corresponds to the JSON property `upgradeSettings`
290
290
  # @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
291
291
  attr_accessor :upgrade_settings
@@ -299,6 +299,7 @@ module Google
299
299
  @boot_disk_kms_key = args[:boot_disk_kms_key] if args.key?(:boot_disk_kms_key)
300
300
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
301
301
  @disk_type = args[:disk_type] if args.key?(:disk_type)
302
+ @image_type = args[:image_type] if args.key?(:image_type)
302
303
  @management = args[:management] if args.key?(:management)
303
304
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
304
305
  @oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
@@ -615,6 +616,11 @@ module Google
615
616
  # @return [String]
616
617
  attr_accessor :expire_time
617
618
 
619
+ # Output only. Unique id for the cluster.
620
+ # Corresponds to the JSON property `id`
621
+ # @return [String]
622
+ attr_accessor :id
623
+
618
624
  # The initial Kubernetes version for this cluster. Valid versions are those
619
625
  # found in validMasterVersions returned by getServerConfig. The version can be
620
626
  # upgraded over time; such upgrades are reflected in currentMasterVersion and
@@ -774,6 +780,11 @@ module Google
774
780
  # @return [Fixnum]
775
781
  attr_accessor :node_ipv4_cidr_size
776
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
+
777
788
  # The node pools associated with this cluster. This field should not be set if "
778
789
  # node_config" or "initial_node_count" are specified.
779
790
  # Corresponds to the JSON property `nodePools`
@@ -878,6 +889,11 @@ module Google
878
889
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
879
890
  attr_accessor :vertical_pod_autoscaling
880
891
 
892
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
893
+ # Corresponds to the JSON property `workloadCertificates`
894
+ # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
895
+ attr_accessor :workload_certificates
896
+
881
897
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
882
898
  # Corresponds to the JSON property `workloadIdentityConfig`
883
899
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
@@ -916,6 +932,7 @@ module Google
916
932
  @enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
917
933
  @endpoint = args[:endpoint] if args.key?(:endpoint)
918
934
  @expire_time = args[:expire_time] if args.key?(:expire_time)
935
+ @id = args[:id] if args.key?(:id)
919
936
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
920
937
  @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
921
938
  @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
@@ -937,6 +954,7 @@ module Google
937
954
  @network_policy = args[:network_policy] if args.key?(:network_policy)
938
955
  @node_config = args[:node_config] if args.key?(:node_config)
939
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)
940
958
  @node_pools = args[:node_pools] if args.key?(:node_pools)
941
959
  @notification_config = args[:notification_config] if args.key?(:notification_config)
942
960
  @pod_security_policy_config = args[:pod_security_policy_config] if args.key?(:pod_security_policy_config)
@@ -954,6 +972,7 @@ module Google
954
972
  @tpu_config = args[:tpu_config] if args.key?(:tpu_config)
955
973
  @tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
956
974
  @vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
975
+ @workload_certificates = args[:workload_certificates] if args.key?(:workload_certificates)
957
976
  @workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
958
977
  @zone = args[:zone] if args.key?(:zone)
959
978
  end
@@ -1038,6 +1057,11 @@ module Google
1038
1057
  # @return [Google::Apis::ContainerV1beta1::AddonsConfig]
1039
1058
  attr_accessor :desired_addons_config
1040
1059
 
1060
+ # Autopilot is the configuration for Autopilot settings on the cluster.
1061
+ # Corresponds to the JSON property `desiredAutopilot`
1062
+ # @return [Google::Apis::ContainerV1beta1::Autopilot]
1063
+ attr_accessor :desired_autopilot
1064
+
1041
1065
  # Configuration for Binary Authorization.
1042
1066
  # Corresponds to the JSON property `desiredBinaryAuthorization`
1043
1067
  # @return [Google::Apis::ContainerV1beta1::BinaryAuthorization]
@@ -1071,6 +1095,11 @@ module Google
1071
1095
  # @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
1072
1096
  attr_accessor :desired_default_snat_status
1073
1097
 
1098
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
1099
+ # Corresponds to the JSON property `desiredDnsConfig`
1100
+ # @return [Google::Apis::ContainerV1beta1::DnsConfig]
1101
+ attr_accessor :desired_dns_config
1102
+
1074
1103
  # The desired image type for the node pool. NOTE: Set the "desired_node_pool"
1075
1104
  # field as well.
1076
1105
  # Corresponds to the JSON property `desiredImageType`
@@ -1219,6 +1248,11 @@ module Google
1219
1248
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
1220
1249
  attr_accessor :desired_vertical_pod_autoscaling
1221
1250
 
1251
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
1252
+ # Corresponds to the JSON property `desiredWorkloadCertificates`
1253
+ # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
1254
+ attr_accessor :desired_workload_certificates
1255
+
1222
1256
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
1223
1257
  # Corresponds to the JSON property `desiredWorkloadIdentityConfig`
1224
1258
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
@@ -1231,12 +1265,14 @@ module Google
1231
1265
  # Update properties of this object
1232
1266
  def update!(**args)
1233
1267
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
1268
+ @desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
1234
1269
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1235
1270
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1236
1271
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
1237
1272
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
1238
1273
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1239
1274
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1275
+ @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1240
1276
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1241
1277
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
1242
1278
  @desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
@@ -1258,6 +1294,7 @@ module Google
1258
1294
  @desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
1259
1295
  @desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
1260
1296
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1297
+ @desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
1261
1298
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1262
1299
  end
1263
1300
  end
@@ -1424,7 +1461,20 @@ module Google
1424
1461
  # specification, under the control of the cluster master. They may have a set of
1425
1462
  # Kubernetes labels applied to them, which may be used to reference them during
1426
1463
  # pod scheduling. They may also be resized up or down, to accommodate the
1427
- # workload.
1464
+ # workload. These upgrade settings control the level of parallelism and the
1465
+ # level of disruption caused by an upgrade. maxUnavailable controls the number
1466
+ # of nodes that can be simultaneously unavailable. maxSurge controls the number
1467
+ # of additional nodes that can be added to the node pool temporarily for the
1468
+ # time of the upgrade to increase the number of available nodes. (maxUnavailable
1469
+ # + maxSurge) determines the level of parallelism (how many nodes are being
1470
+ # upgraded at the same time). Note: upgrades inevitably introduce some
1471
+ # disruption since workloads need to be moved from old nodes to new, upgraded
1472
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
1473
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
1474
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
1475
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
1476
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
1477
+ # same time. This ensures that there are always at least 4 nodes available.
1428
1478
  # Corresponds to the JSON property `nodePool`
1429
1479
  # @return [Google::Apis::ContainerV1beta1::NodePool]
1430
1480
  attr_accessor :node_pool
@@ -1463,6 +1513,37 @@ module Google
1463
1513
  end
1464
1514
  end
1465
1515
 
1516
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
1517
+ class DnsConfig
1518
+ include Google::Apis::Core::Hashable
1519
+
1520
+ # cluster_dns indicates which in-cluster DNS provider should be used.
1521
+ # Corresponds to the JSON property `clusterDns`
1522
+ # @return [String]
1523
+ attr_accessor :cluster_dns
1524
+
1525
+ # cluster_dns_domain is the suffix used for all cluster service records.
1526
+ # Corresponds to the JSON property `clusterDnsDomain`
1527
+ # @return [String]
1528
+ attr_accessor :cluster_dns_domain
1529
+
1530
+ # cluster_dns_scope indicates the scope of access to cluster DNS records.
1531
+ # Corresponds to the JSON property `clusterDnsScope`
1532
+ # @return [String]
1533
+ attr_accessor :cluster_dns_scope
1534
+
1535
+ def initialize(**args)
1536
+ update!(**args)
1537
+ end
1538
+
1539
+ # Update properties of this object
1540
+ def update!(**args)
1541
+ @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
1542
+ @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
1543
+ @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
1544
+ end
1545
+ end
1546
+
1466
1547
  # Time window specified for daily maintenance operations.
1467
1548
  class DailyMaintenanceWindow
1468
1549
  include Google::Apis::Core::Hashable
@@ -1516,6 +1597,47 @@ module Google
1516
1597
  end
1517
1598
  end
1518
1599
 
1600
+ # Represents a whole or partial calendar date, such as a birthday. The time of
1601
+ # day and time zone are either specified elsewhere or are insignificant. The
1602
+ # date is relative to the Gregorian Calendar. This can represent one of the
1603
+ # following: * A full date, with non-zero year, month, and day values * A month
1604
+ # and day value, with a zero year, such as an anniversary * A year on its own,
1605
+ # with zero month and day values * A year and month value, with a zero day, such
1606
+ # as a credit card expiration date Related types are google.type.TimeOfDay and `
1607
+ # google.protobuf.Timestamp`.
1608
+ class Date
1609
+ include Google::Apis::Core::Hashable
1610
+
1611
+ # Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
1612
+ # specify a year by itself or a year and month where the day isn't significant.
1613
+ # Corresponds to the JSON property `day`
1614
+ # @return [Fixnum]
1615
+ attr_accessor :day
1616
+
1617
+ # Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
1618
+ # and day.
1619
+ # Corresponds to the JSON property `month`
1620
+ # @return [Fixnum]
1621
+ attr_accessor :month
1622
+
1623
+ # Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
1624
+ # year.
1625
+ # Corresponds to the JSON property `year`
1626
+ # @return [Fixnum]
1627
+ attr_accessor :year
1628
+
1629
+ def initialize(**args)
1630
+ update!(**args)
1631
+ end
1632
+
1633
+ # Update properties of this object
1634
+ def update!(**args)
1635
+ @day = args[:day] if args.key?(:day)
1636
+ @month = args[:month] if args.key?(:month)
1637
+ @year = args[:year] if args.key?(:year)
1638
+ end
1639
+ end
1640
+
1519
1641
  # DefaultSnatStatus contains the desired state of whether default sNAT should be
1520
1642
  # disabled on the cluster.
1521
1643
  class DefaultSnatStatus
@@ -2552,6 +2674,11 @@ module Google
2552
2674
  # @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
2553
2675
  attr_accessor :default_snat_status
2554
2676
 
2677
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
2678
+ # Corresponds to the JSON property `dnsConfig`
2679
+ # @return [Google::Apis::ContainerV1beta1::DnsConfig]
2680
+ attr_accessor :dns_config
2681
+
2555
2682
  # Whether Intra-node visibility is enabled for this cluster. This makes same
2556
2683
  # node pod to pod traffic visible for VPC network.
2557
2684
  # Corresponds to the JSON property `enableIntraNodeVisibility`
@@ -2578,6 +2705,11 @@ module Google
2578
2705
  # @return [String]
2579
2706
  attr_accessor :private_ipv6_google_access
2580
2707
 
2708
+ # Config to block services with externalIPs field.
2709
+ # Corresponds to the JSON property `serviceExternalIpsConfig`
2710
+ # @return [Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig]
2711
+ attr_accessor :service_external_ips_config
2712
+
2581
2713
  # Output only. The relative name of the Google Compute Engine [subnetwork](https:
2582
2714
  # //cloud.google.com/compute/docs/vpc) to which the cluster is connected.
2583
2715
  # Example: projects/my-project/regions/us-central1/subnetworks/my-subnet
@@ -2593,10 +2725,12 @@ module Google
2593
2725
  def update!(**args)
2594
2726
  @datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
2595
2727
  @default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
2728
+ @dns_config = args[:dns_config] if args.key?(:dns_config)
2596
2729
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
2597
2730
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
2598
2731
  @network = args[:network] if args.key?(:network)
2599
2732
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
2733
+ @service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
2600
2734
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
2601
2735
  end
2602
2736
  end
@@ -2651,7 +2785,7 @@ module Google
2651
2785
  end
2652
2786
 
2653
2787
  # Collection of Compute Engine network tags that can be applied to a node's
2654
- # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2788
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2655
2789
  # docs/reference/rest/v1/NodeConfig)).
2656
2790
  class NetworkTags
2657
2791
  include Google::Apis::Core::Hashable
@@ -2884,6 +3018,19 @@ module Google
2884
3018
  end
2885
3019
  end
2886
3020
 
3021
+ # Subset of NodeConfig message that has defaults.
3022
+ class NodeConfigDefaults
3023
+ include Google::Apis::Core::Hashable
3024
+
3025
+ def initialize(**args)
3026
+ update!(**args)
3027
+ end
3028
+
3029
+ # Update properties of this object
3030
+ def update!(**args)
3031
+ end
3032
+ end
3033
+
2887
3034
  # Node kubelet configs.
2888
3035
  class NodeKubeletConfig
2889
3036
  include Google::Apis::Core::Hashable
@@ -3033,7 +3180,20 @@ module Google
3033
3180
  # specification, under the control of the cluster master. They may have a set of
3034
3181
  # Kubernetes labels applied to them, which may be used to reference them during
3035
3182
  # pod scheduling. They may also be resized up or down, to accommodate the
3036
- # workload.
3183
+ # workload. These upgrade settings control the level of parallelism and the
3184
+ # level of disruption caused by an upgrade. maxUnavailable controls the number
3185
+ # of nodes that can be simultaneously unavailable. maxSurge controls the number
3186
+ # of additional nodes that can be added to the node pool temporarily for the
3187
+ # time of the upgrade to increase the number of available nodes. (maxUnavailable
3188
+ # + maxSurge) determines the level of parallelism (how many nodes are being
3189
+ # upgraded at the same time). Note: upgrades inevitably introduce some
3190
+ # disruption since workloads need to be moved from old nodes to new, upgraded
3191
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
3192
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
3193
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
3194
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
3195
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
3196
+ # same time. This ensures that there are always at least 4 nodes available.
3037
3197
  class NodePool
3038
3198
  include Google::Apis::Core::Hashable
3039
3199
 
@@ -3121,20 +3281,7 @@ module Google
3121
3281
  # @return [String]
3122
3282
  attr_accessor :status_message
3123
3283
 
3124
- # These upgrade settings control the level of parallelism and the level of
3125
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
3126
- # that can be simultaneously unavailable. maxSurge controls the number of
3127
- # additional nodes that can be added to the node pool temporarily for the time
3128
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
3129
- # maxSurge) determines the level of parallelism (how many nodes are being
3130
- # upgraded at the same time). Note: upgrades inevitably introduce some
3131
- # disruption since workloads need to be moved from old nodes to new, upgraded
3132
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
3133
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
3134
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
3135
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
3136
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
3137
- # same time. This ensures that there are always at least 4 nodes available.
3284
+ # Upgrade settings control disruption and speed of the upgrade.
3138
3285
  # Corresponds to the JSON property `upgradeSettings`
3139
3286
  # @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
3140
3287
  attr_accessor :upgrade_settings
@@ -3210,6 +3357,25 @@ module Google
3210
3357
  end
3211
3358
  end
3212
3359
 
3360
+ # Subset of Nodepool message that has defaults.
3361
+ class NodePoolDefaults
3362
+ include Google::Apis::Core::Hashable
3363
+
3364
+ # Subset of NodeConfig message that has defaults.
3365
+ # Corresponds to the JSON property `nodeConfigDefaults`
3366
+ # @return [Google::Apis::ContainerV1beta1::NodeConfigDefaults]
3367
+ attr_accessor :node_config_defaults
3368
+
3369
+ def initialize(**args)
3370
+ update!(**args)
3371
+ end
3372
+
3373
+ # Update properties of this object
3374
+ def update!(**args)
3375
+ @node_config_defaults = args[:node_config_defaults] if args.key?(:node_config_defaults)
3376
+ end
3377
+ end
3378
+
3213
3379
  # Kubernetes taint is comprised of three fields: key, value, and effect. Effect
3214
3380
  # can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
3215
3381
  # [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
@@ -3883,6 +4049,11 @@ module Google
3883
4049
  # @return [Array<String>]
3884
4050
  attr_accessor :valid_node_versions
3885
4051
 
4052
+ # Maps of Kubernetes version and supported Windows server versions.
4053
+ # Corresponds to the JSON property `windowsVersionMaps`
4054
+ # @return [Hash<String,Google::Apis::ContainerV1beta1::WindowsVersions>]
4055
+ attr_accessor :windows_version_maps
4056
+
3886
4057
  def initialize(**args)
3887
4058
  update!(**args)
3888
4059
  end
@@ -3895,6 +4066,27 @@ module Google
3895
4066
  @valid_image_types = args[:valid_image_types] if args.key?(:valid_image_types)
3896
4067
  @valid_master_versions = args[:valid_master_versions] if args.key?(:valid_master_versions)
3897
4068
  @valid_node_versions = args[:valid_node_versions] if args.key?(:valid_node_versions)
4069
+ @windows_version_maps = args[:windows_version_maps] if args.key?(:windows_version_maps)
4070
+ end
4071
+ end
4072
+
4073
+ # Config to block services with externalIPs field.
4074
+ class ServiceExternalIPsConfig
4075
+ include Google::Apis::Core::Hashable
4076
+
4077
+ # Whether Services with ExternalIPs field are allowed or not.
4078
+ # Corresponds to the JSON property `enabled`
4079
+ # @return [Boolean]
4080
+ attr_accessor :enabled
4081
+ alias_method :enabled?, :enabled
4082
+
4083
+ def initialize(**args)
4084
+ update!(**args)
4085
+ end
4086
+
4087
+ # Update properties of this object
4088
+ def update!(**args)
4089
+ @enabled = args[:enabled] if args.key?(:enabled)
3898
4090
  end
3899
4091
  end
3900
4092
 
@@ -4961,7 +5153,7 @@ module Google
4961
5153
  attr_accessor :project_id
4962
5154
 
4963
5155
  # Collection of Compute Engine network tags that can be applied to a node's
4964
- # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
5156
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
4965
5157
  # docs/reference/rest/v1/NodeConfig)).
4966
5158
  # Corresponds to the JSON property `tags`
4967
5159
  # @return [Google::Apis::ContainerV1beta1::NetworkTags]
@@ -4973,20 +5165,7 @@ module Google
4973
5165
  # @return [Google::Apis::ContainerV1beta1::NodeTaints]
4974
5166
  attr_accessor :taints
4975
5167
 
4976
- # These upgrade settings control the level of parallelism and the level of
4977
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
4978
- # that can be simultaneously unavailable. maxSurge controls the number of
4979
- # additional nodes that can be added to the node pool temporarily for the time
4980
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
4981
- # maxSurge) determines the level of parallelism (how many nodes are being
4982
- # upgraded at the same time). Note: upgrades inevitably introduce some
4983
- # disruption since workloads need to be moved from old nodes to new, upgraded
4984
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
4985
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
4986
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
4987
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
4988
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
4989
- # same time. This ensures that there are always at least 4 nodes available.
5168
+ # Upgrade settings control disruption and speed of the upgrade.
4990
5169
  # Corresponds to the JSON property `upgradeSettings`
4991
5170
  # @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
4992
5171
  attr_accessor :upgrade_settings
@@ -5041,8 +5220,8 @@ module Google
5041
5220
  # @return [Google::Apis::ContainerV1beta1::ReleaseChannel]
5042
5221
  attr_accessor :release_channel
5043
5222
 
5044
- # Optional. Optional relative path to the resource. For example, the relative
5045
- # path of the node pool.
5223
+ # Optional relative path to the resource. For example, the relative path of the
5224
+ # node pool.
5046
5225
  # Corresponds to the JSON property `resource`
5047
5226
  # @return [String]
5048
5227
  attr_accessor :resource
@@ -5121,20 +5300,7 @@ module Google
5121
5300
  end
5122
5301
  end
5123
5302
 
5124
- # These upgrade settings control the level of parallelism and the level of
5125
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
5126
- # that can be simultaneously unavailable. maxSurge controls the number of
5127
- # additional nodes that can be added to the node pool temporarily for the time
5128
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
5129
- # maxSurge) determines the level of parallelism (how many nodes are being
5130
- # upgraded at the same time). Note: upgrades inevitably introduce some
5131
- # disruption since workloads need to be moved from old nodes to new, upgraded
5132
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
5133
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
5134
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
5135
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
5136
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
5137
- # same time. This ensures that there are always at least 4 nodes available.
5303
+ #
5138
5304
  class UpgradeSettings
5139
5305
  include Google::Apis::Core::Hashable
5140
5306
 
@@ -5263,6 +5429,87 @@ module Google
5263
5429
  end
5264
5430
  end
5265
5431
 
5432
+ # Windows server version.
5433
+ class WindowsVersion
5434
+ include Google::Apis::Core::Hashable
5435
+
5436
+ # Windows server image type
5437
+ # Corresponds to the JSON property `imageType`
5438
+ # @return [String]
5439
+ attr_accessor :image_type
5440
+
5441
+ # Windows server build number
5442
+ # Corresponds to the JSON property `osVersion`
5443
+ # @return [String]
5444
+ attr_accessor :os_version
5445
+
5446
+ # Represents a whole or partial calendar date, such as a birthday. The time of
5447
+ # day and time zone are either specified elsewhere or are insignificant. The
5448
+ # date is relative to the Gregorian Calendar. This can represent one of the
5449
+ # following: * A full date, with non-zero year, month, and day values * A month
5450
+ # and day value, with a zero year, such as an anniversary * A year on its own,
5451
+ # with zero month and day values * A year and month value, with a zero day, such
5452
+ # as a credit card expiration date Related types are google.type.TimeOfDay and `
5453
+ # google.protobuf.Timestamp`.
5454
+ # Corresponds to the JSON property `supportEndDate`
5455
+ # @return [Google::Apis::ContainerV1beta1::Date]
5456
+ attr_accessor :support_end_date
5457
+
5458
+ def initialize(**args)
5459
+ update!(**args)
5460
+ end
5461
+
5462
+ # Update properties of this object
5463
+ def update!(**args)
5464
+ @image_type = args[:image_type] if args.key?(:image_type)
5465
+ @os_version = args[:os_version] if args.key?(:os_version)
5466
+ @support_end_date = args[:support_end_date] if args.key?(:support_end_date)
5467
+ end
5468
+ end
5469
+
5470
+ # Windows server versions.
5471
+ class WindowsVersions
5472
+ include Google::Apis::Core::Hashable
5473
+
5474
+ # List of Windows server versions.
5475
+ # Corresponds to the JSON property `windowsVersions`
5476
+ # @return [Array<Google::Apis::ContainerV1beta1::WindowsVersion>]
5477
+ attr_accessor :windows_versions
5478
+
5479
+ def initialize(**args)
5480
+ update!(**args)
5481
+ end
5482
+
5483
+ # Update properties of this object
5484
+ def update!(**args)
5485
+ @windows_versions = args[:windows_versions] if args.key?(:windows_versions)
5486
+ end
5487
+ end
5488
+
5489
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
5490
+ class WorkloadCertificates
5491
+ include Google::Apis::Core::Hashable
5492
+
5493
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
5494
+ # the GKE Workload Identity Certificates controller and node agent will be
5495
+ # deployed in the cluster, which can then be configured by creating a
5496
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
5497
+ # workload_pool must be non-empty).
5498
+ # Corresponds to the JSON property `enableCertificates`
5499
+ # @return [Boolean]
5500
+ attr_accessor :enable_certificates
5501
+ alias_method :enable_certificates?, :enable_certificates
5502
+
5503
+ def initialize(**args)
5504
+ update!(**args)
5505
+ end
5506
+
5507
+ # Update properties of this object
5508
+ def update!(**args)
5509
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
5510
+ end
5511
+ end
5512
+
5266
5513
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
5267
5514
  class WorkloadIdentityConfig
5268
5515
  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.6.0"
19
+ GEM_VERSION = "0.11.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210312"
25
+ REVISION = "20210607"
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
 
@@ -172,6 +178,12 @@ module Google
172
178
  include Google::Apis::Core::JsonObjectSupport
173
179
  end
174
180
 
181
+ class Date
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
175
187
  class DefaultSnatStatus
176
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
177
189
 
@@ -394,6 +406,12 @@ module Google
394
406
  include Google::Apis::Core::JsonObjectSupport
395
407
  end
396
408
 
409
+ class NodeConfigDefaults
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
397
415
  class NodeKubeletConfig
398
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
417
 
@@ -430,6 +448,12 @@ module Google
430
448
  include Google::Apis::Core::JsonObjectSupport
431
449
  end
432
450
 
451
+ class NodePoolDefaults
452
+ class Representation < Google::Apis::Core::JsonRepresentation; end
453
+
454
+ include Google::Apis::Core::JsonObjectSupport
455
+ end
456
+
433
457
  class NodeTaint
434
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
435
459
 
@@ -538,6 +562,12 @@ module Google
538
562
  include Google::Apis::Core::JsonObjectSupport
539
563
  end
540
564
 
565
+ class ServiceExternalIPsConfig
566
+ class Representation < Google::Apis::Core::JsonRepresentation; end
567
+
568
+ include Google::Apis::Core::JsonObjectSupport
569
+ end
570
+
541
571
  class SetAddonsConfigRequest
542
572
  class Representation < Google::Apis::Core::JsonRepresentation; end
543
573
 
@@ -706,6 +736,24 @@ module Google
706
736
  include Google::Apis::Core::JsonObjectSupport
707
737
  end
708
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
+
751
+ class WorkloadCertificates
752
+ class Representation < Google::Apis::Core::JsonRepresentation; end
753
+
754
+ include Google::Apis::Core::JsonObjectSupport
755
+ end
756
+
709
757
  class WorkloadIdentityConfig
710
758
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
759
 
@@ -723,6 +771,7 @@ module Google
723
771
  class Representation < Google::Apis::Core::JsonRepresentation
724
772
  property :accelerator_count, :numeric_string => true, as: 'acceleratorCount'
725
773
  property :accelerator_type, as: 'acceleratorType'
774
+ property :gpu_partition_size, as: 'gpuPartitionSize'
726
775
  end
727
776
  end
728
777
 
@@ -781,6 +830,7 @@ module Google
781
830
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
782
831
  property :disk_size_gb, as: 'diskSizeGb'
783
832
  property :disk_type, as: 'diskType'
833
+ property :image_type, as: 'imageType'
784
834
  property :management, as: 'management', class: Google::Apis::ContainerV1beta1::NodeManagement, decorator: Google::Apis::ContainerV1beta1::NodeManagement::Representation
785
835
 
786
836
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -881,6 +931,7 @@ module Google
881
931
  property :enable_tpu, as: 'enableTpu'
882
932
  property :endpoint, as: 'endpoint'
883
933
  property :expire_time, as: 'expireTime'
934
+ property :id, as: 'id'
884
935
  property :initial_cluster_version, as: 'initialClusterVersion'
885
936
  property :initial_node_count, as: 'initialNodeCount'
886
937
  collection :instance_group_urls, as: 'instanceGroupUrls'
@@ -911,6 +962,8 @@ module Google
911
962
  property :node_config, as: 'nodeConfig', class: Google::Apis::ContainerV1beta1::NodeConfig, decorator: Google::Apis::ContainerV1beta1::NodeConfig::Representation
912
963
 
913
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
+
914
967
  collection :node_pools, as: 'nodePools', class: Google::Apis::ContainerV1beta1::NodePool, decorator: Google::Apis::ContainerV1beta1::NodePool::Representation
915
968
 
916
969
  property :notification_config, as: 'notificationConfig', class: Google::Apis::ContainerV1beta1::NotificationConfig, decorator: Google::Apis::ContainerV1beta1::NotificationConfig::Representation
@@ -937,6 +990,8 @@ module Google
937
990
  property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
938
991
  property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
939
992
 
993
+ property :workload_certificates, as: 'workloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
994
+
940
995
  property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
941
996
 
942
997
  property :zone, as: 'zone'
@@ -968,6 +1023,8 @@ module Google
968
1023
  class Representation < Google::Apis::Core::JsonRepresentation
969
1024
  property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
970
1025
 
1026
+ property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
1027
+
971
1028
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
972
1029
 
973
1030
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -979,6 +1036,8 @@ module Google
979
1036
  property :desired_datapath_provider, as: 'desiredDatapathProvider'
980
1037
  property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
981
1038
 
1039
+ property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1040
+
982
1041
  property :desired_image_type, as: 'desiredImageType'
983
1042
  property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
984
1043
 
@@ -1013,6 +1072,8 @@ module Google
1013
1072
 
1014
1073
  property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
1015
1074
 
1075
+ property :desired_workload_certificates, as: 'desiredWorkloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
1076
+
1016
1077
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
1017
1078
 
1018
1079
  end
@@ -1072,6 +1133,15 @@ module Google
1072
1133
  end
1073
1134
  end
1074
1135
 
1136
+ class DnsConfig
1137
+ # @private
1138
+ class Representation < Google::Apis::Core::JsonRepresentation
1139
+ property :cluster_dns, as: 'clusterDns'
1140
+ property :cluster_dns_domain, as: 'clusterDnsDomain'
1141
+ property :cluster_dns_scope, as: 'clusterDnsScope'
1142
+ end
1143
+ end
1144
+
1075
1145
  class DailyMaintenanceWindow
1076
1146
  # @private
1077
1147
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1088,6 +1158,15 @@ module Google
1088
1158
  end
1089
1159
  end
1090
1160
 
1161
+ class Date
1162
+ # @private
1163
+ class Representation < Google::Apis::Core::JsonRepresentation
1164
+ property :day, as: 'day'
1165
+ property :month, as: 'month'
1166
+ property :year, as: 'year'
1167
+ end
1168
+ end
1169
+
1091
1170
  class DefaultSnatStatus
1092
1171
  # @private
1093
1172
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1380,10 +1459,14 @@ module Google
1380
1459
  property :datapath_provider, as: 'datapathProvider'
1381
1460
  property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
1382
1461
 
1462
+ property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1463
+
1383
1464
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
1384
1465
  property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
1385
1466
  property :network, as: 'network'
1386
1467
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
1468
+ property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig::Representation
1469
+
1387
1470
  property :subnetwork, as: 'subnetwork'
1388
1471
  end
1389
1472
  end
@@ -1448,6 +1531,12 @@ module Google
1448
1531
  end
1449
1532
  end
1450
1533
 
1534
+ class NodeConfigDefaults
1535
+ # @private
1536
+ class Representation < Google::Apis::Core::JsonRepresentation
1537
+ end
1538
+ end
1539
+
1451
1540
  class NodeKubeletConfig
1452
1541
  # @private
1453
1542
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1522,6 +1611,14 @@ module Google
1522
1611
  end
1523
1612
  end
1524
1613
 
1614
+ class NodePoolDefaults
1615
+ # @private
1616
+ class Representation < Google::Apis::Core::JsonRepresentation
1617
+ property :node_config_defaults, as: 'nodeConfigDefaults', class: Google::Apis::ContainerV1beta1::NodeConfigDefaults, decorator: Google::Apis::ContainerV1beta1::NodeConfigDefaults::Representation
1618
+
1619
+ end
1620
+ end
1621
+
1525
1622
  class NodeTaint
1526
1623
  # @private
1527
1624
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1705,6 +1802,15 @@ module Google
1705
1802
  collection :valid_image_types, as: 'validImageTypes'
1706
1803
  collection :valid_master_versions, as: 'validMasterVersions'
1707
1804
  collection :valid_node_versions, as: 'validNodeVersions'
1805
+ hash :windows_version_maps, as: 'windowsVersionMaps', class: Google::Apis::ContainerV1beta1::WindowsVersions, decorator: Google::Apis::ContainerV1beta1::WindowsVersions::Representation
1806
+
1807
+ end
1808
+ end
1809
+
1810
+ class ServiceExternalIPsConfig
1811
+ # @private
1812
+ class Representation < Google::Apis::Core::JsonRepresentation
1813
+ property :enabled, as: 'enabled'
1708
1814
  end
1709
1815
  end
1710
1816
 
@@ -2022,6 +2128,31 @@ module Google
2022
2128
  end
2023
2129
  end
2024
2130
 
2131
+ class WindowsVersion
2132
+ # @private
2133
+ class Representation < Google::Apis::Core::JsonRepresentation
2134
+ property :image_type, as: 'imageType'
2135
+ property :os_version, as: 'osVersion'
2136
+ property :support_end_date, as: 'supportEndDate', class: Google::Apis::ContainerV1beta1::Date, decorator: Google::Apis::ContainerV1beta1::Date::Representation
2137
+
2138
+ end
2139
+ end
2140
+
2141
+ class WindowsVersions
2142
+ # @private
2143
+ class Representation < Google::Apis::Core::JsonRepresentation
2144
+ collection :windows_versions, as: 'windowsVersions', class: Google::Apis::ContainerV1beta1::WindowsVersion, decorator: Google::Apis::ContainerV1beta1::WindowsVersion::Representation
2145
+
2146
+ end
2147
+ end
2148
+
2149
+ class WorkloadCertificates
2150
+ # @private
2151
+ class Representation < Google::Apis::Core::JsonRepresentation
2152
+ property :enable_certificates, as: 'enableCertificates'
2153
+ end
2154
+ end
2155
+
2025
2156
  class WorkloadIdentityConfig
2026
2157
  # @private
2027
2158
  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.6.0
4
+ version: 0.11.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-03-29 00:00:00.000000000 Z
11
+ date: 2021-06-21 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.6.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.11.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: []
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.13
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