google-apis-container_v1beta1 0.5.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ad493785b9b24275f1d083eeaac2ebfebacb3f9137fa629c492da768470fcb6a
4
- data.tar.gz: 64315ddc338f5a5021eafa84278086537ab97a11bb57e60f0398faaae112f392
3
+ metadata.gz: b2e0d342010734d2714295a5d4101f133724802c1898be6bd5333f473d62533b
4
+ data.tar.gz: 8d772ed02127d0e7aa2a830fa7de8a5c37a02b64b937b4d92324047fb7bd35ae
5
5
  SHA512:
6
- metadata.gz: 82d0a4d319ac24ef8ed747ef48e95dc591684b7fd387b84491c377011038b50948bbe720e036b8b157fc8afc4e755509b514b1ef457fd28c250b71d0db1c1c43
7
- data.tar.gz: 33c52872251e70b13f5a0820c3bbbddc2724df163f5c2b3e845ebf27fa4b614d9754e4a820def894527a087f3a846c14fca11c00993228ebee4c21c677181a9d
6
+ metadata.gz: eb58a482a9f2863c3da99c6092328378d7b8a74570c9176f989586440d6fe70c56d67502608adf3aec69a621df4246a284d9f01f2de36e501ccfc7cfa1f693a5
7
+ data.tar.gz: ed5ca71eb0f26edcc0e738259f9d78543a293ef7929619442a17b016a0cef037baec051b1ba9fd787928dc8f0539e87461b7454dad23248db797f5abc6c10076
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.10.0 (2021-06-03)
4
+
5
+ * Regenerated from discovery document revision 20210521
6
+ * Regenerated using generator version 0.3.0
7
+
8
+ ### v0.9.0 (2021-05-26)
9
+
10
+ * Regenerated from discovery document revision 20210517
11
+
12
+ ### v0.8.0 (2021-05-19)
13
+
14
+ * Unspecified changes
15
+
16
+ ### v0.7.0 (2021-05-13)
17
+
18
+ * Regenerated from discovery document revision 20210429
19
+
20
+ ### v0.6.0 (2021-03-24)
21
+
22
+ * Regenerated from discovery document revision 20210312
23
+
3
24
  ### v0.5.0 (2021-03-12)
4
25
 
5
26
  * Regenerated from discovery document revision 20210226
@@ -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`
@@ -2593,6 +2720,7 @@ module Google
2593
2720
  def update!(**args)
2594
2721
  @datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
2595
2722
  @default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
2723
+ @dns_config = args[:dns_config] if args.key?(:dns_config)
2596
2724
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
2597
2725
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
2598
2726
  @network = args[:network] if args.key?(:network)
@@ -2651,7 +2779,7 @@ module Google
2651
2779
  end
2652
2780
 
2653
2781
  # 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/
2782
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2655
2783
  # docs/reference/rest/v1/NodeConfig)).
2656
2784
  class NetworkTags
2657
2785
  include Google::Apis::Core::Hashable
@@ -2884,6 +3012,19 @@ module Google
2884
3012
  end
2885
3013
  end
2886
3014
 
3015
+ # Subset of NodeConfig message that has defaults.
3016
+ class NodeConfigDefaults
3017
+ include Google::Apis::Core::Hashable
3018
+
3019
+ def initialize(**args)
3020
+ update!(**args)
3021
+ end
3022
+
3023
+ # Update properties of this object
3024
+ def update!(**args)
3025
+ end
3026
+ end
3027
+
2887
3028
  # Node kubelet configs.
2888
3029
  class NodeKubeletConfig
2889
3030
  include Google::Apis::Core::Hashable
@@ -2990,11 +3131,10 @@ module Google
2990
3131
  class NodeNetworkConfig
2991
3132
  include Google::Apis::Core::Hashable
2992
3133
 
2993
- # Input only. [Input only] Whether to create a new range for pod IPs in this
2994
- # node pool. Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if
2995
- # they are not specified. If neither `create_pod_range` or `pod_range` are
2996
- # specified, the cluster-level default (`ip_allocation_policy.
2997
- # cluster_ipv4_cidr_block`) is used.
3134
+ # Input only. Whether to create a new range for pod IPs in this node pool.
3135
+ # Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are
3136
+ # not specified. If neither `create_pod_range` or `pod_range` are specified, the
3137
+ # cluster-level default (`ip_allocation_policy.cluster_ipv4_cidr_block`) is used.
2998
3138
  # Corresponds to the JSON property `createPodRange`
2999
3139
  # @return [Boolean]
3000
3140
  attr_accessor :create_pod_range
@@ -3003,14 +3143,16 @@ module Google
3003
3143
  # The IP address range for pod IPs in this node pool. Only applicable if `
3004
3144
  # create_pod_range` is true. Set to blank to have a range chosen with the
3005
3145
  # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
3006
- # specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-
3007
- # Domain_Routing) notation (e.g. `10.96.0.0/14`) to pick a specific range to use.
3146
+ # specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
3147
+ # Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) to pick a
3148
+ # specific range to use.
3008
3149
  # Corresponds to the JSON property `podIpv4CidrBlock`
3009
3150
  # @return [String]
3010
3151
  attr_accessor :pod_ipv4_cidr_block
3011
3152
 
3012
3153
  # The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
3013
- # ID is used for the new range.
3154
+ # ID is used for the new range. If `create_pod_range` is false, uses an existing
3155
+ # secondary range with this ID.
3014
3156
  # Corresponds to the JSON property `podRange`
3015
3157
  # @return [String]
3016
3158
  attr_accessor :pod_range
@@ -3032,7 +3174,20 @@ module Google
3032
3174
  # specification, under the control of the cluster master. They may have a set of
3033
3175
  # Kubernetes labels applied to them, which may be used to reference them during
3034
3176
  # pod scheduling. They may also be resized up or down, to accommodate the
3035
- # workload.
3177
+ # workload. These upgrade settings control the level of parallelism and the
3178
+ # level of disruption caused by an upgrade. maxUnavailable controls the number
3179
+ # of nodes that can be simultaneously unavailable. maxSurge controls the number
3180
+ # of additional nodes that can be added to the node pool temporarily for the
3181
+ # time of the upgrade to increase the number of available nodes. (maxUnavailable
3182
+ # + maxSurge) determines the level of parallelism (how many nodes are being
3183
+ # upgraded at the same time). Note: upgrades inevitably introduce some
3184
+ # disruption since workloads need to be moved from old nodes to new, upgraded
3185
+ # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
3186
+ # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
3187
+ # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
3188
+ # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
3189
+ # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
3190
+ # same time. This ensures that there are always at least 4 nodes available.
3036
3191
  class NodePool
3037
3192
  include Google::Apis::Core::Hashable
3038
3193
 
@@ -3120,20 +3275,7 @@ module Google
3120
3275
  # @return [String]
3121
3276
  attr_accessor :status_message
3122
3277
 
3123
- # These upgrade settings control the level of parallelism and the level of
3124
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
3125
- # that can be simultaneously unavailable. maxSurge controls the number of
3126
- # additional nodes that can be added to the node pool temporarily for the time
3127
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
3128
- # maxSurge) determines the level of parallelism (how many nodes are being
3129
- # upgraded at the same time). Note: upgrades inevitably introduce some
3130
- # disruption since workloads need to be moved from old nodes to new, upgraded
3131
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
3132
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
3133
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
3134
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
3135
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
3136
- # same time. This ensures that there are always at least 4 nodes available.
3278
+ # Upgrade settings control disruption and speed of the upgrade.
3137
3279
  # Corresponds to the JSON property `upgradeSettings`
3138
3280
  # @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
3139
3281
  attr_accessor :upgrade_settings
@@ -3209,6 +3351,25 @@ module Google
3209
3351
  end
3210
3352
  end
3211
3353
 
3354
+ # Subset of Nodepool message that has defaults.
3355
+ class NodePoolDefaults
3356
+ include Google::Apis::Core::Hashable
3357
+
3358
+ # Subset of NodeConfig message that has defaults.
3359
+ # Corresponds to the JSON property `nodeConfigDefaults`
3360
+ # @return [Google::Apis::ContainerV1beta1::NodeConfigDefaults]
3361
+ attr_accessor :node_config_defaults
3362
+
3363
+ def initialize(**args)
3364
+ update!(**args)
3365
+ end
3366
+
3367
+ # Update properties of this object
3368
+ def update!(**args)
3369
+ @node_config_defaults = args[:node_config_defaults] if args.key?(:node_config_defaults)
3370
+ end
3371
+ end
3372
+
3212
3373
  # Kubernetes taint is comprised of three fields: key, value, and effect. Effect
3213
3374
  # can only be one of three types: NoSchedule, PreferNoSchedule or NoExecute. See
3214
3375
  # [here](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration)
@@ -3882,6 +4043,11 @@ module Google
3882
4043
  # @return [Array<String>]
3883
4044
  attr_accessor :valid_node_versions
3884
4045
 
4046
+ # Maps of Kubernetes version and supported Windows server versions.
4047
+ # Corresponds to the JSON property `windowsVersionMaps`
4048
+ # @return [Hash<String,Google::Apis::ContainerV1beta1::WindowsVersions>]
4049
+ attr_accessor :windows_version_maps
4050
+
3885
4051
  def initialize(**args)
3886
4052
  update!(**args)
3887
4053
  end
@@ -3894,6 +4060,7 @@ module Google
3894
4060
  @valid_image_types = args[:valid_image_types] if args.key?(:valid_image_types)
3895
4061
  @valid_master_versions = args[:valid_master_versions] if args.key?(:valid_master_versions)
3896
4062
  @valid_node_versions = args[:valid_node_versions] if args.key?(:valid_node_versions)
4063
+ @windows_version_maps = args[:windows_version_maps] if args.key?(:windows_version_maps)
3897
4064
  end
3898
4065
  end
3899
4066
 
@@ -4960,7 +5127,7 @@ module Google
4960
5127
  attr_accessor :project_id
4961
5128
 
4962
5129
  # Collection of Compute Engine network tags that can be applied to a node's
4963
- # underyling VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
5130
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
4964
5131
  # docs/reference/rest/v1/NodeConfig)).
4965
5132
  # Corresponds to the JSON property `tags`
4966
5133
  # @return [Google::Apis::ContainerV1beta1::NetworkTags]
@@ -4972,20 +5139,7 @@ module Google
4972
5139
  # @return [Google::Apis::ContainerV1beta1::NodeTaints]
4973
5140
  attr_accessor :taints
4974
5141
 
4975
- # These upgrade settings control the level of parallelism and the level of
4976
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
4977
- # that can be simultaneously unavailable. maxSurge controls the number of
4978
- # additional nodes that can be added to the node pool temporarily for the time
4979
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
4980
- # maxSurge) determines the level of parallelism (how many nodes are being
4981
- # upgraded at the same time). Note: upgrades inevitably introduce some
4982
- # disruption since workloads need to be moved from old nodes to new, upgraded
4983
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
4984
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
4985
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
4986
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
4987
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
4988
- # same time. This ensures that there are always at least 4 nodes available.
5142
+ # Upgrade settings control disruption and speed of the upgrade.
4989
5143
  # Corresponds to the JSON property `upgradeSettings`
4990
5144
  # @return [Google::Apis::ContainerV1beta1::UpgradeSettings]
4991
5145
  attr_accessor :upgrade_settings
@@ -5040,8 +5194,8 @@ module Google
5040
5194
  # @return [Google::Apis::ContainerV1beta1::ReleaseChannel]
5041
5195
  attr_accessor :release_channel
5042
5196
 
5043
- # Optional. Optional relative path to the resource. For example, the relative
5044
- # path of the node pool.
5197
+ # Optional relative path to the resource. For example, the relative path of the
5198
+ # node pool.
5045
5199
  # Corresponds to the JSON property `resource`
5046
5200
  # @return [String]
5047
5201
  attr_accessor :resource
@@ -5120,20 +5274,7 @@ module Google
5120
5274
  end
5121
5275
  end
5122
5276
 
5123
- # These upgrade settings control the level of parallelism and the level of
5124
- # disruption caused by an upgrade. maxUnavailable controls the number of nodes
5125
- # that can be simultaneously unavailable. maxSurge controls the number of
5126
- # additional nodes that can be added to the node pool temporarily for the time
5127
- # of the upgrade to increase the number of available nodes. (maxUnavailable +
5128
- # maxSurge) determines the level of parallelism (how many nodes are being
5129
- # upgraded at the same time). Note: upgrades inevitably introduce some
5130
- # disruption since workloads need to be moved from old nodes to new, upgraded
5131
- # ones. Even if maxUnavailable=0, this holds true. (Disruption stays within the
5132
- # limits of PodDisruptionBudget, if it is configured.) Consider a hypothetical
5133
- # node pool with 5 nodes having maxSurge=2, maxUnavailable=1. This means the
5134
- # upgrade process upgrades 3 nodes simultaneously. It creates 2 additional (
5135
- # upgraded) nodes, then it brings down 3 old (not yet upgraded) nodes at the
5136
- # same time. This ensures that there are always at least 4 nodes available.
5277
+ #
5137
5278
  class UpgradeSettings
5138
5279
  include Google::Apis::Core::Hashable
5139
5280
 
@@ -5262,6 +5403,87 @@ module Google
5262
5403
  end
5263
5404
  end
5264
5405
 
5406
+ # Windows server version.
5407
+ class WindowsVersion
5408
+ include Google::Apis::Core::Hashable
5409
+
5410
+ # Windows server image type
5411
+ # Corresponds to the JSON property `imageType`
5412
+ # @return [String]
5413
+ attr_accessor :image_type
5414
+
5415
+ # Windows server build number
5416
+ # Corresponds to the JSON property `osVersion`
5417
+ # @return [String]
5418
+ attr_accessor :os_version
5419
+
5420
+ # Represents a whole or partial calendar date, such as a birthday. The time of
5421
+ # day and time zone are either specified elsewhere or are insignificant. The
5422
+ # date is relative to the Gregorian Calendar. This can represent one of the
5423
+ # following: * A full date, with non-zero year, month, and day values * A month
5424
+ # and day value, with a zero year, such as an anniversary * A year on its own,
5425
+ # with zero month and day values * A year and month value, with a zero day, such
5426
+ # as a credit card expiration date Related types are google.type.TimeOfDay and `
5427
+ # google.protobuf.Timestamp`.
5428
+ # Corresponds to the JSON property `supportEndDate`
5429
+ # @return [Google::Apis::ContainerV1beta1::Date]
5430
+ attr_accessor :support_end_date
5431
+
5432
+ def initialize(**args)
5433
+ update!(**args)
5434
+ end
5435
+
5436
+ # Update properties of this object
5437
+ def update!(**args)
5438
+ @image_type = args[:image_type] if args.key?(:image_type)
5439
+ @os_version = args[:os_version] if args.key?(:os_version)
5440
+ @support_end_date = args[:support_end_date] if args.key?(:support_end_date)
5441
+ end
5442
+ end
5443
+
5444
+ # Windows server versions.
5445
+ class WindowsVersions
5446
+ include Google::Apis::Core::Hashable
5447
+
5448
+ # List of Windows server versions.
5449
+ # Corresponds to the JSON property `windowsVersions`
5450
+ # @return [Array<Google::Apis::ContainerV1beta1::WindowsVersion>]
5451
+ attr_accessor :windows_versions
5452
+
5453
+ def initialize(**args)
5454
+ update!(**args)
5455
+ end
5456
+
5457
+ # Update properties of this object
5458
+ def update!(**args)
5459
+ @windows_versions = args[:windows_versions] if args.key?(:windows_versions)
5460
+ end
5461
+ end
5462
+
5463
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
5464
+ class WorkloadCertificates
5465
+ include Google::Apis::Core::Hashable
5466
+
5467
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
5468
+ # the GKE Workload Identity Certificates controller and node agent will be
5469
+ # deployed in the cluster, which can then be configured by creating a
5470
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
5471
+ # workload_pool must be non-empty).
5472
+ # Corresponds to the JSON property `enableCertificates`
5473
+ # @return [Boolean]
5474
+ attr_accessor :enable_certificates
5475
+ alias_method :enable_certificates?, :enable_certificates
5476
+
5477
+ def initialize(**args)
5478
+ update!(**args)
5479
+ end
5480
+
5481
+ # Update properties of this object
5482
+ def update!(**args)
5483
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
5484
+ end
5485
+ end
5486
+
5265
5487
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
5266
5488
  class WorkloadIdentityConfig
5267
5489
  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.5.0"
19
+ GEM_VERSION = "0.10.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 = "20210226"
25
+ REVISION = "20210521"
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
 
@@ -706,6 +730,24 @@ module Google
706
730
  include Google::Apis::Core::JsonObjectSupport
707
731
  end
708
732
 
733
+ class WindowsVersion
734
+ class Representation < Google::Apis::Core::JsonRepresentation; end
735
+
736
+ include Google::Apis::Core::JsonObjectSupport
737
+ end
738
+
739
+ class WindowsVersions
740
+ class Representation < Google::Apis::Core::JsonRepresentation; end
741
+
742
+ include Google::Apis::Core::JsonObjectSupport
743
+ end
744
+
745
+ class WorkloadCertificates
746
+ class Representation < Google::Apis::Core::JsonRepresentation; end
747
+
748
+ include Google::Apis::Core::JsonObjectSupport
749
+ end
750
+
709
751
  class WorkloadIdentityConfig
710
752
  class Representation < Google::Apis::Core::JsonRepresentation; end
711
753
 
@@ -723,6 +765,7 @@ module Google
723
765
  class Representation < Google::Apis::Core::JsonRepresentation
724
766
  property :accelerator_count, :numeric_string => true, as: 'acceleratorCount'
725
767
  property :accelerator_type, as: 'acceleratorType'
768
+ property :gpu_partition_size, as: 'gpuPartitionSize'
726
769
  end
727
770
  end
728
771
 
@@ -781,6 +824,7 @@ module Google
781
824
  property :boot_disk_kms_key, as: 'bootDiskKmsKey'
782
825
  property :disk_size_gb, as: 'diskSizeGb'
783
826
  property :disk_type, as: 'diskType'
827
+ property :image_type, as: 'imageType'
784
828
  property :management, as: 'management', class: Google::Apis::ContainerV1beta1::NodeManagement, decorator: Google::Apis::ContainerV1beta1::NodeManagement::Representation
785
829
 
786
830
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -881,6 +925,7 @@ module Google
881
925
  property :enable_tpu, as: 'enableTpu'
882
926
  property :endpoint, as: 'endpoint'
883
927
  property :expire_time, as: 'expireTime'
928
+ property :id, as: 'id'
884
929
  property :initial_cluster_version, as: 'initialClusterVersion'
885
930
  property :initial_node_count, as: 'initialNodeCount'
886
931
  collection :instance_group_urls, as: 'instanceGroupUrls'
@@ -911,6 +956,8 @@ module Google
911
956
  property :node_config, as: 'nodeConfig', class: Google::Apis::ContainerV1beta1::NodeConfig, decorator: Google::Apis::ContainerV1beta1::NodeConfig::Representation
912
957
 
913
958
  property :node_ipv4_cidr_size, as: 'nodeIpv4CidrSize'
959
+ property :node_pool_defaults, as: 'nodePoolDefaults', class: Google::Apis::ContainerV1beta1::NodePoolDefaults, decorator: Google::Apis::ContainerV1beta1::NodePoolDefaults::Representation
960
+
914
961
  collection :node_pools, as: 'nodePools', class: Google::Apis::ContainerV1beta1::NodePool, decorator: Google::Apis::ContainerV1beta1::NodePool::Representation
915
962
 
916
963
  property :notification_config, as: 'notificationConfig', class: Google::Apis::ContainerV1beta1::NotificationConfig, decorator: Google::Apis::ContainerV1beta1::NotificationConfig::Representation
@@ -937,6 +984,8 @@ module Google
937
984
  property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
938
985
  property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
939
986
 
987
+ property :workload_certificates, as: 'workloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
988
+
940
989
  property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
941
990
 
942
991
  property :zone, as: 'zone'
@@ -968,6 +1017,8 @@ module Google
968
1017
  class Representation < Google::Apis::Core::JsonRepresentation
969
1018
  property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
970
1019
 
1020
+ property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
1021
+
971
1022
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
972
1023
 
973
1024
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -979,6 +1030,8 @@ module Google
979
1030
  property :desired_datapath_provider, as: 'desiredDatapathProvider'
980
1031
  property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
981
1032
 
1033
+ property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1034
+
982
1035
  property :desired_image_type, as: 'desiredImageType'
983
1036
  property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
984
1037
 
@@ -1013,6 +1066,8 @@ module Google
1013
1066
 
1014
1067
  property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
1015
1068
 
1069
+ property :desired_workload_certificates, as: 'desiredWorkloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
1070
+
1016
1071
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
1017
1072
 
1018
1073
  end
@@ -1072,6 +1127,15 @@ module Google
1072
1127
  end
1073
1128
  end
1074
1129
 
1130
+ class DnsConfig
1131
+ # @private
1132
+ class Representation < Google::Apis::Core::JsonRepresentation
1133
+ property :cluster_dns, as: 'clusterDns'
1134
+ property :cluster_dns_domain, as: 'clusterDnsDomain'
1135
+ property :cluster_dns_scope, as: 'clusterDnsScope'
1136
+ end
1137
+ end
1138
+
1075
1139
  class DailyMaintenanceWindow
1076
1140
  # @private
1077
1141
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1088,6 +1152,15 @@ module Google
1088
1152
  end
1089
1153
  end
1090
1154
 
1155
+ class Date
1156
+ # @private
1157
+ class Representation < Google::Apis::Core::JsonRepresentation
1158
+ property :day, as: 'day'
1159
+ property :month, as: 'month'
1160
+ property :year, as: 'year'
1161
+ end
1162
+ end
1163
+
1091
1164
  class DefaultSnatStatus
1092
1165
  # @private
1093
1166
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1380,6 +1453,8 @@ module Google
1380
1453
  property :datapath_provider, as: 'datapathProvider'
1381
1454
  property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
1382
1455
 
1456
+ property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1457
+
1383
1458
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
1384
1459
  property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
1385
1460
  property :network, as: 'network'
@@ -1448,6 +1523,12 @@ module Google
1448
1523
  end
1449
1524
  end
1450
1525
 
1526
+ class NodeConfigDefaults
1527
+ # @private
1528
+ class Representation < Google::Apis::Core::JsonRepresentation
1529
+ end
1530
+ end
1531
+
1451
1532
  class NodeKubeletConfig
1452
1533
  # @private
1453
1534
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1522,6 +1603,14 @@ module Google
1522
1603
  end
1523
1604
  end
1524
1605
 
1606
+ class NodePoolDefaults
1607
+ # @private
1608
+ class Representation < Google::Apis::Core::JsonRepresentation
1609
+ property :node_config_defaults, as: 'nodeConfigDefaults', class: Google::Apis::ContainerV1beta1::NodeConfigDefaults, decorator: Google::Apis::ContainerV1beta1::NodeConfigDefaults::Representation
1610
+
1611
+ end
1612
+ end
1613
+
1525
1614
  class NodeTaint
1526
1615
  # @private
1527
1616
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1705,6 +1794,8 @@ module Google
1705
1794
  collection :valid_image_types, as: 'validImageTypes'
1706
1795
  collection :valid_master_versions, as: 'validMasterVersions'
1707
1796
  collection :valid_node_versions, as: 'validNodeVersions'
1797
+ hash :windows_version_maps, as: 'windowsVersionMaps', class: Google::Apis::ContainerV1beta1::WindowsVersions, decorator: Google::Apis::ContainerV1beta1::WindowsVersions::Representation
1798
+
1708
1799
  end
1709
1800
  end
1710
1801
 
@@ -2022,6 +2113,31 @@ module Google
2022
2113
  end
2023
2114
  end
2024
2115
 
2116
+ class WindowsVersion
2117
+ # @private
2118
+ class Representation < Google::Apis::Core::JsonRepresentation
2119
+ property :image_type, as: 'imageType'
2120
+ property :os_version, as: 'osVersion'
2121
+ property :support_end_date, as: 'supportEndDate', class: Google::Apis::ContainerV1beta1::Date, decorator: Google::Apis::ContainerV1beta1::Date::Representation
2122
+
2123
+ end
2124
+ end
2125
+
2126
+ class WindowsVersions
2127
+ # @private
2128
+ class Representation < Google::Apis::Core::JsonRepresentation
2129
+ collection :windows_versions, as: 'windowsVersions', class: Google::Apis::ContainerV1beta1::WindowsVersion, decorator: Google::Apis::ContainerV1beta1::WindowsVersion::Representation
2130
+
2131
+ end
2132
+ end
2133
+
2134
+ class WorkloadCertificates
2135
+ # @private
2136
+ class Representation < Google::Apis::Core::JsonRepresentation
2137
+ property :enable_certificates, as: 'enableCertificates'
2138
+ end
2139
+ end
2140
+
2025
2141
  class WorkloadIdentityConfig
2026
2142
  # @private
2027
2143
  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.5.0
4
+ version: 0.10.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-15 00:00:00.000000000 Z
11
+ date: 2021-06-07 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.5.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.10.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