Skip to content

Commit 9495247

Browse files
feat: added High Throughput Logging API for Google Kubernetes Engine (#780)
- [ ] Regenerate this pull request now. docs: ReservationAffinity key field docs incorrect docs: missing period in description for min CPU platform PiperOrigin-RevId: 474706444 Source-Link: googleapis/googleapis@a5a8829 Source-Link: https://github.com/googleapis/googleapis-gen/commit/992389d809ed37f8fd4d787209048551d9e61154 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTkyMzg5ZDgwOWVkMzdmOGZkNGQ3ODcyMDkwNDg1NTFkOWU2MTE1NCJ9 feat: added High Throughput Logging API for Google Kubernetes Engine docs: ReservationAffinity key field docs incorrect docs: missing period in description for min CPU platform PiperOrigin-RevId: 474671838 Source-Link: googleapis/googleapis@9212f73 Source-Link: https://github.com/googleapis/googleapis-gen/commit/37e23437f2e8778b75d034d29401f75cca97493c Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMzdlMjM0MzdmMmU4Nzc4Yjc1ZDAzNGQyOTQwMWY3NWNjYTk3NDkzYyJ9 chore(bazel): Update WORKSPACE files for rules_gapic, gax_java, generator_java versions PiperOrigin-RevId: 472750037 Source-Link: googleapis/googleapis@88f2ea3 Source-Link: https://github.com/googleapis/googleapis-gen/commit/230a5588306aae18fe8f2a57f14d4039ad72c901 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMjMwYTU1ODgzMDZhYWUxOGZlOGYyYTU3ZjE0ZDQwMzlhZDcyYzkwMSJ9
1 parent 21e3fe6 commit 9495247

File tree

202 files changed

+11222
-4590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

202 files changed

+11222
-4590
lines changed

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java

+587-234
Large diffs are not rendered by default.

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerSettings.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -95,17 +95,17 @@
9595
* <p>For example, to set the total timeout of listClusters to 30 seconds:
9696
*
9797
* <pre>{@code
98-
* // This snippet has been automatically generated for illustrative purposes only.
99-
* // It may require modifications to work in your environment.
98+
* // This snippet has been automatically generated and should be regarded as a code template only.
99+
* // It will require modifications to work:
100+
* // - It may require correct/in-range values for request initialization.
101+
* // - It may require specifying regional endpoints when creating the service client as shown in
102+
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
100103
* ClusterManagerSettings.Builder clusterManagerSettingsBuilder =
101104
* ClusterManagerSettings.newBuilder();
102105
* clusterManagerSettingsBuilder
103106
* .listClustersSettings()
104107
* .setRetrySettings(
105-
* clusterManagerSettingsBuilder
106-
* .listClustersSettings()
107-
* .getRetrySettings()
108-
* .toBuilder()
108+
* clusterManagerSettingsBuilder.listClustersSettings().getRetrySettings().toBuilder()
109109
* .setTotalTimeout(Duration.ofSeconds(30))
110110
* .build());
111111
* ClusterManagerSettings clusterManagerSettings = clusterManagerSettingsBuilder.build();

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/package-info.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@
2626
* <p>Sample for ClusterManagerClient:
2727
*
2828
* <pre>{@code
29-
* // This snippet has been automatically generated for illustrative purposes only.
30-
* // It may require modifications to work in your environment.
29+
* // This snippet has been automatically generated and should be regarded as a code template only.
30+
* // It will require modifications to work:
31+
* // - It may require correct/in-range values for request initialization.
32+
* // - It may require specifying regional endpoints when creating the service client as shown in
33+
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
3134
* try (ClusterManagerClient clusterManagerClient = ClusterManagerClient.create()) {
3235
* String parent = "parent-995424086";
3336
* ListClustersResponse response = clusterManagerClient.listClusters(parent);

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/stub/ClusterManagerStubSettings.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -111,17 +111,17 @@
111111
* <p>For example, to set the total timeout of listClusters to 30 seconds:
112112
*
113113
* <pre>{@code
114-
* // This snippet has been automatically generated for illustrative purposes only.
115-
* // It may require modifications to work in your environment.
114+
* // This snippet has been automatically generated and should be regarded as a code template only.
115+
* // It will require modifications to work:
116+
* // - It may require correct/in-range values for request initialization.
117+
* // - It may require specifying regional endpoints when creating the service client as shown in
118+
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
116119
* ClusterManagerStubSettings.Builder clusterManagerSettingsBuilder =
117120
* ClusterManagerStubSettings.newBuilder();
118121
* clusterManagerSettingsBuilder
119122
* .listClustersSettings()
120123
* .setRetrySettings(
121-
* clusterManagerSettingsBuilder
122-
* .listClustersSettings()
123-
* .getRetrySettings()
124-
* .toBuilder()
124+
* clusterManagerSettingsBuilder.listClustersSettings().getRetrySettings().toBuilder()
125125
* .setTotalTimeout(Duration.ofSeconds(30))
126126
* .build());
127127
* ClusterManagerStubSettings clusterManagerSettings = clusterManagerSettingsBuilder.build();

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1beta1/ClusterManagerClient.java

+502-200
Large diffs are not rendered by default.

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1beta1/ClusterManagerSettings.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -97,17 +97,17 @@
9797
* <p>For example, to set the total timeout of listClusters to 30 seconds:
9898
*
9999
* <pre>{@code
100-
* // This snippet has been automatically generated for illustrative purposes only.
101-
* // It may require modifications to work in your environment.
100+
* // This snippet has been automatically generated and should be regarded as a code template only.
101+
* // It will require modifications to work:
102+
* // - It may require correct/in-range values for request initialization.
103+
* // - It may require specifying regional endpoints when creating the service client as shown in
104+
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
102105
* ClusterManagerSettings.Builder clusterManagerSettingsBuilder =
103106
* ClusterManagerSettings.newBuilder();
104107
* clusterManagerSettingsBuilder
105108
* .listClustersSettings()
106109
* .setRetrySettings(
107-
* clusterManagerSettingsBuilder
108-
* .listClustersSettings()
109-
* .getRetrySettings()
110-
* .toBuilder()
110+
* clusterManagerSettingsBuilder.listClustersSettings().getRetrySettings().toBuilder()
111111
* .setTotalTimeout(Duration.ofSeconds(30))
112112
* .build());
113113
* ClusterManagerSettings clusterManagerSettings = clusterManagerSettingsBuilder.build();

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1beta1/package-info.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,11 @@
2626
* <p>Sample for ClusterManagerClient:
2727
*
2828
* <pre>{@code
29-
* // This snippet has been automatically generated for illustrative purposes only.
30-
* // It may require modifications to work in your environment.
29+
* // This snippet has been automatically generated and should be regarded as a code template only.
30+
* // It will require modifications to work:
31+
* // - It may require correct/in-range values for request initialization.
32+
* // - It may require specifying regional endpoints when creating the service client as shown in
33+
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
3134
* try (ClusterManagerClient clusterManagerClient = ClusterManagerClient.create()) {
3235
* String projectId = "projectId-894832108";
3336
* String zone = "zone3744684";

java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1beta1/stub/ClusterManagerStubSettings.java

+6-6
Original file line numberDiff line numberDiff line change
@@ -113,17 +113,17 @@
113113
* <p>For example, to set the total timeout of listClusters to 30 seconds:
114114
*
115115
* <pre>{@code
116-
* // This snippet has been automatically generated for illustrative purposes only.
117-
* // It may require modifications to work in your environment.
116+
* // This snippet has been automatically generated and should be regarded as a code template only.
117+
* // It will require modifications to work:
118+
* // - It may require correct/in-range values for request initialization.
119+
* // - It may require specifying regional endpoints when creating the service client as shown in
120+
* // https://cloud.google.com/java/docs/setup#configure_endpoints_for_the_client_library
118121
* ClusterManagerStubSettings.Builder clusterManagerSettingsBuilder =
119122
* ClusterManagerStubSettings.newBuilder();
120123
* clusterManagerSettingsBuilder
121124
* .listClustersSettings()
122125
* .setRetrySettings(
123-
* clusterManagerSettingsBuilder
124-
* .listClustersSettings()
125-
* .getRetrySettings()
126-
* .toBuilder()
126+
* clusterManagerSettingsBuilder.listClustersSettings().getRetrySettings().toBuilder()
127127
* .setTotalTimeout(Duration.ofSeconds(30))
128128
* .build());
129129
* ClusterManagerStubSettings clusterManagerSettings = clusterManagerSettingsBuilder.build();

java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/ClusterManagerClientTest.java

+4
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@
8181
import com.google.container.v1.NodePoolAutoConfig;
8282
import com.google.container.v1.NodePoolAutoscaling;
8383
import com.google.container.v1.NodePoolDefaults;
84+
import com.google.container.v1.NodePoolLoggingConfig;
8485
import com.google.container.v1.NodeTaints;
8586
import com.google.container.v1.NotificationConfig;
8687
import com.google.container.v1.Operation;
@@ -712,6 +713,7 @@ public void updateNodePoolTest() throws Exception {
712713
.setGcfsConfig(GcfsConfig.newBuilder().build())
713714
.setConfidentialNodes(ConfidentialNodes.newBuilder().build())
714715
.setGvnic(VirtualNIC.newBuilder().build())
716+
.setLoggingConfig(NodePoolLoggingConfig.newBuilder().build())
715717
.build();
716718

717719
Operation actualResponse = client.updateNodePool(request);
@@ -741,6 +743,7 @@ public void updateNodePoolTest() throws Exception {
741743
Assert.assertEquals(request.getGcfsConfig(), actualRequest.getGcfsConfig());
742744
Assert.assertEquals(request.getConfidentialNodes(), actualRequest.getConfidentialNodes());
743745
Assert.assertEquals(request.getGvnic(), actualRequest.getGvnic());
746+
Assert.assertEquals(request.getLoggingConfig(), actualRequest.getLoggingConfig());
744747
Assert.assertTrue(
745748
channelProvider.isHeaderSent(
746749
ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
@@ -774,6 +777,7 @@ public void updateNodePoolExceptionTest() throws Exception {
774777
.setGcfsConfig(GcfsConfig.newBuilder().build())
775778
.setConfidentialNodes(ConfidentialNodes.newBuilder().build())
776779
.setGvnic(VirtualNIC.newBuilder().build())
780+
.setLoggingConfig(NodePoolLoggingConfig.newBuilder().build())
777781
.build();
778782
client.updateNodePool(request);
779783
Assert.fail("No exception raised");

java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1beta1/ClusterManagerClientTest.java

+4
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
import com.google.container.v1beta1.NodePoolAutoConfig;
8888
import com.google.container.v1beta1.NodePoolAutoscaling;
8989
import com.google.container.v1beta1.NodePoolDefaults;
90+
import com.google.container.v1beta1.NodePoolLoggingConfig;
9091
import com.google.container.v1beta1.NodeTaints;
9192
import com.google.container.v1beta1.NotificationConfig;
9293
import com.google.container.v1beta1.Operation;
@@ -493,6 +494,7 @@ public void updateNodePoolTest() throws Exception {
493494
.setGcfsConfig(GcfsConfig.newBuilder().build())
494495
.setConfidentialNodes(ConfidentialNodes.newBuilder().build())
495496
.setGvnic(VirtualNIC.newBuilder().build())
497+
.setLoggingConfig(NodePoolLoggingConfig.newBuilder().build())
496498
.build();
497499

498500
Operation actualResponse = client.updateNodePool(request);
@@ -522,6 +524,7 @@ public void updateNodePoolTest() throws Exception {
522524
Assert.assertEquals(request.getGcfsConfig(), actualRequest.getGcfsConfig());
523525
Assert.assertEquals(request.getConfidentialNodes(), actualRequest.getConfidentialNodes());
524526
Assert.assertEquals(request.getGvnic(), actualRequest.getGvnic());
527+
Assert.assertEquals(request.getLoggingConfig(), actualRequest.getLoggingConfig());
525528
Assert.assertTrue(
526529
channelProvider.isHeaderSent(
527530
ApiClientHeaderProvider.getDefaultApiClientHeaderKey(),
@@ -555,6 +558,7 @@ public void updateNodePoolExceptionTest() throws Exception {
555558
.setGcfsConfig(GcfsConfig.newBuilder().build())
556559
.setConfidentialNodes(ConfidentialNodes.newBuilder().build())
557560
.setGvnic(VirtualNIC.newBuilder().build())
561+
.setLoggingConfig(NodePoolLoggingConfig.newBuilder().build())
558562
.build();
559563
client.updateNodePool(request);
560564
Assert.fail("No exception raised");

java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AddonsConfig.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ public com.google.container.v1.HorizontalPodAutoscaling getHorizontalPodAutoscal
374374
* </code>
375375
*
376376
* @deprecated google.container.v1.AddonsConfig.kubernetes_dashboard is deprecated. See
377-
* google/container/v1/cluster_service.proto;l=1005
377+
* google/container/v1/cluster_service.proto;l=1009
378378
* @return Whether the kubernetesDashboard field is set.
379379
*/
380380
@java.lang.Override
@@ -397,7 +397,7 @@ public boolean hasKubernetesDashboard() {
397397
* </code>
398398
*
399399
* @deprecated google.container.v1.AddonsConfig.kubernetes_dashboard is deprecated. See
400-
* google/container/v1/cluster_service.proto;l=1005
400+
* google/container/v1/cluster_service.proto;l=1009
401401
* @return The kubernetesDashboard.
402402
*/
403403
@java.lang.Override
@@ -1725,7 +1725,7 @@ public Builder clearHorizontalPodAutoscaling() {
17251725
* </code>
17261726
*
17271727
* @deprecated google.container.v1.AddonsConfig.kubernetes_dashboard is deprecated. See
1728-
* google/container/v1/cluster_service.proto;l=1005
1728+
* google/container/v1/cluster_service.proto;l=1009
17291729
* @return Whether the kubernetesDashboard field is set.
17301730
*/
17311731
@java.lang.Deprecated
@@ -1747,7 +1747,7 @@ public boolean hasKubernetesDashboard() {
17471747
* </code>
17481748
*
17491749
* @deprecated google.container.v1.AddonsConfig.kubernetes_dashboard is deprecated. See
1750-
* google/container/v1/cluster_service.proto;l=1005
1750+
* google/container/v1/cluster_service.proto;l=1009
17511751
* @return The kubernetesDashboard.
17521752
*/
17531753
@java.lang.Deprecated

java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AddonsConfigOrBuilder.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public interface AddonsConfigOrBuilder
117117
* </code>
118118
*
119119
* @deprecated google.container.v1.AddonsConfig.kubernetes_dashboard is deprecated. See
120-
* google/container/v1/cluster_service.proto;l=1005
120+
* google/container/v1/cluster_service.proto;l=1009
121121
* @return Whether the kubernetesDashboard field is set.
122122
*/
123123
@java.lang.Deprecated
@@ -137,7 +137,7 @@ public interface AddonsConfigOrBuilder
137137
* </code>
138138
*
139139
* @deprecated google.container.v1.AddonsConfig.kubernetes_dashboard is deprecated. See
140-
* google/container/v1/cluster_service.proto;l=1005
140+
* google/container/v1/cluster_service.proto;l=1009
141141
* @return The kubernetesDashboard.
142142
*/
143143
@java.lang.Deprecated

java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaults.java

+14-14
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ public com.google.container.v1.NodeManagementOrBuilder getManagementOrBuilder()
433433
* minCpuPlatform: Intel Haswell or
434434
* minCpuPlatform: Intel Sandy Bridge. For more
435435
* information, read [how to specify min CPU
436-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
436+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
437437
* This field is deprecated, min_cpu_platform should be specified using
438438
* https://cloud.google.com/requested-min-cpu-platform label selector on the
439439
* pod.
@@ -444,7 +444,7 @@ public com.google.container.v1.NodeManagementOrBuilder getManagementOrBuilder()
444444
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
445445
*
446446
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
447-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
447+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
448448
* @return The minCpuPlatform.
449449
*/
450450
@java.lang.Override
@@ -470,7 +470,7 @@ public java.lang.String getMinCpuPlatform() {
470470
* minCpuPlatform: Intel Haswell or
471471
* minCpuPlatform: Intel Sandy Bridge. For more
472472
* information, read [how to specify min CPU
473-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
473+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
474474
* This field is deprecated, min_cpu_platform should be specified using
475475
* https://cloud.google.com/requested-min-cpu-platform label selector on the
476476
* pod.
@@ -481,7 +481,7 @@ public java.lang.String getMinCpuPlatform() {
481481
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
482482
*
483483
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
484-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
484+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
485485
* @return The bytes for minCpuPlatform.
486486
*/
487487
@java.lang.Override
@@ -1904,7 +1904,7 @@ public com.google.container.v1.NodeManagementOrBuilder getManagementOrBuilder()
19041904
* minCpuPlatform: Intel Haswell or
19051905
* minCpuPlatform: Intel Sandy Bridge. For more
19061906
* information, read [how to specify min CPU
1907-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
1907+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
19081908
* This field is deprecated, min_cpu_platform should be specified using
19091909
* https://cloud.google.com/requested-min-cpu-platform label selector on the
19101910
* pod.
@@ -1915,7 +1915,7 @@ public com.google.container.v1.NodeManagementOrBuilder getManagementOrBuilder()
19151915
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
19161916
*
19171917
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
1918-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
1918+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
19191919
* @return The minCpuPlatform.
19201920
*/
19211921
@java.lang.Deprecated
@@ -1940,7 +1940,7 @@ public java.lang.String getMinCpuPlatform() {
19401940
* minCpuPlatform: Intel Haswell or
19411941
* minCpuPlatform: Intel Sandy Bridge. For more
19421942
* information, read [how to specify min CPU
1943-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
1943+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
19441944
* This field is deprecated, min_cpu_platform should be specified using
19451945
* https://cloud.google.com/requested-min-cpu-platform label selector on the
19461946
* pod.
@@ -1951,7 +1951,7 @@ public java.lang.String getMinCpuPlatform() {
19511951
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
19521952
*
19531953
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
1954-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
1954+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
19551955
* @return The bytes for minCpuPlatform.
19561956
*/
19571957
@java.lang.Deprecated
@@ -1976,7 +1976,7 @@ public com.google.protobuf.ByteString getMinCpuPlatformBytes() {
19761976
* minCpuPlatform: Intel Haswell or
19771977
* minCpuPlatform: Intel Sandy Bridge. For more
19781978
* information, read [how to specify min CPU
1979-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
1979+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
19801980
* This field is deprecated, min_cpu_platform should be specified using
19811981
* https://cloud.google.com/requested-min-cpu-platform label selector on the
19821982
* pod.
@@ -1987,7 +1987,7 @@ public com.google.protobuf.ByteString getMinCpuPlatformBytes() {
19871987
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
19881988
*
19891989
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
1990-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
1990+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
19911991
* @param value The minCpuPlatform to set.
19921992
* @return This builder for chaining.
19931993
*/
@@ -2011,7 +2011,7 @@ public Builder setMinCpuPlatform(java.lang.String value) {
20112011
* minCpuPlatform: Intel Haswell or
20122012
* minCpuPlatform: Intel Sandy Bridge. For more
20132013
* information, read [how to specify min CPU
2014-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
2014+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
20152015
* This field is deprecated, min_cpu_platform should be specified using
20162016
* https://cloud.google.com/requested-min-cpu-platform label selector on the
20172017
* pod.
@@ -2022,7 +2022,7 @@ public Builder setMinCpuPlatform(java.lang.String value) {
20222022
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
20232023
*
20242024
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
2025-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
2025+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
20262026
* @return This builder for chaining.
20272027
*/
20282028
@java.lang.Deprecated
@@ -2042,7 +2042,7 @@ public Builder clearMinCpuPlatform() {
20422042
* minCpuPlatform: Intel Haswell or
20432043
* minCpuPlatform: Intel Sandy Bridge. For more
20442044
* information, read [how to specify min CPU
2045-
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform)
2045+
* platform](https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform).
20462046
* This field is deprecated, min_cpu_platform should be specified using
20472047
* https://cloud.google.com/requested-min-cpu-platform label selector on the
20482048
* pod.
@@ -2053,7 +2053,7 @@ public Builder clearMinCpuPlatform() {
20532053
* <code>string min_cpu_platform = 5 [deprecated = true];</code>
20542054
*
20552055
* @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is
2056-
* deprecated. See google/container/v1/cluster_service.proto;l=3313
2056+
* deprecated. See google/container/v1/cluster_service.proto;l=3326
20572057
* @param value The bytes for minCpuPlatform to set.
20582058
* @return This builder for chaining.
20592059
*/

0 commit comments

Comments
 (0)