google-apis-container_v1beta1 0.2.0 → 0.7.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: 728edd736e49afed458515150706cd62d6c296f798fa7a2f46d42de8f2d1f94d
4
- data.tar.gz: 403e3fafc5ec0321fddd5e6bab5689d6540c6b55d5d591962e57e7b50fcb7353
3
+ metadata.gz: 2a619e41219e5d369424496fc898879f0ca0fdbf6500f1bd015b95eb8f3525da
4
+ data.tar.gz: ce8d64f24f2a50aae0c6ecb4c75038c8e013e23654f7a02ccbf0a6332a75f252
5
5
  SHA512:
6
- metadata.gz: f43e1111e2a7ac2e79f0409d25fb03c7f8d88e257116eeb6becf3e89a93cbafa3d28a37171670f75134a809c6415366ea187f9cf9fb7503473752582f2d7b4ea
7
- data.tar.gz: d3d0812d83db10d674abe21e06a75e66939c39f1dbb93d69d39ce533fdc2746bfabc5c2ffd450f8e6320770a4548413b40717f9132c47459ee317878126c03bc
6
+ metadata.gz: 4d40d0364709ff53c7d0d56a3791bdc7545b4b02995aa95b2adada796db2ebc16f94295bb24dde39f9b1e020965e5a6a846e9807ed89e82ab3e8fffd52e0c7d6
7
+ data.tar.gz: d241f6ac9eacae4fd39d3a11c000b479f0c0168e4ff4b4f195393ece5bf702198cc1c2def1b68b091ceea9267141aedd082f7894621b69c6060f7d9cdd88f356
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.7.0 (2021-05-13)
4
+
5
+ * Regenerated from discovery document revision 20210429
6
+
7
+ ### v0.6.0 (2021-03-24)
8
+
9
+ * Regenerated from discovery document revision 20210312
10
+
11
+ ### v0.5.0 (2021-03-12)
12
+
13
+ * Regenerated from discovery document revision 20210226
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.4.0 (2021-03-06)
17
+
18
+ * Regenerated from discovery document revision 20210224
19
+
20
+ ### v0.3.0 (2021-02-19)
21
+
22
+ * Regenerated from discovery document revision 20210216
23
+
3
24
  ### v0.2.0 (2021-02-09)
4
25
 
5
26
  * Regenerated from discovery document revision 20210205
@@ -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
 
@@ -184,6 +192,26 @@ module Google
184
192
  end
185
193
  end
186
194
 
195
+ # Autopilot is the configuration for Autopilot settings on the cluster.
196
+ class Autopilot
197
+ include Google::Apis::Core::Hashable
198
+
199
+ # Enable Autopilot
200
+ # Corresponds to the JSON property `enabled`
201
+ # @return [Boolean]
202
+ attr_accessor :enabled
203
+ alias_method :enabled?, :enabled
204
+
205
+ def initialize(**args)
206
+ update!(**args)
207
+ end
208
+
209
+ # Update properties of this object
210
+ def update!(**args)
211
+ @enabled = args[:enabled] if args.key?(:enabled)
212
+ end
213
+ end
214
+
187
215
  # AutoprovisioningNodePoolDefaults contains defaults for a node pool created by
188
216
  # NAP.
189
217
  class AutoprovisioningNodePoolDefaults
@@ -482,6 +510,11 @@ module Google
482
510
  # @return [Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig]
483
511
  attr_accessor :authenticator_groups_config
484
512
 
513
+ # Autopilot is the configuration for Autopilot settings on the cluster.
514
+ # Corresponds to the JSON property `autopilot`
515
+ # @return [Google::Apis::ContainerV1beta1::Autopilot]
516
+ attr_accessor :autopilot
517
+
485
518
  # ClusterAutoscaling contains global, per-cluster information required by
486
519
  # Cluster Autoscaler to automatically adjust the size of the cluster and create/
487
520
  # delete node pools based on the current needs.
@@ -590,6 +623,11 @@ module Google
590
623
  # @return [String]
591
624
  attr_accessor :expire_time
592
625
 
626
+ # Output only. Unique id for the cluster.
627
+ # Corresponds to the JSON property `id`
628
+ # @return [String]
629
+ attr_accessor :id
630
+
593
631
  # The initial Kubernetes version for this cluster. Valid versions are those
594
632
  # found in validMasterVersions returned by getServerConfig. The version can be
595
633
  # upgraded over time; such upgrades are reflected in currentMasterVersion and
@@ -853,6 +891,11 @@ module Google
853
891
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
854
892
  attr_accessor :vertical_pod_autoscaling
855
893
 
894
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
895
+ # Corresponds to the JSON property `workloadCertificates`
896
+ # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
897
+ attr_accessor :workload_certificates
898
+
856
899
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
857
900
  # Corresponds to the JSON property `workloadIdentityConfig`
858
901
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
@@ -873,6 +916,7 @@ module Google
873
916
  def update!(**args)
874
917
  @addons_config = args[:addons_config] if args.key?(:addons_config)
875
918
  @authenticator_groups_config = args[:authenticator_groups_config] if args.key?(:authenticator_groups_config)
919
+ @autopilot = args[:autopilot] if args.key?(:autopilot)
876
920
  @autoscaling = args[:autoscaling] if args.key?(:autoscaling)
877
921
  @binary_authorization = args[:binary_authorization] if args.key?(:binary_authorization)
878
922
  @cluster_ipv4_cidr = args[:cluster_ipv4_cidr] if args.key?(:cluster_ipv4_cidr)
@@ -890,6 +934,7 @@ module Google
890
934
  @enable_tpu = args[:enable_tpu] if args.key?(:enable_tpu)
891
935
  @endpoint = args[:endpoint] if args.key?(:endpoint)
892
936
  @expire_time = args[:expire_time] if args.key?(:expire_time)
937
+ @id = args[:id] if args.key?(:id)
893
938
  @initial_cluster_version = args[:initial_cluster_version] if args.key?(:initial_cluster_version)
894
939
  @initial_node_count = args[:initial_node_count] if args.key?(:initial_node_count)
895
940
  @instance_group_urls = args[:instance_group_urls] if args.key?(:instance_group_urls)
@@ -928,6 +973,7 @@ module Google
928
973
  @tpu_config = args[:tpu_config] if args.key?(:tpu_config)
929
974
  @tpu_ipv4_cidr_block = args[:tpu_ipv4_cidr_block] if args.key?(:tpu_ipv4_cidr_block)
930
975
  @vertical_pod_autoscaling = args[:vertical_pod_autoscaling] if args.key?(:vertical_pod_autoscaling)
976
+ @workload_certificates = args[:workload_certificates] if args.key?(:workload_certificates)
931
977
  @workload_identity_config = args[:workload_identity_config] if args.key?(:workload_identity_config)
932
978
  @zone = args[:zone] if args.key?(:zone)
933
979
  end
@@ -1012,6 +1058,11 @@ module Google
1012
1058
  # @return [Google::Apis::ContainerV1beta1::AddonsConfig]
1013
1059
  attr_accessor :desired_addons_config
1014
1060
 
1061
+ # Autopilot is the configuration for Autopilot settings on the cluster.
1062
+ # Corresponds to the JSON property `desiredAutopilot`
1063
+ # @return [Google::Apis::ContainerV1beta1::Autopilot]
1064
+ attr_accessor :desired_autopilot
1065
+
1015
1066
  # Configuration for Binary Authorization.
1016
1067
  # Corresponds to the JSON property `desiredBinaryAuthorization`
1017
1068
  # @return [Google::Apis::ContainerV1beta1::BinaryAuthorization]
@@ -1045,6 +1096,11 @@ module Google
1045
1096
  # @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
1046
1097
  attr_accessor :desired_default_snat_status
1047
1098
 
1099
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
1100
+ # Corresponds to the JSON property `desiredDnsConfig`
1101
+ # @return [Google::Apis::ContainerV1beta1::DnsConfig]
1102
+ attr_accessor :desired_dns_config
1103
+
1048
1104
  # The desired image type for the node pool. NOTE: Set the "desired_node_pool"
1049
1105
  # field as well.
1050
1106
  # Corresponds to the JSON property `desiredImageType`
@@ -1057,6 +1113,12 @@ module Google
1057
1113
  # @return [Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig]
1058
1114
  attr_accessor :desired_intra_node_visibility_config
1059
1115
 
1116
+ # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
1117
+ # subsetting on this cluster.
1118
+ # Corresponds to the JSON property `desiredL4ilbSubsettingConfig`
1119
+ # @return [Google::Apis::ContainerV1beta1::IlbSubsettingConfig]
1120
+ attr_accessor :desired_l4ilb_subsetting_config
1121
+
1060
1122
  # The desired list of Google Compute Engine [zones](https://cloud.google.com/
1061
1123
  # compute/docs/zones#available) in which the cluster's nodes should be located.
1062
1124
  # This list must always include the cluster's primary zone. Warning: changing
@@ -1187,6 +1249,11 @@ module Google
1187
1249
  # @return [Google::Apis::ContainerV1beta1::VerticalPodAutoscaling]
1188
1250
  attr_accessor :desired_vertical_pod_autoscaling
1189
1251
 
1252
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
1253
+ # Corresponds to the JSON property `desiredWorkloadCertificates`
1254
+ # @return [Google::Apis::ContainerV1beta1::WorkloadCertificates]
1255
+ attr_accessor :desired_workload_certificates
1256
+
1190
1257
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
1191
1258
  # Corresponds to the JSON property `desiredWorkloadIdentityConfig`
1192
1259
  # @return [Google::Apis::ContainerV1beta1::WorkloadIdentityConfig]
@@ -1199,14 +1266,17 @@ module Google
1199
1266
  # Update properties of this object
1200
1267
  def update!(**args)
1201
1268
  @desired_addons_config = args[:desired_addons_config] if args.key?(:desired_addons_config)
1269
+ @desired_autopilot = args[:desired_autopilot] if args.key?(:desired_autopilot)
1202
1270
  @desired_binary_authorization = args[:desired_binary_authorization] if args.key?(:desired_binary_authorization)
1203
1271
  @desired_cluster_autoscaling = args[:desired_cluster_autoscaling] if args.key?(:desired_cluster_autoscaling)
1204
1272
  @desired_cluster_telemetry = args[:desired_cluster_telemetry] if args.key?(:desired_cluster_telemetry)
1205
1273
  @desired_database_encryption = args[:desired_database_encryption] if args.key?(:desired_database_encryption)
1206
1274
  @desired_datapath_provider = args[:desired_datapath_provider] if args.key?(:desired_datapath_provider)
1207
1275
  @desired_default_snat_status = args[:desired_default_snat_status] if args.key?(:desired_default_snat_status)
1276
+ @desired_dns_config = args[:desired_dns_config] if args.key?(:desired_dns_config)
1208
1277
  @desired_image_type = args[:desired_image_type] if args.key?(:desired_image_type)
1209
1278
  @desired_intra_node_visibility_config = args[:desired_intra_node_visibility_config] if args.key?(:desired_intra_node_visibility_config)
1279
+ @desired_l4ilb_subsetting_config = args[:desired_l4ilb_subsetting_config] if args.key?(:desired_l4ilb_subsetting_config)
1210
1280
  @desired_locations = args[:desired_locations] if args.key?(:desired_locations)
1211
1281
  @desired_logging_service = args[:desired_logging_service] if args.key?(:desired_logging_service)
1212
1282
  @desired_master = args[:desired_master] if args.key?(:desired_master)
@@ -1225,6 +1295,7 @@ module Google
1225
1295
  @desired_shielded_nodes = args[:desired_shielded_nodes] if args.key?(:desired_shielded_nodes)
1226
1296
  @desired_tpu_config = args[:desired_tpu_config] if args.key?(:desired_tpu_config)
1227
1297
  @desired_vertical_pod_autoscaling = args[:desired_vertical_pod_autoscaling] if args.key?(:desired_vertical_pod_autoscaling)
1298
+ @desired_workload_certificates = args[:desired_workload_certificates] if args.key?(:desired_workload_certificates)
1228
1299
  @desired_workload_identity_config = args[:desired_workload_identity_config] if args.key?(:desired_workload_identity_config)
1229
1300
  end
1230
1301
  end
@@ -1430,6 +1501,37 @@ module Google
1430
1501
  end
1431
1502
  end
1432
1503
 
1504
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
1505
+ class DnsConfig
1506
+ include Google::Apis::Core::Hashable
1507
+
1508
+ # cluster_dns indicates which in-cluster DNS provider should be used.
1509
+ # Corresponds to the JSON property `clusterDns`
1510
+ # @return [String]
1511
+ attr_accessor :cluster_dns
1512
+
1513
+ # cluster_dns_domain is the suffix used for all cluster service records.
1514
+ # Corresponds to the JSON property `clusterDnsDomain`
1515
+ # @return [String]
1516
+ attr_accessor :cluster_dns_domain
1517
+
1518
+ # cluster_dns_scope indicates the scope of access to cluster DNS records.
1519
+ # Corresponds to the JSON property `clusterDnsScope`
1520
+ # @return [String]
1521
+ attr_accessor :cluster_dns_scope
1522
+
1523
+ def initialize(**args)
1524
+ update!(**args)
1525
+ end
1526
+
1527
+ # Update properties of this object
1528
+ def update!(**args)
1529
+ @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
1530
+ @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
1531
+ @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
1532
+ end
1533
+ end
1534
+
1433
1535
  # Time window specified for daily maintenance operations.
1434
1536
  class DailyMaintenanceWindow
1435
1537
  include Google::Apis::Core::Hashable
@@ -1746,6 +1848,27 @@ module Google
1746
1848
  end
1747
1849
  end
1748
1850
 
1851
+ # ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
1852
+ # subsetting on this cluster.
1853
+ class IlbSubsettingConfig
1854
+ include Google::Apis::Core::Hashable
1855
+
1856
+ # Enables l4 ILB subsetting for this cluster
1857
+ # Corresponds to the JSON property `enabled`
1858
+ # @return [Boolean]
1859
+ attr_accessor :enabled
1860
+ alias_method :enabled?, :enabled
1861
+
1862
+ def initialize(**args)
1863
+ update!(**args)
1864
+ end
1865
+
1866
+ # Update properties of this object
1867
+ def update!(**args)
1868
+ @enabled = args[:enabled] if args.key?(:enabled)
1869
+ end
1870
+ end
1871
+
1749
1872
  # Configuration for controlling how IPs are allocated in the cluster.
1750
1873
  class IpAllocationPolicy
1751
1874
  include Google::Apis::Core::Hashable
@@ -2498,6 +2621,11 @@ module Google
2498
2621
  # @return [Google::Apis::ContainerV1beta1::DefaultSnatStatus]
2499
2622
  attr_accessor :default_snat_status
2500
2623
 
2624
+ # DNSConfig contains the desired set of options for configuring clusterDNS.
2625
+ # Corresponds to the JSON property `dnsConfig`
2626
+ # @return [Google::Apis::ContainerV1beta1::DnsConfig]
2627
+ attr_accessor :dns_config
2628
+
2501
2629
  # Whether Intra-node visibility is enabled for this cluster. This makes same
2502
2630
  # node pod to pod traffic visible for VPC network.
2503
2631
  # Corresponds to the JSON property `enableIntraNodeVisibility`
@@ -2505,6 +2633,12 @@ module Google
2505
2633
  attr_accessor :enable_intra_node_visibility
2506
2634
  alias_method :enable_intra_node_visibility?, :enable_intra_node_visibility
2507
2635
 
2636
+ # Whether L4ILB Subsetting is enabled for this cluster.
2637
+ # Corresponds to the JSON property `enableL4ilbSubsetting`
2638
+ # @return [Boolean]
2639
+ attr_accessor :enable_l4ilb_subsetting
2640
+ alias_method :enable_l4ilb_subsetting?, :enable_l4ilb_subsetting
2641
+
2508
2642
  # Output only. The relative name of the Google Compute Engine network(https://
2509
2643
  # cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
2510
2644
  # cluster is connected. Example: projects/my-project/global/networks/my-network
@@ -2533,7 +2667,9 @@ module Google
2533
2667
  def update!(**args)
2534
2668
  @datapath_provider = args[:datapath_provider] if args.key?(:datapath_provider)
2535
2669
  @default_snat_status = args[:default_snat_status] if args.key?(:default_snat_status)
2670
+ @dns_config = args[:dns_config] if args.key?(:dns_config)
2536
2671
  @enable_intra_node_visibility = args[:enable_intra_node_visibility] if args.key?(:enable_intra_node_visibility)
2672
+ @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
2537
2673
  @network = args[:network] if args.key?(:network)
2538
2674
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
2539
2675
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
@@ -2589,6 +2725,27 @@ module Google
2589
2725
  end
2590
2726
  end
2591
2727
 
2728
+ # Collection of Compute Engine network tags that can be applied to a node's
2729
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
2730
+ # docs/reference/rest/v1/NodeConfig)).
2731
+ class NetworkTags
2732
+ include Google::Apis::Core::Hashable
2733
+
2734
+ # List of network tags.
2735
+ # Corresponds to the JSON property `tags`
2736
+ # @return [Array<String>]
2737
+ attr_accessor :tags
2738
+
2739
+ def initialize(**args)
2740
+ update!(**args)
2741
+ end
2742
+
2743
+ # Update properties of this object
2744
+ def update!(**args)
2745
+ @tags = args[:tags] if args.key?(:tags)
2746
+ end
2747
+ end
2748
+
2592
2749
  # Parameters that describe the nodes in a cluster.
2593
2750
  class NodeConfig
2594
2751
  include Google::Apis::Core::Hashable
@@ -2848,6 +3005,26 @@ module Google
2848
3005
  end
2849
3006
  end
2850
3007
 
3008
+ # Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
3009
+ # concepts/overview/working-with-objects/labels).
3010
+ class NodeLabels
3011
+ include Google::Apis::Core::Hashable
3012
+
3013
+ # Map of node label keys and node label values.
3014
+ # Corresponds to the JSON property `labels`
3015
+ # @return [Hash<String,String>]
3016
+ attr_accessor :labels
3017
+
3018
+ def initialize(**args)
3019
+ update!(**args)
3020
+ end
3021
+
3022
+ # Update properties of this object
3023
+ def update!(**args)
3024
+ @labels = args[:labels] if args.key?(:labels)
3025
+ end
3026
+ end
3027
+
2851
3028
  # NodeManagement defines the set of node management services turned on for the
2852
3029
  # node pool.
2853
3030
  class NodeManagement
@@ -2883,6 +3060,49 @@ module Google
2883
3060
  end
2884
3061
  end
2885
3062
 
3063
+ # Parameters for node pool-level network config. Only applicable if `
3064
+ # ip_allocation_policy.use_ip_aliases` is true.
3065
+ class NodeNetworkConfig
3066
+ include Google::Apis::Core::Hashable
3067
+
3068
+ # Input only. Whether to create a new range for pod IPs in this node pool.
3069
+ # Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they are
3070
+ # not specified. If neither `create_pod_range` or `pod_range` are specified, the
3071
+ # cluster-level default (`ip_allocation_policy.cluster_ipv4_cidr_block`) is used.
3072
+ # Corresponds to the JSON property `createPodRange`
3073
+ # @return [Boolean]
3074
+ attr_accessor :create_pod_range
3075
+ alias_method :create_pod_range?, :create_pod_range
3076
+
3077
+ # The IP address range for pod IPs in this node pool. Only applicable if `
3078
+ # create_pod_range` is true. Set to blank to have a range chosen with the
3079
+ # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
3080
+ # specific netmask. Set to a [CIDR](https://en.wikipedia.org/wiki/
3081
+ # Classless_Inter-Domain_Routing) notation (e.g. `10.96.0.0/14`) to pick a
3082
+ # specific range to use.
3083
+ # Corresponds to the JSON property `podIpv4CidrBlock`
3084
+ # @return [String]
3085
+ attr_accessor :pod_ipv4_cidr_block
3086
+
3087
+ # The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
3088
+ # ID is used for the new range. If `create_pod_range` is false, uses an existing
3089
+ # secondary range with this ID.
3090
+ # Corresponds to the JSON property `podRange`
3091
+ # @return [String]
3092
+ attr_accessor :pod_range
3093
+
3094
+ def initialize(**args)
3095
+ update!(**args)
3096
+ end
3097
+
3098
+ # Update properties of this object
3099
+ def update!(**args)
3100
+ @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
3101
+ @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
3102
+ @pod_range = args[:pod_range] if args.key?(:pod_range)
3103
+ end
3104
+ end
3105
+
2886
3106
  # NodePool contains the name and configuration for a cluster's node pool. Node
2887
3107
  # pools are a set of nodes (i.e. VM's), with a common configuration and
2888
3108
  # specification, under the control of the cluster master. They may have a set of
@@ -2949,6 +3169,12 @@ module Google
2949
3169
  # @return [String]
2950
3170
  attr_accessor :name
2951
3171
 
3172
+ # Parameters for node pool-level network config. Only applicable if `
3173
+ # ip_allocation_policy.use_ip_aliases` is true.
3174
+ # Corresponds to the JSON property `networkConfig`
3175
+ # @return [Google::Apis::ContainerV1beta1::NodeNetworkConfig]
3176
+ attr_accessor :network_config
3177
+
2952
3178
  # [Output only] The pod CIDR block size per node in this node pool.
2953
3179
  # Corresponds to the JSON property `podIpv4CidrSize`
2954
3180
  # @return [Fixnum]
@@ -3008,6 +3234,7 @@ module Google
3008
3234
  @management = args[:management] if args.key?(:management)
3009
3235
  @max_pods_constraint = args[:max_pods_constraint] if args.key?(:max_pods_constraint)
3010
3236
  @name = args[:name] if args.key?(:name)
3237
+ @network_config = args[:network_config] if args.key?(:network_config)
3011
3238
  @pod_ipv4_cidr_size = args[:pod_ipv4_cidr_size] if args.key?(:pod_ipv4_cidr_size)
3012
3239
  @self_link = args[:self_link] if args.key?(:self_link)
3013
3240
  @status = args[:status] if args.key?(:status)
@@ -3092,6 +3319,26 @@ module Google
3092
3319
  end
3093
3320
  end
3094
3321
 
3322
+ # Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
3323
+ # configuration/taint-and-toleration).
3324
+ class NodeTaints
3325
+ include Google::Apis::Core::Hashable
3326
+
3327
+ # List of node taints.
3328
+ # Corresponds to the JSON property `taints`
3329
+ # @return [Array<Google::Apis::ContainerV1beta1::NodeTaint>]
3330
+ attr_accessor :taints
3331
+
3332
+ def initialize(**args)
3333
+ update!(**args)
3334
+ end
3335
+
3336
+ # Update properties of this object
3337
+ def update!(**args)
3338
+ @taints = args[:taints] if args.key?(:taints)
3339
+ end
3340
+ end
3341
+
3095
3342
  # NotificationConfig is the configuration of notifications.
3096
3343
  class NotificationConfig
3097
3344
  include Google::Apis::Core::Hashable
@@ -4738,6 +4985,12 @@ module Google
4738
4985
  # @return [Google::Apis::ContainerV1beta1::NodeKubeletConfig]
4739
4986
  attr_accessor :kubelet_config
4740
4987
 
4988
+ # Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
4989
+ # concepts/overview/working-with-objects/labels).
4990
+ # Corresponds to the JSON property `labels`
4991
+ # @return [Google::Apis::ContainerV1beta1::NodeLabels]
4992
+ attr_accessor :labels
4993
+
4741
4994
  # Parameters that can be configured on Linux nodes.
4742
4995
  # Corresponds to the JSON property `linuxNodeConfig`
4743
4996
  # @return [Google::Apis::ContainerV1beta1::LinuxNodeConfig]
@@ -4782,6 +5035,19 @@ module Google
4782
5035
  # @return [String]
4783
5036
  attr_accessor :project_id
4784
5037
 
5038
+ # Collection of Compute Engine network tags that can be applied to a node's
5039
+ # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
5040
+ # docs/reference/rest/v1/NodeConfig)).
5041
+ # Corresponds to the JSON property `tags`
5042
+ # @return [Google::Apis::ContainerV1beta1::NetworkTags]
5043
+ attr_accessor :tags
5044
+
5045
+ # Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
5046
+ # configuration/taint-and-toleration).
5047
+ # Corresponds to the JSON property `taints`
5048
+ # @return [Google::Apis::ContainerV1beta1::NodeTaints]
5049
+ attr_accessor :taints
5050
+
4785
5051
  # These upgrade settings control the level of parallelism and the level of
4786
5052
  # disruption caused by an upgrade. maxUnavailable controls the number of nodes
4787
5053
  # that can be simultaneously unavailable. maxSurge controls the number of
@@ -4822,12 +5088,15 @@ module Google
4822
5088
  @cluster_id = args[:cluster_id] if args.key?(:cluster_id)
4823
5089
  @image_type = args[:image_type] if args.key?(:image_type)
4824
5090
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
5091
+ @labels = args[:labels] if args.key?(:labels)
4825
5092
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
4826
5093
  @locations = args[:locations] if args.key?(:locations)
4827
5094
  @name = args[:name] if args.key?(:name)
4828
5095
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
4829
5096
  @node_version = args[:node_version] if args.key?(:node_version)
4830
5097
  @project_id = args[:project_id] if args.key?(:project_id)
5098
+ @tags = args[:tags] if args.key?(:tags)
5099
+ @taints = args[:taints] if args.key?(:taints)
4831
5100
  @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
4832
5101
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
4833
5102
  @zone = args[:zone] if args.key?(:zone)
@@ -4847,8 +5116,8 @@ module Google
4847
5116
  # @return [Google::Apis::ContainerV1beta1::ReleaseChannel]
4848
5117
  attr_accessor :release_channel
4849
5118
 
4850
- # Optional. Optional relative path to the resource. For example, the relative
4851
- # path of the node pool.
5119
+ # Optional relative path to the resource. For example, the relative path of the
5120
+ # node pool.
4852
5121
  # Corresponds to the JSON property `resource`
4853
5122
  # @return [String]
4854
5123
  attr_accessor :resource
@@ -5069,6 +5338,30 @@ module Google
5069
5338
  end
5070
5339
  end
5071
5340
 
5341
+ # Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
5342
+ class WorkloadCertificates
5343
+ include Google::Apis::Core::Hashable
5344
+
5345
+ # enable_certificates controls issuance of workload mTLS certificates. If set,
5346
+ # the GKE Workload Identity Certificates controller and node agent will be
5347
+ # deployed in the cluster, which can then be configured by creating a
5348
+ # WorkloadCertificateConfig Custom Resource. Requires Workload Identity (
5349
+ # workload_pool must be non-empty).
5350
+ # Corresponds to the JSON property `enableCertificates`
5351
+ # @return [Boolean]
5352
+ attr_accessor :enable_certificates
5353
+ alias_method :enable_certificates?, :enable_certificates
5354
+
5355
+ def initialize(**args)
5356
+ update!(**args)
5357
+ end
5358
+
5359
+ # Update properties of this object
5360
+ def update!(**args)
5361
+ @enable_certificates = args[:enable_certificates] if args.key?(:enable_certificates)
5362
+ end
5363
+ end
5364
+
5072
5365
  # Configuration for the use of Kubernetes Service Accounts in GCP IAM policies.
5073
5366
  class WorkloadIdentityConfig
5074
5367
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1beta1
18
18
  # Version of the google-apis-container_v1beta1 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210205"
25
+ REVISION = "20210429"
26
26
  end
27
27
  end
28
28
  end
@@ -46,6 +46,12 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
+ class Autopilot
50
+ class Representation < Google::Apis::Core::JsonRepresentation; end
51
+
52
+ include Google::Apis::Core::JsonObjectSupport
53
+ end
54
+
49
55
  class AutoprovisioningNodePoolDefaults
50
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
57
 
@@ -154,6 +160,12 @@ module Google
154
160
  include Google::Apis::Core::JsonObjectSupport
155
161
  end
156
162
 
163
+ class DnsConfig
164
+ class Representation < Google::Apis::Core::JsonRepresentation; end
165
+
166
+ include Google::Apis::Core::JsonObjectSupport
167
+ end
168
+
157
169
  class DailyMaintenanceWindow
158
170
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
171
 
@@ -226,6 +238,12 @@ module Google
226
238
  include Google::Apis::Core::JsonObjectSupport
227
239
  end
228
240
 
241
+ class IlbSubsettingConfig
242
+ class Representation < Google::Apis::Core::JsonRepresentation; end
243
+
244
+ include Google::Apis::Core::JsonObjectSupport
245
+ end
246
+
229
247
  class IpAllocationPolicy
230
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
231
249
 
@@ -370,6 +388,12 @@ module Google
370
388
  include Google::Apis::Core::JsonObjectSupport
371
389
  end
372
390
 
391
+ class NetworkTags
392
+ class Representation < Google::Apis::Core::JsonRepresentation; end
393
+
394
+ include Google::Apis::Core::JsonObjectSupport
395
+ end
396
+
373
397
  class NodeConfig
374
398
  class Representation < Google::Apis::Core::JsonRepresentation; end
375
399
 
@@ -382,12 +406,24 @@ module Google
382
406
  include Google::Apis::Core::JsonObjectSupport
383
407
  end
384
408
 
409
+ class NodeLabels
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
385
415
  class NodeManagement
386
416
  class Representation < Google::Apis::Core::JsonRepresentation; end
387
417
 
388
418
  include Google::Apis::Core::JsonObjectSupport
389
419
  end
390
420
 
421
+ class NodeNetworkConfig
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
391
427
  class NodePool
392
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
393
429
 
@@ -406,6 +442,12 @@ module Google
406
442
  include Google::Apis::Core::JsonObjectSupport
407
443
  end
408
444
 
445
+ class NodeTaints
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
409
451
  class NotificationConfig
410
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
411
453
 
@@ -670,6 +712,12 @@ module Google
670
712
  include Google::Apis::Core::JsonObjectSupport
671
713
  end
672
714
 
715
+ class WorkloadCertificates
716
+ class Representation < Google::Apis::Core::JsonRepresentation; end
717
+
718
+ include Google::Apis::Core::JsonObjectSupport
719
+ end
720
+
673
721
  class WorkloadIdentityConfig
674
722
  class Representation < Google::Apis::Core::JsonRepresentation; end
675
723
 
@@ -687,6 +735,7 @@ module Google
687
735
  class Representation < Google::Apis::Core::JsonRepresentation
688
736
  property :accelerator_count, :numeric_string => true, as: 'acceleratorCount'
689
737
  property :accelerator_type, as: 'acceleratorType'
738
+ property :gpu_partition_size, as: 'gpuPartitionSize'
690
739
  end
691
740
  end
692
741
 
@@ -732,6 +781,13 @@ module Google
732
781
  end
733
782
  end
734
783
 
784
+ class Autopilot
785
+ # @private
786
+ class Representation < Google::Apis::Core::JsonRepresentation
787
+ property :enabled, as: 'enabled'
788
+ end
789
+ end
790
+
735
791
  class AutoprovisioningNodePoolDefaults
736
792
  # @private
737
793
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -812,6 +868,8 @@ module Google
812
868
 
813
869
  property :authenticator_groups_config, as: 'authenticatorGroupsConfig', class: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig, decorator: Google::Apis::ContainerV1beta1::AuthenticatorGroupsConfig::Representation
814
870
 
871
+ property :autopilot, as: 'autopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
872
+
815
873
  property :autoscaling, as: 'autoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
816
874
 
817
875
  property :binary_authorization, as: 'binaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
@@ -836,6 +894,7 @@ module Google
836
894
  property :enable_tpu, as: 'enableTpu'
837
895
  property :endpoint, as: 'endpoint'
838
896
  property :expire_time, as: 'expireTime'
897
+ property :id, as: 'id'
839
898
  property :initial_cluster_version, as: 'initialClusterVersion'
840
899
  property :initial_node_count, as: 'initialNodeCount'
841
900
  collection :instance_group_urls, as: 'instanceGroupUrls'
@@ -892,6 +951,8 @@ module Google
892
951
  property :tpu_ipv4_cidr_block, as: 'tpuIpv4CidrBlock'
893
952
  property :vertical_pod_autoscaling, as: 'verticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
894
953
 
954
+ property :workload_certificates, as: 'workloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
955
+
895
956
  property :workload_identity_config, as: 'workloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
896
957
 
897
958
  property :zone, as: 'zone'
@@ -923,6 +984,8 @@ module Google
923
984
  class Representation < Google::Apis::Core::JsonRepresentation
924
985
  property :desired_addons_config, as: 'desiredAddonsConfig', class: Google::Apis::ContainerV1beta1::AddonsConfig, decorator: Google::Apis::ContainerV1beta1::AddonsConfig::Representation
925
986
 
987
+ property :desired_autopilot, as: 'desiredAutopilot', class: Google::Apis::ContainerV1beta1::Autopilot, decorator: Google::Apis::ContainerV1beta1::Autopilot::Representation
988
+
926
989
  property :desired_binary_authorization, as: 'desiredBinaryAuthorization', class: Google::Apis::ContainerV1beta1::BinaryAuthorization, decorator: Google::Apis::ContainerV1beta1::BinaryAuthorization::Representation
927
990
 
928
991
  property :desired_cluster_autoscaling, as: 'desiredClusterAutoscaling', class: Google::Apis::ContainerV1beta1::ClusterAutoscaling, decorator: Google::Apis::ContainerV1beta1::ClusterAutoscaling::Representation
@@ -934,9 +997,13 @@ module Google
934
997
  property :desired_datapath_provider, as: 'desiredDatapathProvider'
935
998
  property :desired_default_snat_status, as: 'desiredDefaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
936
999
 
1000
+ property :desired_dns_config, as: 'desiredDnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1001
+
937
1002
  property :desired_image_type, as: 'desiredImageType'
938
1003
  property :desired_intra_node_visibility_config, as: 'desiredIntraNodeVisibilityConfig', class: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig, decorator: Google::Apis::ContainerV1beta1::IntraNodeVisibilityConfig::Representation
939
1004
 
1005
+ property :desired_l4ilb_subsetting_config, as: 'desiredL4ilbSubsettingConfig', class: Google::Apis::ContainerV1beta1::IlbSubsettingConfig, decorator: Google::Apis::ContainerV1beta1::IlbSubsettingConfig::Representation
1006
+
940
1007
  collection :desired_locations, as: 'desiredLocations'
941
1008
  property :desired_logging_service, as: 'desiredLoggingService'
942
1009
  property :desired_master, as: 'desiredMaster', class: Google::Apis::ContainerV1beta1::Master, decorator: Google::Apis::ContainerV1beta1::Master::Representation
@@ -966,6 +1033,8 @@ module Google
966
1033
 
967
1034
  property :desired_vertical_pod_autoscaling, as: 'desiredVerticalPodAutoscaling', class: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling, decorator: Google::Apis::ContainerV1beta1::VerticalPodAutoscaling::Representation
968
1035
 
1036
+ property :desired_workload_certificates, as: 'desiredWorkloadCertificates', class: Google::Apis::ContainerV1beta1::WorkloadCertificates, decorator: Google::Apis::ContainerV1beta1::WorkloadCertificates::Representation
1037
+
969
1038
  property :desired_workload_identity_config, as: 'desiredWorkloadIdentityConfig', class: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadIdentityConfig::Representation
970
1039
 
971
1040
  end
@@ -1025,6 +1094,15 @@ module Google
1025
1094
  end
1026
1095
  end
1027
1096
 
1097
+ class DnsConfig
1098
+ # @private
1099
+ class Representation < Google::Apis::Core::JsonRepresentation
1100
+ property :cluster_dns, as: 'clusterDns'
1101
+ property :cluster_dns_domain, as: 'clusterDnsDomain'
1102
+ property :cluster_dns_scope, as: 'clusterDnsScope'
1103
+ end
1104
+ end
1105
+
1028
1106
  class DailyMaintenanceWindow
1029
1107
  # @private
1030
1108
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1123,6 +1201,13 @@ module Google
1123
1201
  end
1124
1202
  end
1125
1203
 
1204
+ class IlbSubsettingConfig
1205
+ # @private
1206
+ class Representation < Google::Apis::Core::JsonRepresentation
1207
+ property :enabled, as: 'enabled'
1208
+ end
1209
+ end
1210
+
1126
1211
  class IpAllocationPolicy
1127
1212
  # @private
1128
1213
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1326,7 +1411,10 @@ module Google
1326
1411
  property :datapath_provider, as: 'datapathProvider'
1327
1412
  property :default_snat_status, as: 'defaultSnatStatus', class: Google::Apis::ContainerV1beta1::DefaultSnatStatus, decorator: Google::Apis::ContainerV1beta1::DefaultSnatStatus::Representation
1328
1413
 
1414
+ property :dns_config, as: 'dnsConfig', class: Google::Apis::ContainerV1beta1::DnsConfig, decorator: Google::Apis::ContainerV1beta1::DnsConfig::Representation
1415
+
1329
1416
  property :enable_intra_node_visibility, as: 'enableIntraNodeVisibility'
1417
+ property :enable_l4ilb_subsetting, as: 'enableL4ilbSubsetting'
1330
1418
  property :network, as: 'network'
1331
1419
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
1332
1420
  property :subnetwork, as: 'subnetwork'
@@ -1348,6 +1436,13 @@ module Google
1348
1436
  end
1349
1437
  end
1350
1438
 
1439
+ class NetworkTags
1440
+ # @private
1441
+ class Representation < Google::Apis::Core::JsonRepresentation
1442
+ collection :tags, as: 'tags'
1443
+ end
1444
+ end
1445
+
1351
1446
  class NodeConfig
1352
1447
  # @private
1353
1448
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1395,6 +1490,13 @@ module Google
1395
1490
  end
1396
1491
  end
1397
1492
 
1493
+ class NodeLabels
1494
+ # @private
1495
+ class Representation < Google::Apis::Core::JsonRepresentation
1496
+ hash :labels, as: 'labels'
1497
+ end
1498
+ end
1499
+
1398
1500
  class NodeManagement
1399
1501
  # @private
1400
1502
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1405,6 +1507,15 @@ module Google
1405
1507
  end
1406
1508
  end
1407
1509
 
1510
+ class NodeNetworkConfig
1511
+ # @private
1512
+ class Representation < Google::Apis::Core::JsonRepresentation
1513
+ property :create_pod_range, as: 'createPodRange'
1514
+ property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
1515
+ property :pod_range, as: 'podRange'
1516
+ end
1517
+ end
1518
+
1408
1519
  class NodePool
1409
1520
  # @private
1410
1521
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1422,6 +1533,8 @@ module Google
1422
1533
  property :max_pods_constraint, as: 'maxPodsConstraint', class: Google::Apis::ContainerV1beta1::MaxPodsConstraint, decorator: Google::Apis::ContainerV1beta1::MaxPodsConstraint::Representation
1423
1534
 
1424
1535
  property :name, as: 'name'
1536
+ property :network_config, as: 'networkConfig', class: Google::Apis::ContainerV1beta1::NodeNetworkConfig, decorator: Google::Apis::ContainerV1beta1::NodeNetworkConfig::Representation
1537
+
1425
1538
  property :pod_ipv4_cidr_size, as: 'podIpv4CidrSize'
1426
1539
  property :self_link, as: 'selfLink'
1427
1540
  property :status, as: 'status'
@@ -1451,6 +1564,14 @@ module Google
1451
1564
  end
1452
1565
  end
1453
1566
 
1567
+ class NodeTaints
1568
+ # @private
1569
+ class Representation < Google::Apis::Core::JsonRepresentation
1570
+ collection :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaint, decorator: Google::Apis::ContainerV1beta1::NodeTaint::Representation
1571
+
1572
+ end
1573
+ end
1574
+
1454
1575
  class NotificationConfig
1455
1576
  # @private
1456
1577
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1854,6 +1975,8 @@ module Google
1854
1975
  property :image_type, as: 'imageType'
1855
1976
  property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1beta1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1beta1::NodeKubeletConfig::Representation
1856
1977
 
1978
+ property :labels, as: 'labels', class: Google::Apis::ContainerV1beta1::NodeLabels, decorator: Google::Apis::ContainerV1beta1::NodeLabels::Representation
1979
+
1857
1980
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1beta1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1beta1::LinuxNodeConfig::Representation
1858
1981
 
1859
1982
  collection :locations, as: 'locations'
@@ -1861,6 +1984,10 @@ module Google
1861
1984
  property :node_pool_id, as: 'nodePoolId'
1862
1985
  property :node_version, as: 'nodeVersion'
1863
1986
  property :project_id, as: 'projectId'
1987
+ property :tags, as: 'tags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
1988
+
1989
+ property :taints, as: 'taints', class: Google::Apis::ContainerV1beta1::NodeTaints, decorator: Google::Apis::ContainerV1beta1::NodeTaints::Representation
1990
+
1864
1991
  property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1beta1::UpgradeSettings, decorator: Google::Apis::ContainerV1beta1::UpgradeSettings::Representation
1865
1992
 
1866
1993
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1beta1::WorkloadMetadataConfig::Representation
@@ -1928,6 +2055,13 @@ module Google
1928
2055
  end
1929
2056
  end
1930
2057
 
2058
+ class WorkloadCertificates
2059
+ # @private
2060
+ class Representation < Google::Apis::Core::JsonRepresentation
2061
+ property :enable_certificates, as: 'enableCertificates'
2062
+ end
2063
+ end
2064
+
1931
2065
  class WorkloadIdentityConfig
1932
2066
  # @private
1933
2067
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.7.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-02-15 00:00:00.000000000 Z
11
+ date: 2021-05-18 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.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-container_v1beta1
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
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