google-cloud-container-v1beta1 0.7.1 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/google/cloud/container/v1beta1/cluster_manager/client.rb +20 -4
- data/lib/google/cloud/container/v1beta1/version.rb +1 -1
- data/lib/google/container/v1beta1/cluster_service_pb.rb +149 -0
- data/lib/google/container/v1beta1/cluster_service_services_pb.rb +3 -1
- data/proto_docs/google/container/v1beta1/cluster_service.rb +475 -41
- data/proto_docs/google/type/date.rb +53 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2ae02e5cfa53c38b3914d2d0fbdbc9d141f8545c9671938dcec437ab754e9db1
|
4
|
+
data.tar.gz: b948f566d3102abdeab6018cd34182bb2b4c7e86223dac3a9acbc1c6e61cfebe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cb56d0cd360c737c768147e2c7cf0acba39364fe30c9b3ba159ea109e51b07f2fd4b740faffb11881a7178734ea42b6ce48a11acb986e6712e60c86fbd4cf139
|
7
|
+
data.tar.gz: c9d25c5ab95d21f9c61d27381ee2e02e3fa4d1b0a110c2911a61396fa31fe6b0027fd9f242a0e8a4694d9d766607f1a4b42fe65bfa4db07734ab690830859bb3
|
@@ -592,7 +592,7 @@ module Google
|
|
592
592
|
# @param options [::Gapic::CallOptions, ::Hash]
|
593
593
|
# Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
|
594
594
|
#
|
595
|
-
# @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, locations: nil, workload_metadata_config: nil, name: nil, upgrade_settings: nil, linux_node_config: nil, kubelet_config: nil)
|
595
|
+
# @overload update_node_pool(project_id: nil, zone: nil, cluster_id: nil, node_pool_id: nil, node_version: nil, image_type: nil, locations: nil, workload_metadata_config: nil, name: nil, upgrade_settings: nil, tags: nil, taints: nil, labels: nil, linux_node_config: nil, kubelet_config: nil, gvnic: nil)
|
596
596
|
# Pass arguments to `update_node_pool` via keyword arguments. Note that at
|
597
597
|
# least one keyword argument is required. To specify no parameters, or to keep all
|
598
598
|
# the default parameter values, pass an empty Hash as a request object (see above).
|
@@ -640,10 +640,24 @@ module Google
|
|
640
640
|
# `projects/*/locations/*/clusters/*/nodePools/*`.
|
641
641
|
# @param upgrade_settings [::Google::Cloud::Container::V1beta1::NodePool::UpgradeSettings, ::Hash]
|
642
642
|
# Upgrade settings control disruption and speed of the upgrade.
|
643
|
+
# @param tags [::Google::Cloud::Container::V1beta1::NetworkTags, ::Hash]
|
644
|
+
# The desired network tags to be applied to all nodes in the node pool.
|
645
|
+
# If this field is not present, the tags will not be changed. Otherwise,
|
646
|
+
# the existing network tags will be *replaced* with the provided tags.
|
647
|
+
# @param taints [::Google::Cloud::Container::V1beta1::NodeTaints, ::Hash]
|
648
|
+
# The desired node taints to be applied to all nodes in the node pool.
|
649
|
+
# If this field is not present, the taints will not be changed. Otherwise,
|
650
|
+
# the existing node taints will be *replaced* with the provided taints.
|
651
|
+
# @param labels [::Google::Cloud::Container::V1beta1::NodeLabels, ::Hash]
|
652
|
+
# The desired node labels to be applied to all nodes in the node pool.
|
653
|
+
# If this field is not present, the labels will not be changed. Otherwise,
|
654
|
+
# the existing node labels will be *replaced* with the provided labels.
|
643
655
|
# @param linux_node_config [::Google::Cloud::Container::V1beta1::LinuxNodeConfig, ::Hash]
|
644
656
|
# Parameters that can be configured on Linux nodes.
|
645
657
|
# @param kubelet_config [::Google::Cloud::Container::V1beta1::NodeKubeletConfig, ::Hash]
|
646
658
|
# Node kubelet configs.
|
659
|
+
# @param gvnic [::Google::Cloud::Container::V1beta1::VirtualNIC, ::Hash]
|
660
|
+
# Enable or disable gvnic on the node pool.
|
647
661
|
#
|
648
662
|
# @yield [response, operation] Access the result along with the RPC operation
|
649
663
|
# @yieldparam response [::Google::Cloud::Container::V1beta1::Operation]
|
@@ -996,8 +1010,8 @@ module Google
|
|
996
1010
|
# Required. Deprecated. The name of the cluster to upgrade.
|
997
1011
|
# This field has been deprecated and replaced by the name field.
|
998
1012
|
# @param addons_config [::Google::Cloud::Container::V1beta1::AddonsConfig, ::Hash]
|
999
|
-
# Required. The desired configurations for the various addons available to
|
1000
|
-
# cluster.
|
1013
|
+
# Required. The desired configurations for the various addons available to
|
1014
|
+
# run in the cluster.
|
1001
1015
|
# @param name [::String]
|
1002
1016
|
# The name (project, location, cluster) of the cluster to set addons.
|
1003
1017
|
# Specified in the format `projects/*/locations/*/clusters/*`.
|
@@ -2648,7 +2662,9 @@ module Google
|
|
2648
2662
|
end
|
2649
2663
|
|
2650
2664
|
##
|
2651
|
-
#
|
2665
|
+
# SetNodePoolSizeRequest sets the size of a node pool. The new size will be
|
2666
|
+
# used for all replicas, including future replicas created by modifying
|
2667
|
+
# {::Google::Cloud::Container::V1beta1::NodePool#locations NodePool.locations}.
|
2652
2668
|
#
|
2653
2669
|
# @overload set_node_pool_size(request, options = nil)
|
2654
2670
|
# Pass arguments to `set_node_pool_size` via a request object, either of type
|
@@ -12,6 +12,7 @@ require 'google/protobuf/timestamp_pb'
|
|
12
12
|
require 'google/protobuf/wrappers_pb'
|
13
13
|
require 'google/rpc/code_pb'
|
14
14
|
require 'google/rpc/status_pb'
|
15
|
+
require 'google/type/date_pb'
|
15
16
|
Google::Protobuf::DescriptorPool.generated_pool.build do
|
16
17
|
add_file("google/container/v1beta1/cluster_service.proto", :syntax => :proto3) do
|
17
18
|
add_message "google.container.v1beta1.LinuxNodeConfig" do
|
@@ -46,6 +47,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
46
47
|
optional :linux_node_config, :message, 21, "google.container.v1beta1.LinuxNodeConfig"
|
47
48
|
optional :kubelet_config, :message, 22, "google.container.v1beta1.NodeKubeletConfig"
|
48
49
|
optional :ephemeral_storage_config, :message, 24, "google.container.v1beta1.EphemeralStorageConfig"
|
50
|
+
optional :gvnic, :message, 29, "google.container.v1beta1.VirtualNIC"
|
51
|
+
end
|
52
|
+
add_message "google.container.v1beta1.NodeNetworkConfig" do
|
53
|
+
optional :create_pod_range, :bool, 4
|
54
|
+
optional :pod_range, :string, 5
|
55
|
+
optional :pod_ipv4_cidr_block, :string, 6
|
49
56
|
end
|
50
57
|
add_message "google.container.v1beta1.ShieldedInstanceConfig" do
|
51
58
|
optional :enable_secure_boot, :bool, 1
|
@@ -84,6 +91,15 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
84
91
|
value :PREFER_NO_SCHEDULE, 2
|
85
92
|
value :NO_EXECUTE, 3
|
86
93
|
end
|
94
|
+
add_message "google.container.v1beta1.NodeTaints" do
|
95
|
+
repeated :taints, :message, 1, "google.container.v1beta1.NodeTaint"
|
96
|
+
end
|
97
|
+
add_message "google.container.v1beta1.NodeLabels" do
|
98
|
+
map :labels, :string, :string, 1
|
99
|
+
end
|
100
|
+
add_message "google.container.v1beta1.NetworkTags" do
|
101
|
+
repeated :tags, :string, 1
|
102
|
+
end
|
87
103
|
add_message "google.container.v1beta1.MasterAuth" do
|
88
104
|
optional :username, :string, 1
|
89
105
|
optional :password, :string, 2
|
@@ -250,10 +266,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
250
266
|
optional :shielded_nodes, :message, 40, "google.container.v1beta1.ShieldedNodes"
|
251
267
|
optional :release_channel, :message, 41, "google.container.v1beta1.ReleaseChannel"
|
252
268
|
optional :workload_identity_config, :message, 43, "google.container.v1beta1.WorkloadIdentityConfig"
|
269
|
+
optional :workload_certificates, :message, 52, "google.container.v1beta1.WorkloadCertificates"
|
253
270
|
optional :cluster_telemetry, :message, 46, "google.container.v1beta1.ClusterTelemetry"
|
254
271
|
optional :tpu_config, :message, 47, "google.container.v1beta1.TpuConfig"
|
255
272
|
optional :notification_config, :message, 49, "google.container.v1beta1.NotificationConfig"
|
256
273
|
optional :confidential_nodes, :message, 50, "google.container.v1beta1.ConfidentialNodes"
|
274
|
+
optional :identity_service_config, :message, 54, "google.container.v1beta1.IdentityServiceConfig"
|
257
275
|
optional :self_link, :string, 100
|
258
276
|
optional :zone, :string, 101
|
259
277
|
optional :endpoint, :string, 102
|
@@ -274,6 +292,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
274
292
|
optional :database_encryption, :message, 38, "google.container.v1beta1.DatabaseEncryption"
|
275
293
|
repeated :conditions, :message, 118, "google.container.v1beta1.StatusCondition"
|
276
294
|
optional :master, :message, 124, "google.container.v1beta1.Master"
|
295
|
+
optional :autopilot, :message, 128, "google.container.v1beta1.Autopilot"
|
296
|
+
optional :id, :string, 129
|
297
|
+
proto3_optional :node_pool_defaults, :message, 131, "google.container.v1beta1.NodePoolDefaults"
|
298
|
+
optional :logging_config, :message, 132, "google.container.v1beta1.LoggingConfig"
|
299
|
+
optional :monitoring_config, :message, 133, "google.container.v1beta1.MonitoringConfig"
|
277
300
|
end
|
278
301
|
add_enum "google.container.v1beta1.Cluster.Status" do
|
279
302
|
value :STATUS_UNSPECIFIED, 0
|
@@ -284,6 +307,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
284
307
|
value :ERROR, 5
|
285
308
|
value :DEGRADED, 6
|
286
309
|
end
|
310
|
+
add_message "google.container.v1beta1.NodePoolDefaults" do
|
311
|
+
optional :node_config_defaults, :message, 1, "google.container.v1beta1.NodeConfigDefaults"
|
312
|
+
end
|
313
|
+
add_message "google.container.v1beta1.NodeConfigDefaults" do
|
314
|
+
end
|
287
315
|
add_message "google.container.v1beta1.ClusterUpdate" do
|
288
316
|
optional :desired_node_version, :string, 4
|
289
317
|
optional :desired_monitoring_service, :string, 5
|
@@ -305,14 +333,22 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
305
333
|
optional :desired_cluster_telemetry, :message, 30, "google.container.v1beta1.ClusterTelemetry"
|
306
334
|
optional :desired_release_channel, :message, 31, "google.container.v1beta1.ReleaseChannel"
|
307
335
|
optional :desired_tpu_config, :message, 38, "google.container.v1beta1.TpuConfig"
|
336
|
+
optional :desired_l4ilb_subsetting_config, :message, 39, "google.container.v1beta1.ILBSubsettingConfig"
|
308
337
|
optional :desired_datapath_provider, :enum, 50, "google.container.v1beta1.DatapathProvider"
|
338
|
+
optional :desired_private_ipv6_google_access, :enum, 51, "google.container.v1beta1.PrivateIPv6GoogleAccess"
|
309
339
|
optional :desired_notification_config, :message, 55, "google.container.v1beta1.NotificationConfig"
|
310
340
|
optional :desired_master_version, :string, 100
|
311
341
|
optional :desired_database_encryption, :message, 46, "google.container.v1beta1.DatabaseEncryption"
|
312
342
|
optional :desired_workload_identity_config, :message, 47, "google.container.v1beta1.WorkloadIdentityConfig"
|
343
|
+
optional :desired_workload_certificates, :message, 61, "google.container.v1beta1.WorkloadCertificates"
|
313
344
|
optional :desired_shielded_nodes, :message, 48, "google.container.v1beta1.ShieldedNodes"
|
314
345
|
optional :desired_master, :message, 52, "google.container.v1beta1.Master"
|
346
|
+
optional :desired_dns_config, :message, 53, "google.container.v1beta1.DNSConfig"
|
347
|
+
optional :desired_service_external_ips_config, :message, 60, "google.container.v1beta1.ServiceExternalIPsConfig"
|
315
348
|
optional :desired_authenticator_groups_config, :message, 63, "google.container.v1beta1.AuthenticatorGroupsConfig"
|
349
|
+
optional :desired_logging_config, :message, 64, "google.container.v1beta1.LoggingConfig"
|
350
|
+
optional :desired_monitoring_config, :message, 65, "google.container.v1beta1.MonitoringConfig"
|
351
|
+
optional :desired_identity_service_config, :message, 66, "google.container.v1beta1.IdentityServiceConfig"
|
316
352
|
end
|
317
353
|
add_message "google.container.v1beta1.Operation" do
|
318
354
|
optional :name, :string, 1
|
@@ -401,8 +437,12 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
401
437
|
optional :workload_metadata_config, :message, 14, "google.container.v1beta1.WorkloadMetadataConfig"
|
402
438
|
optional :name, :string, 8
|
403
439
|
optional :upgrade_settings, :message, 15, "google.container.v1beta1.NodePool.UpgradeSettings"
|
440
|
+
optional :tags, :message, 16, "google.container.v1beta1.NetworkTags"
|
441
|
+
optional :taints, :message, 17, "google.container.v1beta1.NodeTaints"
|
442
|
+
optional :labels, :message, 18, "google.container.v1beta1.NodeLabels"
|
404
443
|
optional :linux_node_config, :message, 19, "google.container.v1beta1.LinuxNodeConfig"
|
405
444
|
optional :kubelet_config, :message, 20, "google.container.v1beta1.NodeKubeletConfig"
|
445
|
+
optional :gvnic, :message, 29, "google.container.v1beta1.VirtualNIC"
|
406
446
|
end
|
407
447
|
add_message "google.container.v1beta1.SetNodePoolAutoscalingRequest" do
|
408
448
|
optional :project_id, :string, 1
|
@@ -509,6 +549,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
509
549
|
repeated :valid_image_types, :string, 5
|
510
550
|
repeated :valid_master_versions, :string, 6
|
511
551
|
repeated :channels, :message, 9, "google.container.v1beta1.ServerConfig.ReleaseChannelConfig"
|
552
|
+
map :windows_version_maps, :string, :message, 10, "google.container.v1beta1.WindowsVersions"
|
512
553
|
end
|
513
554
|
add_message "google.container.v1beta1.ServerConfig.ReleaseChannelConfig" do
|
514
555
|
optional :channel, :enum, 1, "google.container.v1beta1.ReleaseChannel.Channel"
|
@@ -520,6 +561,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
520
561
|
optional :version, :string, 1
|
521
562
|
optional :reason, :string, 2
|
522
563
|
end
|
564
|
+
add_message "google.container.v1beta1.WindowsVersions" do
|
565
|
+
repeated :windows_versions, :message, 1, "google.container.v1beta1.WindowsVersions.WindowsVersion"
|
566
|
+
end
|
567
|
+
add_message "google.container.v1beta1.WindowsVersions.WindowsVersion" do
|
568
|
+
optional :image_type, :string, 1
|
569
|
+
optional :os_version, :string, 2
|
570
|
+
optional :support_end_date, :message, 3, "google.type.Date"
|
571
|
+
end
|
523
572
|
add_message "google.container.v1beta1.CreateNodePoolRequest" do
|
524
573
|
optional :project_id, :string, 1
|
525
574
|
optional :zone, :string, 2
|
@@ -552,6 +601,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
552
601
|
optional :config, :message, 2, "google.container.v1beta1.NodeConfig"
|
553
602
|
optional :initial_node_count, :int32, 3
|
554
603
|
repeated :locations, :string, 13
|
604
|
+
optional :network_config, :message, 14, "google.container.v1beta1.NodeNetworkConfig"
|
555
605
|
optional :self_link, :string, 100
|
556
606
|
optional :version, :string, 101
|
557
607
|
repeated :instance_group_urls, :string, 102
|
@@ -701,6 +751,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
701
751
|
add_message "google.container.v1beta1.AcceleratorConfig" do
|
702
752
|
optional :accelerator_count, :int64, 1
|
703
753
|
optional :accelerator_type, :string, 2
|
754
|
+
optional :gpu_partition_size, :string, 3
|
704
755
|
end
|
705
756
|
add_message "google.container.v1beta1.WorkloadMetadataConfig" do
|
706
757
|
optional :node_metadata, :enum, 1, "google.container.v1beta1.WorkloadMetadataConfig.NodeMetadata"
|
@@ -760,13 +811,21 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
760
811
|
value :GCE_QUOTA_EXCEEDED, 3
|
761
812
|
value :SET_BY_OPERATOR, 4
|
762
813
|
value :CLOUD_KMS_KEY_ERROR, 7
|
814
|
+
value :CA_EXPIRING, 9
|
763
815
|
end
|
764
816
|
add_message "google.container.v1beta1.NetworkConfig" do
|
765
817
|
optional :network, :string, 1
|
766
818
|
optional :subnetwork, :string, 2
|
767
819
|
optional :enable_intra_node_visibility, :bool, 5
|
768
820
|
optional :default_snat_status, :message, 7, "google.container.v1beta1.DefaultSnatStatus"
|
821
|
+
optional :enable_l4ilb_subsetting, :bool, 10
|
769
822
|
optional :datapath_provider, :enum, 11, "google.container.v1beta1.DatapathProvider"
|
823
|
+
optional :private_ipv6_google_access, :enum, 12, "google.container.v1beta1.PrivateIPv6GoogleAccess"
|
824
|
+
optional :dns_config, :message, 13, "google.container.v1beta1.DNSConfig"
|
825
|
+
optional :service_external_ips_config, :message, 15, "google.container.v1beta1.ServiceExternalIPsConfig"
|
826
|
+
end
|
827
|
+
add_message "google.container.v1beta1.ServiceExternalIPsConfig" do
|
828
|
+
optional :enabled, :bool, 1
|
770
829
|
end
|
771
830
|
add_message "google.container.v1beta1.ListUsableSubnetworksRequest" do
|
772
831
|
optional :parent, :string, 1
|
@@ -806,6 +865,24 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
806
865
|
add_message "google.container.v1beta1.IntraNodeVisibilityConfig" do
|
807
866
|
optional :enabled, :bool, 1
|
808
867
|
end
|
868
|
+
add_message "google.container.v1beta1.ILBSubsettingConfig" do
|
869
|
+
optional :enabled, :bool, 1
|
870
|
+
end
|
871
|
+
add_message "google.container.v1beta1.DNSConfig" do
|
872
|
+
optional :cluster_dns, :enum, 1, "google.container.v1beta1.DNSConfig.Provider"
|
873
|
+
optional :cluster_dns_scope, :enum, 2, "google.container.v1beta1.DNSConfig.DNSScope"
|
874
|
+
optional :cluster_dns_domain, :string, 3
|
875
|
+
end
|
876
|
+
add_enum "google.container.v1beta1.DNSConfig.Provider" do
|
877
|
+
value :PROVIDER_UNSPECIFIED, 0
|
878
|
+
value :PLATFORM_DEFAULT, 1
|
879
|
+
value :CLOUD_DNS, 2
|
880
|
+
end
|
881
|
+
add_enum "google.container.v1beta1.DNSConfig.DNSScope" do
|
882
|
+
value :DNS_SCOPE_UNSPECIFIED, 0
|
883
|
+
value :CLUSTER_SCOPE, 1
|
884
|
+
value :VPC_SCOPE, 2
|
885
|
+
end
|
809
886
|
add_message "google.container.v1beta1.MaxPodsConstraint" do
|
810
887
|
optional :max_pods_per_node, :int64, 1
|
811
888
|
end
|
@@ -814,6 +891,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
814
891
|
optional :workload_pool, :string, 2
|
815
892
|
optional :identity_provider, :string, 3
|
816
893
|
end
|
894
|
+
add_message "google.container.v1beta1.WorkloadCertificates" do
|
895
|
+
optional :enable_certificates, :message, 1, "google.protobuf.BoolValue"
|
896
|
+
end
|
817
897
|
add_message "google.container.v1beta1.DatabaseEncryption" do
|
818
898
|
optional :state, :enum, 2, "google.container.v1beta1.DatabaseEncryption.State"
|
819
899
|
optional :key_name, :string, 1
|
@@ -837,6 +917,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
837
917
|
add_message "google.container.v1beta1.ShieldedNodes" do
|
838
918
|
optional :enabled, :bool, 1
|
839
919
|
end
|
920
|
+
add_message "google.container.v1beta1.VirtualNIC" do
|
921
|
+
optional :enabled, :bool, 1
|
922
|
+
end
|
840
923
|
add_message "google.container.v1beta1.GetOpenIDConfigRequest" do
|
841
924
|
optional :parent, :string, 1
|
842
925
|
end
|
@@ -882,6 +965,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
882
965
|
end
|
883
966
|
add_message "google.container.v1beta1.Master" do
|
884
967
|
end
|
968
|
+
add_message "google.container.v1beta1.Autopilot" do
|
969
|
+
optional :enabled, :bool, 1
|
970
|
+
end
|
885
971
|
add_message "google.container.v1beta1.NotificationConfig" do
|
886
972
|
optional :pubsub, :message, 1, "google.container.v1beta1.NotificationConfig.PubSub"
|
887
973
|
end
|
@@ -900,6 +986,44 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
900
986
|
optional :target_version, :string, 5
|
901
987
|
optional :resource, :string, 6
|
902
988
|
end
|
989
|
+
add_message "google.container.v1beta1.UpgradeAvailableEvent" do
|
990
|
+
optional :version, :string, 1
|
991
|
+
optional :resource_type, :enum, 2, "google.container.v1beta1.UpgradeResourceType"
|
992
|
+
optional :release_channel, :message, 3, "google.container.v1beta1.ReleaseChannel"
|
993
|
+
optional :resource, :string, 4
|
994
|
+
optional :windows_versions, :message, 5, "google.container.v1beta1.WindowsVersions"
|
995
|
+
end
|
996
|
+
add_message "google.container.v1beta1.IdentityServiceConfig" do
|
997
|
+
optional :enabled, :bool, 1
|
998
|
+
end
|
999
|
+
add_message "google.container.v1beta1.LoggingConfig" do
|
1000
|
+
optional :component_config, :message, 1, "google.container.v1beta1.LoggingComponentConfig"
|
1001
|
+
end
|
1002
|
+
add_message "google.container.v1beta1.LoggingComponentConfig" do
|
1003
|
+
repeated :enable_components, :enum, 1, "google.container.v1beta1.LoggingComponentConfig.Component"
|
1004
|
+
end
|
1005
|
+
add_enum "google.container.v1beta1.LoggingComponentConfig.Component" do
|
1006
|
+
value :COMPONENT_UNSPECIFIED, 0
|
1007
|
+
value :SYSTEM_COMPONENTS, 1
|
1008
|
+
value :WORKLOADS, 2
|
1009
|
+
end
|
1010
|
+
add_message "google.container.v1beta1.MonitoringConfig" do
|
1011
|
+
optional :component_config, :message, 1, "google.container.v1beta1.MonitoringComponentConfig"
|
1012
|
+
end
|
1013
|
+
add_message "google.container.v1beta1.MonitoringComponentConfig" do
|
1014
|
+
repeated :enable_components, :enum, 1, "google.container.v1beta1.MonitoringComponentConfig.Component"
|
1015
|
+
end
|
1016
|
+
add_enum "google.container.v1beta1.MonitoringComponentConfig.Component" do
|
1017
|
+
value :COMPONENT_UNSPECIFIED, 0
|
1018
|
+
value :SYSTEM_COMPONENTS, 1
|
1019
|
+
value :WORKLOADS, 2
|
1020
|
+
end
|
1021
|
+
add_enum "google.container.v1beta1.PrivateIPv6GoogleAccess" do
|
1022
|
+
value :PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED, 0
|
1023
|
+
value :PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED, 1
|
1024
|
+
value :PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE, 2
|
1025
|
+
value :PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL, 3
|
1026
|
+
end
|
903
1027
|
add_enum "google.container.v1beta1.DatapathProvider" do
|
904
1028
|
value :DATAPATH_PROVIDER_UNSPECIFIED, 0
|
905
1029
|
value :LEGACY_DATAPATH, 1
|
@@ -920,6 +1044,7 @@ module Google
|
|
920
1044
|
LinuxNodeConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LinuxNodeConfig").msgclass
|
921
1045
|
NodeKubeletConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeKubeletConfig").msgclass
|
922
1046
|
NodeConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeConfig").msgclass
|
1047
|
+
NodeNetworkConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeNetworkConfig").msgclass
|
923
1048
|
ShieldedInstanceConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ShieldedInstanceConfig").msgclass
|
924
1049
|
SandboxConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SandboxConfig").msgclass
|
925
1050
|
SandboxConfig::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.SandboxConfig.Type").enummodule
|
@@ -928,6 +1053,9 @@ module Google
|
|
928
1053
|
ReservationAffinity::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ReservationAffinity.Type").enummodule
|
929
1054
|
NodeTaint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeTaint").msgclass
|
930
1055
|
NodeTaint::Effect = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeTaint.Effect").enummodule
|
1056
|
+
NodeTaints = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeTaints").msgclass
|
1057
|
+
NodeLabels = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeLabels").msgclass
|
1058
|
+
NetworkTags = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkTags").msgclass
|
931
1059
|
MasterAuth = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MasterAuth").msgclass
|
932
1060
|
ClientCertificateConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClientCertificateConfig").msgclass
|
933
1061
|
AddonsConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.AddonsConfig").msgclass
|
@@ -958,6 +1086,8 @@ module Google
|
|
958
1086
|
ClusterTelemetry::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClusterTelemetry.Type").enummodule
|
959
1087
|
Cluster = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Cluster").msgclass
|
960
1088
|
Cluster::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Cluster.Status").enummodule
|
1089
|
+
NodePoolDefaults = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodePoolDefaults").msgclass
|
1090
|
+
NodeConfigDefaults = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NodeConfigDefaults").msgclass
|
961
1091
|
ClusterUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ClusterUpdate").msgclass
|
962
1092
|
Operation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation").msgclass
|
963
1093
|
Operation::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Operation.Status").enummodule
|
@@ -987,6 +1117,8 @@ module Google
|
|
987
1117
|
ServerConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ServerConfig").msgclass
|
988
1118
|
ServerConfig::ReleaseChannelConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ServerConfig.ReleaseChannelConfig").msgclass
|
989
1119
|
ServerConfig::ReleaseChannelConfig::AvailableVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ServerConfig.ReleaseChannelConfig.AvailableVersion").msgclass
|
1120
|
+
WindowsVersions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.WindowsVersions").msgclass
|
1121
|
+
WindowsVersions::WindowsVersion = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.WindowsVersions.WindowsVersion").msgclass
|
990
1122
|
CreateNodePoolRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.CreateNodePoolRequest").msgclass
|
991
1123
|
DeleteNodePoolRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DeleteNodePoolRequest").msgclass
|
992
1124
|
ListNodePoolsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListNodePoolsRequest").msgclass
|
@@ -1027,6 +1159,7 @@ module Google
|
|
1027
1159
|
StatusCondition = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.StatusCondition").msgclass
|
1028
1160
|
StatusCondition::Code = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.StatusCondition.Code").enummodule
|
1029
1161
|
NetworkConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NetworkConfig").msgclass
|
1162
|
+
ServiceExternalIPsConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ServiceExternalIPsConfig").msgclass
|
1030
1163
|
ListUsableSubnetworksRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListUsableSubnetworksRequest").msgclass
|
1031
1164
|
ListUsableSubnetworksResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ListUsableSubnetworksResponse").msgclass
|
1032
1165
|
UsableSubnetworkSecondaryRange = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UsableSubnetworkSecondaryRange").msgclass
|
@@ -1035,14 +1168,20 @@ module Google
|
|
1035
1168
|
VerticalPodAutoscaling = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.VerticalPodAutoscaling").msgclass
|
1036
1169
|
DefaultSnatStatus = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DefaultSnatStatus").msgclass
|
1037
1170
|
IntraNodeVisibilityConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IntraNodeVisibilityConfig").msgclass
|
1171
|
+
ILBSubsettingConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ILBSubsettingConfig").msgclass
|
1172
|
+
DNSConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DNSConfig").msgclass
|
1173
|
+
DNSConfig::Provider = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DNSConfig.Provider").enummodule
|
1174
|
+
DNSConfig::DNSScope = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DNSConfig.DNSScope").enummodule
|
1038
1175
|
MaxPodsConstraint = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MaxPodsConstraint").msgclass
|
1039
1176
|
WorkloadIdentityConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.WorkloadIdentityConfig").msgclass
|
1177
|
+
WorkloadCertificates = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.WorkloadCertificates").msgclass
|
1040
1178
|
DatabaseEncryption = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DatabaseEncryption").msgclass
|
1041
1179
|
DatabaseEncryption::State = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DatabaseEncryption.State").enummodule
|
1042
1180
|
ResourceUsageExportConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceUsageExportConfig").msgclass
|
1043
1181
|
ResourceUsageExportConfig::BigQueryDestination = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceUsageExportConfig.BigQueryDestination").msgclass
|
1044
1182
|
ResourceUsageExportConfig::ConsumptionMeteringConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ResourceUsageExportConfig.ConsumptionMeteringConfig").msgclass
|
1045
1183
|
ShieldedNodes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ShieldedNodes").msgclass
|
1184
|
+
VirtualNIC = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.VirtualNIC").msgclass
|
1046
1185
|
GetOpenIDConfigRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetOpenIDConfigRequest").msgclass
|
1047
1186
|
GetOpenIDConfigResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetOpenIDConfigResponse").msgclass
|
1048
1187
|
GetJSONWebKeysRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.GetJSONWebKeysRequest").msgclass
|
@@ -1052,10 +1191,20 @@ module Google
|
|
1052
1191
|
ReleaseChannel::Channel = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ReleaseChannel.Channel").enummodule
|
1053
1192
|
TpuConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.TpuConfig").msgclass
|
1054
1193
|
Master = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Master").msgclass
|
1194
|
+
Autopilot = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.Autopilot").msgclass
|
1055
1195
|
NotificationConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NotificationConfig").msgclass
|
1056
1196
|
NotificationConfig::PubSub = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.NotificationConfig.PubSub").msgclass
|
1057
1197
|
ConfidentialNodes = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.ConfidentialNodes").msgclass
|
1058
1198
|
UpgradeEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpgradeEvent").msgclass
|
1199
|
+
UpgradeAvailableEvent = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpgradeAvailableEvent").msgclass
|
1200
|
+
IdentityServiceConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.IdentityServiceConfig").msgclass
|
1201
|
+
LoggingConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LoggingConfig").msgclass
|
1202
|
+
LoggingComponentConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LoggingComponentConfig").msgclass
|
1203
|
+
LoggingComponentConfig::Component = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.LoggingComponentConfig.Component").enummodule
|
1204
|
+
MonitoringConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringConfig").msgclass
|
1205
|
+
MonitoringComponentConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringComponentConfig").msgclass
|
1206
|
+
MonitoringComponentConfig::Component = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.MonitoringComponentConfig.Component").enummodule
|
1207
|
+
PrivateIPv6GoogleAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.PrivateIPv6GoogleAccess").enummodule
|
1059
1208
|
DatapathProvider = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.DatapathProvider").enummodule
|
1060
1209
|
UpgradeResourceType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1beta1.UpgradeResourceType").enummodule
|
1061
1210
|
end
|
@@ -120,7 +120,9 @@ module Google
|
|
120
120
|
rpc :StartIPRotation, ::Google::Cloud::Container::V1beta1::StartIPRotationRequest, ::Google::Cloud::Container::V1beta1::Operation
|
121
121
|
# Completes master IP rotation.
|
122
122
|
rpc :CompleteIPRotation, ::Google::Cloud::Container::V1beta1::CompleteIPRotationRequest, ::Google::Cloud::Container::V1beta1::Operation
|
123
|
-
#
|
123
|
+
# SetNodePoolSizeRequest sets the size of a node pool. The new size will be
|
124
|
+
# used for all replicas, including future replicas created by modifying
|
125
|
+
# [NodePool.locations][google.container.v1beta1.NodePool.locations].
|
124
126
|
rpc :SetNodePoolSize, ::Google::Cloud::Container::V1beta1::SetNodePoolSizeRequest, ::Google::Cloud::Container::V1beta1::Operation
|
125
127
|
# Enables or disables Network Policy for a cluster.
|
126
128
|
rpc :SetNetworkPolicy, ::Google::Cloud::Container::V1beta1::SetNetworkPolicyRequest, ::Google::Cloud::Container::V1beta1::Operation
|
@@ -154,9 +154,6 @@ module Google
|
|
154
154
|
# - "install-ssh-psm1"
|
155
155
|
# - "user-profile-psm1"
|
156
156
|
#
|
157
|
-
# The following keys are reserved for Windows nodes:
|
158
|
-
# - "serial-port-logging-enable"
|
159
|
-
#
|
160
157
|
# Values are free-form strings, and only have meaning as interpreted by
|
161
158
|
# the image running in the instance. The only restriction placed on them is
|
162
159
|
# that each value's size must be less than or equal to 32 KB.
|
@@ -260,6 +257,9 @@ module Google
|
|
260
257
|
# @return [::Google::Cloud::Container::V1beta1::EphemeralStorageConfig]
|
261
258
|
# Parameters for the ephemeral storage filesystem.
|
262
259
|
# If unspecified, ephemeral storage is backed by the boot disk.
|
260
|
+
# @!attribute [rw] gvnic
|
261
|
+
# @return [::Google::Cloud::Container::V1beta1::VirtualNIC]
|
262
|
+
# Enable or disable gvnic on the node pool.
|
263
263
|
class NodeConfig
|
264
264
|
include ::Google::Protobuf::MessageExts
|
265
265
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -283,6 +283,53 @@ module Google
|
|
283
283
|
end
|
284
284
|
end
|
285
285
|
|
286
|
+
# Parameters for node pool-level network config.
|
287
|
+
# @!attribute [rw] create_pod_range
|
288
|
+
# @return [::Boolean]
|
289
|
+
# Input only. Whether to create a new range for pod IPs in this node pool.
|
290
|
+
# Defaults are provided for `pod_range` and `pod_ipv4_cidr_block` if they
|
291
|
+
# are not specified.
|
292
|
+
#
|
293
|
+
# If neither `create_pod_range` or `pod_range` are specified, the
|
294
|
+
# cluster-level default (`ip_allocation_policy.cluster_ipv4_cidr_block`) is
|
295
|
+
# used.
|
296
|
+
#
|
297
|
+
# Only applicable if `ip_allocation_policy.use_ip_aliases` is true.
|
298
|
+
#
|
299
|
+
# This field cannot be changed after the node pool has been created.
|
300
|
+
# @!attribute [rw] pod_range
|
301
|
+
# @return [::String]
|
302
|
+
# The ID of the secondary range for pod IPs.
|
303
|
+
# If `create_pod_range` is true, this ID is used for the new range.
|
304
|
+
# If `create_pod_range` is false, uses an existing secondary range with this
|
305
|
+
# ID.
|
306
|
+
#
|
307
|
+
# Only applicable if `ip_allocation_policy.use_ip_aliases` is true.
|
308
|
+
#
|
309
|
+
# This field cannot be changed after the node pool has been created.
|
310
|
+
# @!attribute [rw] pod_ipv4_cidr_block
|
311
|
+
# @return [::String]
|
312
|
+
# The IP address range for pod IPs in this node pool.
|
313
|
+
#
|
314
|
+
# Only applicable if `create_pod_range` is true.
|
315
|
+
#
|
316
|
+
# Set to blank to have a range chosen with the default size.
|
317
|
+
#
|
318
|
+
# Set to /netmask (e.g. `/14`) to have a range chosen with a specific
|
319
|
+
# netmask.
|
320
|
+
#
|
321
|
+
# Set to a
|
322
|
+
# [CIDR](https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing)
|
323
|
+
# notation (e.g. `10.96.0.0/14`) to pick a specific range to use.
|
324
|
+
#
|
325
|
+
# Only applicable if `ip_allocation_policy.use_ip_aliases` is true.
|
326
|
+
#
|
327
|
+
# This field cannot be changed after the node pool has been created.
|
328
|
+
class NodeNetworkConfig
|
329
|
+
include ::Google::Protobuf::MessageExts
|
330
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
331
|
+
end
|
332
|
+
|
286
333
|
# A set of Shielded Instance options.
|
287
334
|
# @!attribute [rw] enable_secure_boot
|
288
335
|
# @return [::Boolean]
|
@@ -407,6 +454,46 @@ module Google
|
|
407
454
|
end
|
408
455
|
end
|
409
456
|
|
457
|
+
# Collection of Kubernetes [node
|
458
|
+
# taints](https://kubernetes.io/docs/concepts/configuration/taint-and-toleration).
|
459
|
+
# @!attribute [rw] taints
|
460
|
+
# @return [::Array<::Google::Cloud::Container::V1beta1::NodeTaint>]
|
461
|
+
# List of node taints.
|
462
|
+
class NodeTaints
|
463
|
+
include ::Google::Protobuf::MessageExts
|
464
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
465
|
+
end
|
466
|
+
|
467
|
+
# Collection of node-level [Kubernetes
|
468
|
+
# labels](https://kubernetes.io/docs/concepts/overview/working-with-objects/labels).
|
469
|
+
# @!attribute [rw] labels
|
470
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
471
|
+
# Map of node label keys and node label values.
|
472
|
+
class NodeLabels
|
473
|
+
include ::Google::Protobuf::MessageExts
|
474
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
475
|
+
|
476
|
+
# @!attribute [rw] key
|
477
|
+
# @return [::String]
|
478
|
+
# @!attribute [rw] value
|
479
|
+
# @return [::String]
|
480
|
+
class LabelsEntry
|
481
|
+
include ::Google::Protobuf::MessageExts
|
482
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
483
|
+
end
|
484
|
+
end
|
485
|
+
|
486
|
+
# Collection of Compute Engine network tags that can be applied to a node's
|
487
|
+
# underlying VM instance. (See `tags` field in
|
488
|
+
# [`NodeConfig`](/kubernetes-engine/docs/reference/rest/v1/NodeConfig)).
|
489
|
+
# @!attribute [rw] tags
|
490
|
+
# @return [::Array<::String>]
|
491
|
+
# List of network tags.
|
492
|
+
class NetworkTags
|
493
|
+
include ::Google::Protobuf::MessageExts
|
494
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
495
|
+
end
|
496
|
+
|
410
497
|
# The authentication information for accessing the master endpoint.
|
411
498
|
# Authentication can be done using HTTP basic auth or using client
|
412
499
|
# certificates.
|
@@ -583,8 +670,7 @@ module Google
|
|
583
670
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
584
671
|
end
|
585
672
|
|
586
|
-
# Configuration for the Compute Engine PD CSI driver.
|
587
|
-
# enabled at cluster creation time.
|
673
|
+
# Configuration for the Compute Engine PD CSI driver.
|
588
674
|
# @!attribute [rw] enabled
|
589
675
|
# @return [::Boolean]
|
590
676
|
# Whether the Compute Engine PD CSI driver is enabled for this cluster.
|
@@ -1132,6 +1218,10 @@ module Google
|
|
1132
1218
|
# @return [::Google::Cloud::Container::V1beta1::WorkloadIdentityConfig]
|
1133
1219
|
# Configuration for the use of Kubernetes Service Accounts in GCP IAM
|
1134
1220
|
# policies.
|
1221
|
+
# @!attribute [rw] workload_certificates
|
1222
|
+
# @return [::Google::Cloud::Container::V1beta1::WorkloadCertificates]
|
1223
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes
|
1224
|
+
# pods.
|
1135
1225
|
# @!attribute [rw] cluster_telemetry
|
1136
1226
|
# @return [::Google::Cloud::Container::V1beta1::ClusterTelemetry]
|
1137
1227
|
# Telemetry integration for the cluster.
|
@@ -1144,6 +1234,9 @@ module Google
|
|
1144
1234
|
# @!attribute [rw] confidential_nodes
|
1145
1235
|
# @return [::Google::Cloud::Container::V1beta1::ConfidentialNodes]
|
1146
1236
|
# Configuration of Confidential Nodes
|
1237
|
+
# @!attribute [rw] identity_service_config
|
1238
|
+
# @return [::Google::Cloud::Container::V1beta1::IdentityServiceConfig]
|
1239
|
+
# Configuration for Identity Service component.
|
1147
1240
|
# @!attribute [rw] self_link
|
1148
1241
|
# @return [::String]
|
1149
1242
|
# [Output only] Server-defined URL for the resource.
|
@@ -1246,6 +1339,22 @@ module Google
|
|
1246
1339
|
# @!attribute [rw] master
|
1247
1340
|
# @return [::Google::Cloud::Container::V1beta1::Master]
|
1248
1341
|
# Configuration for master components.
|
1342
|
+
# @!attribute [rw] autopilot
|
1343
|
+
# @return [::Google::Cloud::Container::V1beta1::Autopilot]
|
1344
|
+
# Autopilot configuration for the cluster.
|
1345
|
+
# @!attribute [r] id
|
1346
|
+
# @return [::String]
|
1347
|
+
# Output only. Unique id for the cluster.
|
1348
|
+
# @!attribute [rw] node_pool_defaults
|
1349
|
+
# @return [::Google::Cloud::Container::V1beta1::NodePoolDefaults]
|
1350
|
+
# Default NodePool settings for the entire cluster. These settings are
|
1351
|
+
# overridden if specified on the specific NodePool object.
|
1352
|
+
# @!attribute [rw] logging_config
|
1353
|
+
# @return [::Google::Cloud::Container::V1beta1::LoggingConfig]
|
1354
|
+
# Logging configuration for the cluster.
|
1355
|
+
# @!attribute [rw] monitoring_config
|
1356
|
+
# @return [::Google::Cloud::Container::V1beta1::MonitoringConfig]
|
1357
|
+
# Monitoring configuration for the cluster.
|
1249
1358
|
class Cluster
|
1250
1359
|
include ::Google::Protobuf::MessageExts
|
1251
1360
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1289,6 +1398,21 @@ module Google
|
|
1289
1398
|
end
|
1290
1399
|
end
|
1291
1400
|
|
1401
|
+
# Subset of Nodepool message that has defaults.
|
1402
|
+
# @!attribute [rw] node_config_defaults
|
1403
|
+
# @return [::Google::Cloud::Container::V1beta1::NodeConfigDefaults]
|
1404
|
+
# Subset of NodeConfig message that has defaults.
|
1405
|
+
class NodePoolDefaults
|
1406
|
+
include ::Google::Protobuf::MessageExts
|
1407
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1408
|
+
end
|
1409
|
+
|
1410
|
+
# Subset of NodeConfig message that has defaults.
|
1411
|
+
class NodeConfigDefaults
|
1412
|
+
include ::Google::Protobuf::MessageExts
|
1413
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
1414
|
+
end
|
1415
|
+
|
1292
1416
|
# ClusterUpdate describes an update to the cluster. Exactly one update can
|
1293
1417
|
# be applied to a cluster with each request, so at most one field can be
|
1294
1418
|
# provided.
|
@@ -1396,9 +1520,15 @@ module Google
|
|
1396
1520
|
# @!attribute [rw] desired_tpu_config
|
1397
1521
|
# @return [::Google::Cloud::Container::V1beta1::TpuConfig]
|
1398
1522
|
# The desired Cloud TPU configuration.
|
1523
|
+
# @!attribute [rw] desired_l4ilb_subsetting_config
|
1524
|
+
# @return [::Google::Cloud::Container::V1beta1::ILBSubsettingConfig]
|
1525
|
+
# The desired L4 Internal Load Balancer Subsetting configuration.
|
1399
1526
|
# @!attribute [rw] desired_datapath_provider
|
1400
1527
|
# @return [::Google::Cloud::Container::V1beta1::DatapathProvider]
|
1401
1528
|
# The desired datapath provider for the cluster.
|
1529
|
+
# @!attribute [rw] desired_private_ipv6_google_access
|
1530
|
+
# @return [::Google::Cloud::Container::V1beta1::PrivateIPv6GoogleAccess]
|
1531
|
+
# The desired state of IPv6 connectivity to Google Services.
|
1402
1532
|
# @!attribute [rw] desired_notification_config
|
1403
1533
|
# @return [::Google::Cloud::Container::V1beta1::NotificationConfig]
|
1404
1534
|
# The desired notification configuration.
|
@@ -1421,16 +1551,36 @@ module Google
|
|
1421
1551
|
# @!attribute [rw] desired_workload_identity_config
|
1422
1552
|
# @return [::Google::Cloud::Container::V1beta1::WorkloadIdentityConfig]
|
1423
1553
|
# Configuration for Workload Identity.
|
1554
|
+
# @!attribute [rw] desired_workload_certificates
|
1555
|
+
# @return [::Google::Cloud::Container::V1beta1::WorkloadCertificates]
|
1556
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes
|
1557
|
+
# pods.
|
1424
1558
|
# @!attribute [rw] desired_shielded_nodes
|
1425
1559
|
# @return [::Google::Cloud::Container::V1beta1::ShieldedNodes]
|
1426
1560
|
# Configuration for Shielded Nodes.
|
1427
1561
|
# @!attribute [rw] desired_master
|
1428
1562
|
# @return [::Google::Cloud::Container::V1beta1::Master]
|
1429
1563
|
# Configuration for master components.
|
1564
|
+
# @!attribute [rw] desired_dns_config
|
1565
|
+
# @return [::Google::Cloud::Container::V1beta1::DNSConfig]
|
1566
|
+
# DNSConfig contains clusterDNS config for this cluster.
|
1567
|
+
# @!attribute [rw] desired_service_external_ips_config
|
1568
|
+
# @return [::Google::Cloud::Container::V1beta1::ServiceExternalIPsConfig]
|
1569
|
+
# ServiceExternalIPsConfig specifies the config for the use of Services with
|
1570
|
+
# ExternalIPs field.
|
1430
1571
|
# @!attribute [rw] desired_authenticator_groups_config
|
1431
1572
|
# @return [::Google::Cloud::Container::V1beta1::AuthenticatorGroupsConfig]
|
1432
1573
|
# AuthenticatorGroupsConfig specifies the config for the cluster security
|
1433
1574
|
# groups settings.
|
1575
|
+
# @!attribute [rw] desired_logging_config
|
1576
|
+
# @return [::Google::Cloud::Container::V1beta1::LoggingConfig]
|
1577
|
+
# The desired logging configuration.
|
1578
|
+
# @!attribute [rw] desired_monitoring_config
|
1579
|
+
# @return [::Google::Cloud::Container::V1beta1::MonitoringConfig]
|
1580
|
+
# The desired monitoring configuration.
|
1581
|
+
# @!attribute [rw] desired_identity_service_config
|
1582
|
+
# @return [::Google::Cloud::Container::V1beta1::IdentityServiceConfig]
|
1583
|
+
# The desired Identity Service component configuration.
|
1434
1584
|
class ClusterUpdate
|
1435
1585
|
include ::Google::Protobuf::MessageExts
|
1436
1586
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1746,12 +1896,30 @@ module Google
|
|
1746
1896
|
# @!attribute [rw] upgrade_settings
|
1747
1897
|
# @return [::Google::Cloud::Container::V1beta1::NodePool::UpgradeSettings]
|
1748
1898
|
# Upgrade settings control disruption and speed of the upgrade.
|
1899
|
+
# @!attribute [rw] tags
|
1900
|
+
# @return [::Google::Cloud::Container::V1beta1::NetworkTags]
|
1901
|
+
# The desired network tags to be applied to all nodes in the node pool.
|
1902
|
+
# If this field is not present, the tags will not be changed. Otherwise,
|
1903
|
+
# the existing network tags will be *replaced* with the provided tags.
|
1904
|
+
# @!attribute [rw] taints
|
1905
|
+
# @return [::Google::Cloud::Container::V1beta1::NodeTaints]
|
1906
|
+
# The desired node taints to be applied to all nodes in the node pool.
|
1907
|
+
# If this field is not present, the taints will not be changed. Otherwise,
|
1908
|
+
# the existing node taints will be *replaced* with the provided taints.
|
1909
|
+
# @!attribute [rw] labels
|
1910
|
+
# @return [::Google::Cloud::Container::V1beta1::NodeLabels]
|
1911
|
+
# The desired node labels to be applied to all nodes in the node pool.
|
1912
|
+
# If this field is not present, the labels will not be changed. Otherwise,
|
1913
|
+
# the existing node labels will be *replaced* with the provided labels.
|
1749
1914
|
# @!attribute [rw] linux_node_config
|
1750
1915
|
# @return [::Google::Cloud::Container::V1beta1::LinuxNodeConfig]
|
1751
1916
|
# Parameters that can be configured on Linux nodes.
|
1752
1917
|
# @!attribute [rw] kubelet_config
|
1753
1918
|
# @return [::Google::Cloud::Container::V1beta1::NodeKubeletConfig]
|
1754
1919
|
# Node kubelet configs.
|
1920
|
+
# @!attribute [rw] gvnic
|
1921
|
+
# @return [::Google::Cloud::Container::V1beta1::VirtualNIC]
|
1922
|
+
# Enable or disable gvnic on the node pool.
|
1755
1923
|
class UpdateNodePoolRequest
|
1756
1924
|
include ::Google::Protobuf::MessageExts
|
1757
1925
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -1884,8 +2052,8 @@ module Google
|
|
1884
2052
|
# This field has been deprecated and replaced by the name field.
|
1885
2053
|
# @!attribute [rw] addons_config
|
1886
2054
|
# @return [::Google::Cloud::Container::V1beta1::AddonsConfig]
|
1887
|
-
# Required. The desired configurations for the various addons available to
|
1888
|
-
# cluster.
|
2055
|
+
# Required. The desired configurations for the various addons available to
|
2056
|
+
# run in the cluster.
|
1889
2057
|
# @!attribute [rw] name
|
1890
2058
|
# @return [::String]
|
1891
2059
|
# The name (project, location, cluster) of the cluster to set addons.
|
@@ -2201,6 +2369,9 @@ module Google
|
|
2201
2369
|
# @!attribute [rw] channels
|
2202
2370
|
# @return [::Array<::Google::Cloud::Container::V1beta1::ServerConfig::ReleaseChannelConfig>]
|
2203
2371
|
# List of release channel configurations.
|
2372
|
+
# @!attribute [rw] windows_version_maps
|
2373
|
+
# @return [::Google::Protobuf::Map{::String => ::Google::Cloud::Container::V1beta1::WindowsVersions}]
|
2374
|
+
# Maps of Kubernetes version and supported Windows server versions.
|
2204
2375
|
class ServerConfig
|
2205
2376
|
include ::Google::Protobuf::MessageExts
|
2206
2377
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -2236,6 +2407,39 @@ module Google
|
|
2236
2407
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2237
2408
|
end
|
2238
2409
|
end
|
2410
|
+
|
2411
|
+
# @!attribute [rw] key
|
2412
|
+
# @return [::String]
|
2413
|
+
# @!attribute [rw] value
|
2414
|
+
# @return [::Google::Cloud::Container::V1beta1::WindowsVersions]
|
2415
|
+
class WindowsVersionMapsEntry
|
2416
|
+
include ::Google::Protobuf::MessageExts
|
2417
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2418
|
+
end
|
2419
|
+
end
|
2420
|
+
|
2421
|
+
# Windows server versions.
|
2422
|
+
# @!attribute [rw] windows_versions
|
2423
|
+
# @return [::Array<::Google::Cloud::Container::V1beta1::WindowsVersions::WindowsVersion>]
|
2424
|
+
# List of Windows server versions.
|
2425
|
+
class WindowsVersions
|
2426
|
+
include ::Google::Protobuf::MessageExts
|
2427
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2428
|
+
|
2429
|
+
# Windows server version.
|
2430
|
+
# @!attribute [rw] image_type
|
2431
|
+
# @return [::String]
|
2432
|
+
# Windows server image type
|
2433
|
+
# @!attribute [rw] os_version
|
2434
|
+
# @return [::String]
|
2435
|
+
# Windows server build number
|
2436
|
+
# @!attribute [rw] support_end_date
|
2437
|
+
# @return [::Google::Type::Date]
|
2438
|
+
# Mainstream support end date
|
2439
|
+
class WindowsVersion
|
2440
|
+
include ::Google::Protobuf::MessageExts
|
2441
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2442
|
+
end
|
2239
2443
|
end
|
2240
2444
|
|
2241
2445
|
# CreateNodePoolRequest creates a node pool for a cluster.
|
@@ -2358,6 +2562,29 @@ module Google
|
|
2358
2562
|
# of Kubernetes labels applied to them, which may be used to reference them
|
2359
2563
|
# during pod scheduling. They may also be resized up or down, to accommodate
|
2360
2564
|
# the workload.
|
2565
|
+
# These upgrade settings control the level of parallelism and the level of
|
2566
|
+
# disruption caused by an upgrade.
|
2567
|
+
#
|
2568
|
+
# maxUnavailable controls the number of nodes that can be simultaneously
|
2569
|
+
# unavailable.
|
2570
|
+
#
|
2571
|
+
# maxSurge controls the number of additional nodes that can be added to the
|
2572
|
+
# node pool temporarily for the time of the upgrade to increase the number of
|
2573
|
+
# available nodes.
|
2574
|
+
#
|
2575
|
+
# (maxUnavailable + maxSurge) determines the level of parallelism (how many
|
2576
|
+
# nodes are being upgraded at the same time).
|
2577
|
+
#
|
2578
|
+
# Note: upgrades inevitably introduce some disruption since workloads need to
|
2579
|
+
# be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0,
|
2580
|
+
# this holds true. (Disruption stays within the limits of
|
2581
|
+
# PodDisruptionBudget, if it is configured.)
|
2582
|
+
#
|
2583
|
+
# Consider a hypothetical node pool with 5 nodes having maxSurge=2,
|
2584
|
+
# maxUnavailable=1. This means the upgrade process upgrades 3 nodes
|
2585
|
+
# simultaneously. It creates 2 additional (upgraded) nodes, then it brings
|
2586
|
+
# down 3 old (not yet upgraded) nodes at the same time. This ensures that
|
2587
|
+
# there are always at least 4 nodes available.
|
2361
2588
|
# @!attribute [rw] name
|
2362
2589
|
# @return [::String]
|
2363
2590
|
# The name of the node pool.
|
@@ -2382,6 +2609,10 @@ module Google
|
|
2382
2609
|
#
|
2383
2610
|
# Warning: changing node pool locations will result in nodes being added
|
2384
2611
|
# and/or removed.
|
2612
|
+
# @!attribute [rw] network_config
|
2613
|
+
# @return [::Google::Cloud::Container::V1beta1::NodeNetworkConfig]
|
2614
|
+
# Networking configuration for this NodePool. If specified, it overrides the
|
2615
|
+
# cluster-level defaults.
|
2385
2616
|
# @!attribute [rw] self_link
|
2386
2617
|
# @return [::String]
|
2387
2618
|
# [Output only] Server-defined URL for the resource.
|
@@ -2425,29 +2656,6 @@ module Google
|
|
2425
2656
|
include ::Google::Protobuf::MessageExts
|
2426
2657
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2427
2658
|
|
2428
|
-
# These upgrade settings control the level of parallelism and the level of
|
2429
|
-
# disruption caused by an upgrade.
|
2430
|
-
#
|
2431
|
-
# maxUnavailable controls the number of nodes that can be simultaneously
|
2432
|
-
# unavailable.
|
2433
|
-
#
|
2434
|
-
# maxSurge controls the number of additional nodes that can be added to the
|
2435
|
-
# node pool temporarily for the time of the upgrade to increase the number of
|
2436
|
-
# available nodes.
|
2437
|
-
#
|
2438
|
-
# (maxUnavailable + maxSurge) determines the level of parallelism (how many
|
2439
|
-
# nodes are being upgraded at the same time).
|
2440
|
-
#
|
2441
|
-
# Note: upgrades inevitably introduce some disruption since workloads need to
|
2442
|
-
# be moved from old nodes to new, upgraded ones. Even if maxUnavailable=0,
|
2443
|
-
# this holds true. (Disruption stays within the limits of
|
2444
|
-
# PodDisruptionBudget, if it is configured.)
|
2445
|
-
#
|
2446
|
-
# Consider a hypothetical node pool with 5 nodes having maxSurge=2,
|
2447
|
-
# maxUnavailable=1. This means the upgrade process upgrades 3 nodes
|
2448
|
-
# simultaneously. It creates 2 additional (upgraded) nodes, then it brings
|
2449
|
-
# down 3 old (not yet upgraded) nodes at the same time. This ensures that
|
2450
|
-
# there are always at least 4 nodes available.
|
2451
2659
|
# @!attribute [rw] max_surge
|
2452
2660
|
# @return [::Integer]
|
2453
2661
|
# The maximum number of nodes that can be created beyond the current size
|
@@ -2673,8 +2881,7 @@ module Google
|
|
2673
2881
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
2674
2882
|
end
|
2675
2883
|
|
2676
|
-
# SetNodePoolSizeRequest sets the size a node
|
2677
|
-
# pool.
|
2884
|
+
# SetNodePoolSizeRequest sets the size of a node pool.
|
2678
2885
|
# @!attribute [rw] project_id
|
2679
2886
|
# @return [::String]
|
2680
2887
|
# Required. Deprecated. The Google Developers Console [project ID or project
|
@@ -2854,7 +3061,7 @@ module Google
|
|
2854
3061
|
# https://cloud.google.com/compute/docs/disks/customer-managed-encryption
|
2855
3062
|
# @!attribute [rw] image_type
|
2856
3063
|
# @return [::String]
|
2857
|
-
# The image type to use for
|
3064
|
+
# The image type to use for NAP created node.
|
2858
3065
|
class AutoprovisioningNodePoolDefaults
|
2859
3066
|
include ::Google::Protobuf::MessageExts
|
2860
3067
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -2888,7 +3095,7 @@ module Google
|
|
2888
3095
|
# @!attribute [rw] max_node_count
|
2889
3096
|
# @return [::Integer]
|
2890
3097
|
# Maximum number of nodes in the NodePool. Must be >= min_node_count. There
|
2891
|
-
# has to enough quota to scale up the cluster.
|
3098
|
+
# has to be enough quota to scale up the cluster.
|
2892
3099
|
# @!attribute [rw] autoprovisioned
|
2893
3100
|
# @return [::Boolean]
|
2894
3101
|
# Can this node pool be deleted automatically.
|
@@ -3035,6 +3242,11 @@ module Google
|
|
3035
3242
|
# @return [::String]
|
3036
3243
|
# The accelerator type resource name. List of supported accelerators
|
3037
3244
|
# [here](https://cloud.google.com/compute/docs/gpus)
|
3245
|
+
# @!attribute [rw] gpu_partition_size
|
3246
|
+
# @return [::String]
|
3247
|
+
# Size of partitions to create on the GPU. Valid values are described in the
|
3248
|
+
# NVIDIA [mig user
|
3249
|
+
# guide](https://docs.nvidia.com/datacenter/tesla/mig-user-guide/#partitioning).
|
3038
3250
|
class AcceleratorConfig
|
3039
3251
|
include ::Google::Protobuf::MessageExts
|
3040
3252
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -3247,8 +3459,11 @@ module Google
|
|
3247
3459
|
|
3248
3460
|
# Unable to perform an encrypt operation against the CloudKMS key used for
|
3249
3461
|
# etcd level encryption.
|
3250
|
-
# More codes TBA
|
3251
3462
|
CLOUD_KMS_KEY_ERROR = 7
|
3463
|
+
|
3464
|
+
# Cluster CA is expiring soon.
|
3465
|
+
# More codes TBA
|
3466
|
+
CA_EXPIRING = 9
|
3252
3467
|
end
|
3253
3468
|
end
|
3254
3469
|
|
@@ -3275,15 +3490,39 @@ module Google
|
|
3275
3490
|
# will be disabled when default_snat_status is disabled. When disabled is set
|
3276
3491
|
# to false, default IP masquerade rules will be applied to the nodes to
|
3277
3492
|
# prevent sNAT on cluster internal traffic.
|
3493
|
+
# @!attribute [rw] enable_l4ilb_subsetting
|
3494
|
+
# @return [::Boolean]
|
3495
|
+
# Whether L4ILB Subsetting is enabled for this cluster.
|
3278
3496
|
# @!attribute [rw] datapath_provider
|
3279
3497
|
# @return [::Google::Cloud::Container::V1beta1::DatapathProvider]
|
3280
3498
|
# The desired datapath provider for this cluster. By default, uses the
|
3281
3499
|
# IPTables-based kube-proxy implementation.
|
3500
|
+
# @!attribute [rw] private_ipv6_google_access
|
3501
|
+
# @return [::Google::Cloud::Container::V1beta1::PrivateIPv6GoogleAccess]
|
3502
|
+
# The desired state of IPv6 connectivity to Google Services.
|
3503
|
+
# By default, no private IPv6 access to or from Google Services (all access
|
3504
|
+
# will be via IPv4)
|
3505
|
+
# @!attribute [rw] dns_config
|
3506
|
+
# @return [::Google::Cloud::Container::V1beta1::DNSConfig]
|
3507
|
+
# DNSConfig contains clusterDNS config for this cluster.
|
3508
|
+
# @!attribute [rw] service_external_ips_config
|
3509
|
+
# @return [::Google::Cloud::Container::V1beta1::ServiceExternalIPsConfig]
|
3510
|
+
# ServiceExternalIPsConfig specifies if services with externalIPs field are
|
3511
|
+
# blocked or not.
|
3282
3512
|
class NetworkConfig
|
3283
3513
|
include ::Google::Protobuf::MessageExts
|
3284
3514
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3285
3515
|
end
|
3286
3516
|
|
3517
|
+
# Config to block services with externalIPs field.
|
3518
|
+
# @!attribute [rw] enabled
|
3519
|
+
# @return [::Boolean]
|
3520
|
+
# Whether Services with ExternalIPs field are allowed or not.
|
3521
|
+
class ServiceExternalIPsConfig
|
3522
|
+
include ::Google::Protobuf::MessageExts
|
3523
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3524
|
+
end
|
3525
|
+
|
3287
3526
|
# ListUsableSubnetworksRequest requests the list of usable subnetworks.
|
3288
3527
|
# available to a user for creating clusters.
|
3289
3528
|
# @!attribute [rw] parent
|
@@ -3423,6 +3662,55 @@ module Google
|
|
3423
3662
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3424
3663
|
end
|
3425
3664
|
|
3665
|
+
# ILBSubsettingConfig contains the desired config of L4 Internal LoadBalancer
|
3666
|
+
# subsetting on this cluster.
|
3667
|
+
# @!attribute [rw] enabled
|
3668
|
+
# @return [::Boolean]
|
3669
|
+
# Enables l4 ILB subsetting for this cluster
|
3670
|
+
class ILBSubsettingConfig
|
3671
|
+
include ::Google::Protobuf::MessageExts
|
3672
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3673
|
+
end
|
3674
|
+
|
3675
|
+
# DNSConfig contains the desired set of options for configuring clusterDNS.
|
3676
|
+
# @!attribute [rw] cluster_dns
|
3677
|
+
# @return [::Google::Cloud::Container::V1beta1::DNSConfig::Provider]
|
3678
|
+
# cluster_dns indicates which in-cluster DNS provider should be used.
|
3679
|
+
# @!attribute [rw] cluster_dns_scope
|
3680
|
+
# @return [::Google::Cloud::Container::V1beta1::DNSConfig::DNSScope]
|
3681
|
+
# cluster_dns_scope indicates the scope of access to cluster DNS records.
|
3682
|
+
# @!attribute [rw] cluster_dns_domain
|
3683
|
+
# @return [::String]
|
3684
|
+
# cluster_dns_domain is the suffix used for all cluster service records.
|
3685
|
+
class DNSConfig
|
3686
|
+
include ::Google::Protobuf::MessageExts
|
3687
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3688
|
+
|
3689
|
+
# Provider lists the various in-cluster DNS providers.
|
3690
|
+
module Provider
|
3691
|
+
# Default value
|
3692
|
+
PROVIDER_UNSPECIFIED = 0
|
3693
|
+
|
3694
|
+
# Use GKE default DNS provider(kube-dns) for DNS resolution.
|
3695
|
+
PLATFORM_DEFAULT = 1
|
3696
|
+
|
3697
|
+
# Use CloudDNS for DNS resolution.
|
3698
|
+
CLOUD_DNS = 2
|
3699
|
+
end
|
3700
|
+
|
3701
|
+
# DNSScope lists the various scopes of access to cluster DNS records.
|
3702
|
+
module DNSScope
|
3703
|
+
# Default value, will be inferred as cluster scope.
|
3704
|
+
DNS_SCOPE_UNSPECIFIED = 0
|
3705
|
+
|
3706
|
+
# DNS records are accessible from within the cluster.
|
3707
|
+
CLUSTER_SCOPE = 1
|
3708
|
+
|
3709
|
+
# DNS records are accessible from within the VPC.
|
3710
|
+
VPC_SCOPE = 2
|
3711
|
+
end
|
3712
|
+
end
|
3713
|
+
|
3426
3714
|
# Constraints applied to pods.
|
3427
3715
|
# @!attribute [rw] max_pods_per_node
|
3428
3716
|
# @return [::Integer]
|
@@ -3448,6 +3736,23 @@ module Google
|
|
3448
3736
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3449
3737
|
end
|
3450
3738
|
|
3739
|
+
# Configuration for issuance of mTLS keys and certificates to Kubernetes pods.
|
3740
|
+
# @!attribute [rw] enable_certificates
|
3741
|
+
# @return [::Google::Protobuf::BoolValue]
|
3742
|
+
# enable_certificates controls issuance of workload mTLS certificates.
|
3743
|
+
#
|
3744
|
+
# If set, the GKE Workload Identity Certificates controller and node agent
|
3745
|
+
# will be deployed in the cluster, which can then be configured by creating a
|
3746
|
+
# WorkloadCertificateConfig Custom Resource.
|
3747
|
+
#
|
3748
|
+
# Requires Workload Identity
|
3749
|
+
# ({::Google::Cloud::Container::V1beta1::WorkloadIdentityConfig#workload_pool workload_pool}
|
3750
|
+
# must be non-empty).
|
3751
|
+
class WorkloadCertificates
|
3752
|
+
include ::Google::Protobuf::MessageExts
|
3753
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3754
|
+
end
|
3755
|
+
|
3451
3756
|
# Configuration of etcd encryption.
|
3452
3757
|
# @!attribute [rw] state
|
3453
3758
|
# @return [::Google::Cloud::Container::V1beta1::DatabaseEncryption::State]
|
@@ -3519,6 +3824,15 @@ module Google
|
|
3519
3824
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3520
3825
|
end
|
3521
3826
|
|
3827
|
+
# Configuration of gVNIC feature.
|
3828
|
+
# @!attribute [rw] enabled
|
3829
|
+
# @return [::Boolean]
|
3830
|
+
# Whether gVNIC features are enabled in the node pool.
|
3831
|
+
class VirtualNIC
|
3832
|
+
include ::Google::Protobuf::MessageExts
|
3833
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3834
|
+
end
|
3835
|
+
|
3522
3836
|
# GetOpenIDConfigRequest gets the OIDC discovery document for the
|
3523
3837
|
# cluster. See the OpenID Connect Discovery 1.0 specification for details.
|
3524
3838
|
# @!attribute [rw] parent
|
@@ -3672,6 +3986,15 @@ module Google
|
|
3672
3986
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3673
3987
|
end
|
3674
3988
|
|
3989
|
+
# Autopilot is the configuration for Autopilot settings on the cluster.
|
3990
|
+
# @!attribute [rw] enabled
|
3991
|
+
# @return [::Boolean]
|
3992
|
+
# Enable Autopilot
|
3993
|
+
class Autopilot
|
3994
|
+
include ::Google::Protobuf::MessageExts
|
3995
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3996
|
+
end
|
3997
|
+
|
3675
3998
|
# NotificationConfig is the configuration of notifications.
|
3676
3999
|
# @!attribute [rw] pubsub
|
3677
4000
|
# @return [::Google::Cloud::Container::V1beta1::NotificationConfig::PubSub]
|
@@ -3709,28 +4032,139 @@ module Google
|
|
3709
4032
|
# a resource is upgrading.
|
3710
4033
|
# @!attribute [rw] resource_type
|
3711
4034
|
# @return [::Google::Cloud::Container::V1beta1::UpgradeResourceType]
|
3712
|
-
#
|
4035
|
+
# The resource type that is upgrading.
|
3713
4036
|
# @!attribute [rw] operation
|
3714
4037
|
# @return [::String]
|
3715
|
-
#
|
4038
|
+
# The operation associated with this upgrade.
|
3716
4039
|
# @!attribute [rw] operation_start_time
|
3717
4040
|
# @return [::Google::Protobuf::Timestamp]
|
3718
|
-
#
|
4041
|
+
# The time when the operation was started.
|
3719
4042
|
# @!attribute [rw] current_version
|
3720
4043
|
# @return [::String]
|
3721
|
-
#
|
4044
|
+
# The current version before the upgrade.
|
3722
4045
|
# @!attribute [rw] target_version
|
3723
4046
|
# @return [::String]
|
3724
|
-
#
|
4047
|
+
# The target version for the upgrade.
|
3725
4048
|
# @!attribute [rw] resource
|
3726
4049
|
# @return [::String]
|
3727
|
-
# Optional
|
4050
|
+
# Optional relative path to the resource. For example in node pool upgrades,
|
3728
4051
|
# the relative path of the node pool.
|
3729
4052
|
class UpgradeEvent
|
3730
4053
|
include ::Google::Protobuf::MessageExts
|
3731
4054
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
3732
4055
|
end
|
3733
4056
|
|
4057
|
+
# UpgradeAvailableEvent is a notification sent to customers when a new
|
4058
|
+
# available version is released.
|
4059
|
+
# @!attribute [rw] version
|
4060
|
+
# @return [::String]
|
4061
|
+
# The release version available for upgrade.
|
4062
|
+
# @!attribute [rw] resource_type
|
4063
|
+
# @return [::Google::Cloud::Container::V1beta1::UpgradeResourceType]
|
4064
|
+
# The resource type of the release version.
|
4065
|
+
# @!attribute [rw] release_channel
|
4066
|
+
# @return [::Google::Cloud::Container::V1beta1::ReleaseChannel]
|
4067
|
+
# The release channel of the version. If empty, it means a non-channel
|
4068
|
+
# release.
|
4069
|
+
# @!attribute [rw] resource
|
4070
|
+
# @return [::String]
|
4071
|
+
# Optional relative path to the resource. For example, the relative path of
|
4072
|
+
# the node pool.
|
4073
|
+
# @!attribute [rw] windows_versions
|
4074
|
+
# @return [::Google::Cloud::Container::V1beta1::WindowsVersions]
|
4075
|
+
# Windows node versions info.
|
4076
|
+
class UpgradeAvailableEvent
|
4077
|
+
include ::Google::Protobuf::MessageExts
|
4078
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4079
|
+
end
|
4080
|
+
|
4081
|
+
# IdentityServiceConfig is configuration for Identity Service which allows
|
4082
|
+
# customers to use external identity providers with the K8S API
|
4083
|
+
# @!attribute [rw] enabled
|
4084
|
+
# @return [::Boolean]
|
4085
|
+
# Whether to enable the Identity Service component
|
4086
|
+
class IdentityServiceConfig
|
4087
|
+
include ::Google::Protobuf::MessageExts
|
4088
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4089
|
+
end
|
4090
|
+
|
4091
|
+
# LoggingConfig is cluster logging configuration.
|
4092
|
+
# @!attribute [rw] component_config
|
4093
|
+
# @return [::Google::Cloud::Container::V1beta1::LoggingComponentConfig]
|
4094
|
+
# Logging components configuration
|
4095
|
+
class LoggingConfig
|
4096
|
+
include ::Google::Protobuf::MessageExts
|
4097
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4098
|
+
end
|
4099
|
+
|
4100
|
+
# LoggingComponentConfig is cluster logging component configuration.
|
4101
|
+
# @!attribute [rw] enable_components
|
4102
|
+
# @return [::Array<::Google::Cloud::Container::V1beta1::LoggingComponentConfig::Component>]
|
4103
|
+
# Select components to collect logs. An empty set would disable all logging.
|
4104
|
+
class LoggingComponentConfig
|
4105
|
+
include ::Google::Protobuf::MessageExts
|
4106
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4107
|
+
|
4108
|
+
# GKE components exposing logs
|
4109
|
+
module Component
|
4110
|
+
# Default value. This shouldn't be used.
|
4111
|
+
COMPONENT_UNSPECIFIED = 0
|
4112
|
+
|
4113
|
+
# system components
|
4114
|
+
SYSTEM_COMPONENTS = 1
|
4115
|
+
|
4116
|
+
# workloads
|
4117
|
+
WORKLOADS = 2
|
4118
|
+
end
|
4119
|
+
end
|
4120
|
+
|
4121
|
+
# MonitoringConfig is cluster monitoring configuration.
|
4122
|
+
# @!attribute [rw] component_config
|
4123
|
+
# @return [::Google::Cloud::Container::V1beta1::MonitoringComponentConfig]
|
4124
|
+
# Monitoring components configuration
|
4125
|
+
class MonitoringConfig
|
4126
|
+
include ::Google::Protobuf::MessageExts
|
4127
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4128
|
+
end
|
4129
|
+
|
4130
|
+
# MonitoringComponentConfig is cluster monitoring component configuration.
|
4131
|
+
# @!attribute [rw] enable_components
|
4132
|
+
# @return [::Array<::Google::Cloud::Container::V1beta1::MonitoringComponentConfig::Component>]
|
4133
|
+
# Select components to collect metrics. An empty set would disable all
|
4134
|
+
# monitoring.
|
4135
|
+
class MonitoringComponentConfig
|
4136
|
+
include ::Google::Protobuf::MessageExts
|
4137
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
4138
|
+
|
4139
|
+
# GKE components exposing metrics
|
4140
|
+
module Component
|
4141
|
+
# Default value. This shouldn't be used.
|
4142
|
+
COMPONENT_UNSPECIFIED = 0
|
4143
|
+
|
4144
|
+
# system components
|
4145
|
+
SYSTEM_COMPONENTS = 1
|
4146
|
+
|
4147
|
+
# workloads
|
4148
|
+
WORKLOADS = 2
|
4149
|
+
end
|
4150
|
+
end
|
4151
|
+
|
4152
|
+
# PrivateIPv6GoogleAccess controls whether and how the pods can communicate
|
4153
|
+
# with Google Services through gRPC over IPv6.
|
4154
|
+
module PrivateIPv6GoogleAccess
|
4155
|
+
# Default value. Same as DISABLED
|
4156
|
+
PRIVATE_IPV6_GOOGLE_ACCESS_UNSPECIFIED = 0
|
4157
|
+
|
4158
|
+
# No private access to or from Google Services
|
4159
|
+
PRIVATE_IPV6_GOOGLE_ACCESS_DISABLED = 1
|
4160
|
+
|
4161
|
+
# Enables private IPv6 access to Google Services from GKE
|
4162
|
+
PRIVATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE = 2
|
4163
|
+
|
4164
|
+
# Enables priate IPv6 access to and from Google Services
|
4165
|
+
PRIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL = 3
|
4166
|
+
end
|
4167
|
+
|
3734
4168
|
# The datapath provider selects the implementation of the Kubernetes networking
|
3735
4169
|
# // model for service resolution and network policy enforcement.
|
3736
4170
|
module DatapathProvider
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2021 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
|
20
|
+
module Google
|
21
|
+
module Type
|
22
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
23
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
24
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
25
|
+
# following:
|
26
|
+
#
|
27
|
+
# * A full date, with non-zero year, month, and day values
|
28
|
+
# * A month and day value, with a zero year, such as an anniversary
|
29
|
+
# * A year on its own, with zero month and day values
|
30
|
+
# * A year and month value, with a zero day, such as a credit card expiration
|
31
|
+
# date
|
32
|
+
#
|
33
|
+
# Related types are [google.type.TimeOfDay][google.type.TimeOfDay] and
|
34
|
+
# `google.protobuf.Timestamp`.
|
35
|
+
# @!attribute [rw] year
|
36
|
+
# @return [::Integer]
|
37
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without
|
38
|
+
# a year.
|
39
|
+
# @!attribute [rw] month
|
40
|
+
# @return [::Integer]
|
41
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a
|
42
|
+
# month and day.
|
43
|
+
# @!attribute [rw] day
|
44
|
+
# @return [::Integer]
|
45
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0
|
46
|
+
# to specify a year by itself or a year and month where the day isn't
|
47
|
+
# significant.
|
48
|
+
class Date
|
49
|
+
include ::Google::Protobuf::MessageExts
|
50
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-container-v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -188,6 +188,7 @@ files:
|
|
188
188
|
- proto_docs/google/protobuf/wrappers.rb
|
189
189
|
- proto_docs/google/rpc/code.rb
|
190
190
|
- proto_docs/google/rpc/status.rb
|
191
|
+
- proto_docs/google/type/date.rb
|
191
192
|
homepage: https://github.com/googleapis/google-cloud-ruby
|
192
193
|
licenses:
|
193
194
|
- Apache-2.0
|