From bcd0111fe0f7fa1478a45fc695bb56f82c3fc2c4 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Thu, 29 Dec 2022 17:10:14 +0000 Subject: [PATCH] feat: [container] add etags for cluster and node pool update operations (#8930) - [ ] Regenerate this pull request now. Clients may now optionally specify the previously read etag for a cluster or node pool during update requests. The etag is regenerated every time the object is updated. If an etag is provided, it will be checked against the current etag, and the request will be rejected on mismatch. This is particularly useful for allowing two clients to concurrently update a repeated field without overwriting each other. PiperOrigin-RevId: 498249600 Source-Link: https://togithub.com/googleapis/googleapis/commit/9a294bf14b3343b3f144aa6e80fa858332d21274 Source-Link: https://togithub.com/googleapis/googleapis-gen/commit/f0f0e1ffc3e28e203e7c233af4936688c9b2b07f Copy-Tag: eyJwIjoiamF2YS1jb250YWluZXIvLk93bEJvdC55YW1sIiwiaCI6ImYwZjBlMWZmYzNlMjhlMjAzZTdjMjMzYWY0OTM2Njg4YzliMmIwN2YifQ== --- .../container/v1/ClusterManagerClient.java | 2 + .../v1/ClusterManagerClientTest.java | 7 + .../v1/AutoprovisioningNodePoolDefaults.java | 14 +- ...provisioningNodePoolDefaultsOrBuilder.java | 4 +- .../container/v1/CancelOperationRequest.java | 42 +- .../v1/CancelOperationRequestOrBuilder.java | 12 +- .../java/com/google/container/v1/Cluster.java | 192 ++ .../google/container/v1/ClusterOrBuilder.java | 29 + .../container/v1/ClusterServiceProto.java | 1601 +++++++++-------- .../google/container/v1/ClusterUpdate.java | 192 ++ .../container/v1/ClusterUpdateOrBuilder.java | 29 + .../v1/CompleteIPRotationRequest.java | 42 +- .../CompleteIPRotationRequestOrBuilder.java | 12 +- .../container/v1/CreateClusterRequest.java | 28 +- .../v1/CreateClusterRequestOrBuilder.java | 8 +- .../container/v1/CreateNodePoolRequest.java | 42 +- .../v1/CreateNodePoolRequestOrBuilder.java | 12 +- .../container/v1/DeleteClusterRequest.java | 42 +- .../v1/DeleteClusterRequestOrBuilder.java | 12 +- .../container/v1/DeleteNodePoolRequest.java | 56 +- .../v1/DeleteNodePoolRequestOrBuilder.java | 16 +- .../container/v1/GetClusterRequest.java | 42 +- .../v1/GetClusterRequestOrBuilder.java | 12 +- .../container/v1/GetNodePoolRequest.java | 56 +- .../v1/GetNodePoolRequestOrBuilder.java | 16 +- .../container/v1/GetOperationRequest.java | 42 +- .../v1/GetOperationRequestOrBuilder.java | 12 +- .../container/v1/GetServerConfigRequest.java | 28 +- .../v1/GetServerConfigRequestOrBuilder.java | 8 +- .../container/v1/ListClustersRequest.java | 28 +- .../v1/ListClustersRequestOrBuilder.java | 8 +- .../container/v1/ListNodePoolsRequest.java | 42 +- .../v1/ListNodePoolsRequestOrBuilder.java | 12 +- .../container/v1/ListOperationsRequest.java | 28 +- .../v1/ListOperationsRequestOrBuilder.java | 8 +- .../com/google/container/v1/NodePool.java | 206 ++- .../container/v1/NodePoolOrBuilder.java | 33 +- .../com/google/container/v1/Operation.java | 28 +- .../container/v1/OperationOrBuilder.java | 8 +- .../v1/RollbackNodePoolUpgradeRequest.java | 56 +- ...llbackNodePoolUpgradeRequestOrBuilder.java | 16 +- .../container/v1/SetAddonsConfigRequest.java | 42 +- .../v1/SetAddonsConfigRequestOrBuilder.java | 12 +- .../google/container/v1/SetLabelsRequest.java | 42 +- .../v1/SetLabelsRequestOrBuilder.java | 12 +- .../container/v1/SetLegacyAbacRequest.java | 42 +- .../v1/SetLegacyAbacRequestOrBuilder.java | 12 +- .../container/v1/SetLocationsRequest.java | 42 +- .../v1/SetLocationsRequestOrBuilder.java | 12 +- .../v1/SetLoggingServiceRequest.java | 42 +- .../v1/SetLoggingServiceRequestOrBuilder.java | 12 +- .../container/v1/SetMasterAuthRequest.java | 42 +- .../v1/SetMasterAuthRequestOrBuilder.java | 12 +- .../v1/SetMonitoringServiceRequest.java | 42 +- .../SetMonitoringServiceRequestOrBuilder.java | 12 +- .../container/v1/SetNetworkPolicyRequest.java | 42 +- .../v1/SetNetworkPolicyRequestOrBuilder.java | 12 +- .../v1/SetNodePoolAutoscalingRequest.java | 56 +- ...etNodePoolAutoscalingRequestOrBuilder.java | 16 +- .../v1/SetNodePoolManagementRequest.java | 56 +- ...SetNodePoolManagementRequestOrBuilder.java | 16 +- .../container/v1/SetNodePoolSizeRequest.java | 56 +- .../v1/SetNodePoolSizeRequestOrBuilder.java | 16 +- .../container/v1/StartIPRotationRequest.java | 42 +- .../v1/StartIPRotationRequestOrBuilder.java | 12 +- .../google/container/v1/StatusCondition.java | 14 +- .../v1/StatusConditionOrBuilder.java | 4 +- .../container/v1/UpdateClusterRequest.java | 42 +- .../v1/UpdateClusterRequestOrBuilder.java | 12 +- .../container/v1/UpdateMasterRequest.java | 42 +- .../v1/UpdateMasterRequestOrBuilder.java | 12 +- .../container/v1/UpdateNodePoolRequest.java | 248 ++- .../v1/UpdateNodePoolRequestOrBuilder.java | 45 +- .../google/container/v1/cluster_service.proto | 20 + 74 files changed, 2571 insertions(+), 1653 deletions(-) diff --git a/java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java b/java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java index d3e5e6d75f23..5efcd01f2344 100644 --- a/java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java +++ b/java-container/google-cloud-container/src/main/java/com/google/cloud/container/v1/ClusterManagerClient.java @@ -803,6 +803,7 @@ public final UnaryCallable updateClusterCallabl * .setGcfsConfig(GcfsConfig.newBuilder().build()) * .setConfidentialNodes(ConfidentialNodes.newBuilder().build()) * .setGvnic(VirtualNIC.newBuilder().build()) + * .setEtag("etag3123477") * .setFastSocket(FastSocket.newBuilder().build()) * .setLoggingConfig(NodePoolLoggingConfig.newBuilder().build()) * .setResourceLabels(ResourceLabels.newBuilder().build()) @@ -853,6 +854,7 @@ public final Operation updateNodePool(UpdateNodePoolRequest request) { * .setGcfsConfig(GcfsConfig.newBuilder().build()) * .setConfidentialNodes(ConfidentialNodes.newBuilder().build()) * .setGvnic(VirtualNIC.newBuilder().build()) + * .setEtag("etag3123477") * .setFastSocket(FastSocket.newBuilder().build()) * .setLoggingConfig(NodePoolLoggingConfig.newBuilder().build()) * .setResourceLabels(ResourceLabels.newBuilder().build()) diff --git a/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/ClusterManagerClientTest.java b/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/ClusterManagerClientTest.java index 7eeee473686b..45ef09bff715 100644 --- a/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/ClusterManagerClientTest.java +++ b/java-container/google-cloud-container/src/test/java/com/google/cloud/container/v1/ClusterManagerClientTest.java @@ -320,6 +320,7 @@ public void getClusterTest() throws Exception { .setLoggingConfig(LoggingConfig.newBuilder().build()) .setMonitoringConfig(MonitoringConfig.newBuilder().build()) .setNodePoolAutoConfig(NodePoolAutoConfig.newBuilder().build()) + .setEtag("etag3123477") .build(); mockClusterManager.addResponse(expectedResponse); @@ -418,6 +419,7 @@ public void getClusterTest2() throws Exception { .setLoggingConfig(LoggingConfig.newBuilder().build()) .setMonitoringConfig(MonitoringConfig.newBuilder().build()) .setNodePoolAutoConfig(NodePoolAutoConfig.newBuilder().build()) + .setEtag("etag3123477") .build(); mockClusterManager.addResponse(expectedResponse); @@ -719,6 +721,7 @@ public void updateNodePoolTest() throws Exception { .setGcfsConfig(GcfsConfig.newBuilder().build()) .setConfidentialNodes(ConfidentialNodes.newBuilder().build()) .setGvnic(VirtualNIC.newBuilder().build()) + .setEtag("etag3123477") .setFastSocket(FastSocket.newBuilder().build()) .setLoggingConfig(NodePoolLoggingConfig.newBuilder().build()) .setResourceLabels(ResourceLabels.newBuilder().build()) @@ -752,6 +755,7 @@ public void updateNodePoolTest() throws Exception { Assert.assertEquals(request.getGcfsConfig(), actualRequest.getGcfsConfig()); Assert.assertEquals(request.getConfidentialNodes(), actualRequest.getConfidentialNodes()); Assert.assertEquals(request.getGvnic(), actualRequest.getGvnic()); + Assert.assertEquals(request.getEtag(), actualRequest.getEtag()); Assert.assertEquals(request.getFastSocket(), actualRequest.getFastSocket()); Assert.assertEquals(request.getLoggingConfig(), actualRequest.getLoggingConfig()); Assert.assertEquals(request.getResourceLabels(), actualRequest.getResourceLabels()); @@ -789,6 +793,7 @@ public void updateNodePoolExceptionTest() throws Exception { .setGcfsConfig(GcfsConfig.newBuilder().build()) .setConfidentialNodes(ConfidentialNodes.newBuilder().build()) .setGvnic(VirtualNIC.newBuilder().build()) + .setEtag("etag3123477") .setFastSocket(FastSocket.newBuilder().build()) .setLoggingConfig(NodePoolLoggingConfig.newBuilder().build()) .setResourceLabels(ResourceLabels.newBuilder().build()) @@ -2059,6 +2064,7 @@ public void getNodePoolTest() throws Exception { .setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build()) .setPlacementPolicy(NodePool.PlacementPolicy.newBuilder().build()) .setUpdateInfo(NodePool.UpdateInfo.newBuilder().build()) + .setEtag("etag3123477") .build(); mockClusterManager.addResponse(expectedResponse); @@ -2113,6 +2119,7 @@ public void getNodePoolTest2() throws Exception { .setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build()) .setPlacementPolicy(NodePool.PlacementPolicy.newBuilder().build()) .setUpdateInfo(NodePool.UpdateInfo.newBuilder().build()) + .setEtag("etag3123477") .build(); mockClusterManager.addResponse(expectedResponse); diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaults.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaults.java index 0b687975b45b..db1122449dae 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaults.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaults.java @@ -303,7 +303,7 @@ public com.google.container.v1.NodeManagementOrBuilder getManagementOrBuilder() * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return The minCpuPlatform. */ @java.lang.Override @@ -340,7 +340,7 @@ public java.lang.String getMinCpuPlatform() { * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return The bytes for minCpuPlatform. */ @java.lang.Override @@ -1842,7 +1842,7 @@ public com.google.container.v1.NodeManagementOrBuilder getManagementOrBuilder() * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return The minCpuPlatform. */ @java.lang.Deprecated @@ -1878,7 +1878,7 @@ public java.lang.String getMinCpuPlatform() { * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return The bytes for minCpuPlatform. */ @java.lang.Deprecated @@ -1914,7 +1914,7 @@ public com.google.protobuf.ByteString getMinCpuPlatformBytes() { * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @param value The minCpuPlatform to set. * @return This builder for chaining. */ @@ -1949,7 +1949,7 @@ public Builder setMinCpuPlatform(java.lang.String value) { * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1980,7 +1980,7 @@ public Builder clearMinCpuPlatform() { * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @param value The bytes for minCpuPlatform to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaultsOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaultsOrBuilder.java index 474ebc06b7b0..7411985dbbaa 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaultsOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/AutoprovisioningNodePoolDefaultsOrBuilder.java @@ -190,7 +190,7 @@ public interface AutoprovisioningNodePoolDefaultsOrBuilder * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return The minCpuPlatform. */ @java.lang.Deprecated @@ -216,7 +216,7 @@ public interface AutoprovisioningNodePoolDefaultsOrBuilder * string min_cpu_platform = 5 [deprecated = true]; * * @deprecated google.container.v1.AutoprovisioningNodePoolDefaults.min_cpu_platform is - * deprecated. See google/container/v1/cluster_service.proto;l=3461 + * deprecated. See google/container/v1/cluster_service.proto;l=3481 * @return The bytes for minCpuPlatform. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java index 74266b97b53c..bb9cb35ee90c 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return The operationId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getOperationId() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return The bytes for operationId. */ @java.lang.Override @@ -706,7 +706,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return The projectId. */ @java.lang.Deprecated @@ -733,7 +733,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -760,7 +760,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @param value The projectId to set. * @return This builder for chaining. */ @@ -786,7 +786,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return This builder for chaining. */ @java.lang.Deprecated @@ -808,7 +808,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -838,7 +838,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return The zone. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return The bytes for zone. */ @java.lang.Deprecated @@ -894,7 +894,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @param value The zone to set. * @return This builder for chaining. */ @@ -921,7 +921,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return This builder for chaining. */ @java.lang.Deprecated @@ -944,7 +944,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -972,7 +972,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return The operationId. */ @java.lang.Deprecated @@ -998,7 +998,7 @@ public java.lang.String getOperationId() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return The bytes for operationId. */ @java.lang.Deprecated @@ -1024,7 +1024,7 @@ public com.google.protobuf.ByteString getOperationIdBytes() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @param value The operationId to set. * @return This builder for chaining. */ @@ -1049,7 +1049,7 @@ public Builder setOperationId(java.lang.String value) { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1070,7 +1070,7 @@ public Builder clearOperationId() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @param value The bytes for operationId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java index d4894dcf481b..2dd5f966a5ff 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CancelOperationRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface CancelOperationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface CancelOperationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2672 + * google/container/v1/cluster_service.proto;l=2687 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface CancelOperationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface CancelOperationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2678 + * google/container/v1/cluster_service.proto;l=2693 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface CancelOperationRequestOrBuilder * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return The operationId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface CancelOperationRequestOrBuilder * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CancelOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2682 + * google/container/v1/cluster_service.proto;l=2697 * @return The bytes for operationId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java index d7aa455d8a3c..939ae10e1405 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Cluster.java @@ -64,6 +64,7 @@ private Cluster() { tpuIpv4CidrBlock_ = ""; conditions_ = java.util.Collections.emptyList(); id_ = ""; + etag_ = ""; } @java.lang.Override @@ -3622,6 +3623,59 @@ public com.google.container.v1.NodePoolAutoConfigOrBuilder getNodePoolAutoConfig return getNodePoolAutoConfig(); } + public static final int ETAG_FIELD_NUMBER = 139; + private volatile java.lang.Object etag_; + /** + * + * + *
+   * This checksum is computed by the server based on the value of cluster
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 139; + * + * @return The etag. + */ + @java.lang.Override + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } + } + /** + * + * + *
+   * This checksum is computed by the server based on the value of cluster
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 139; + * + * @return The bytes for etag. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -3821,6 +3875,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (nodePoolAutoConfig_ != null) { output.writeMessage(136, getNodePoolAutoConfig()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 139, etag_); + } getUnknownFields().writeTo(output); } @@ -4048,6 +4105,9 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream.computeMessageSize(136, getNodePoolAutoConfig()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(139, etag_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -4219,6 +4279,7 @@ public boolean equals(final java.lang.Object obj) { if (hasNodePoolAutoConfig()) { if (!getNodePoolAutoConfig().equals(other.getNodePoolAutoConfig())) return false; } + if (!getEtag().equals(other.getEtag())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -4424,6 +4485,8 @@ public int hashCode() { hash = (37 * hash) + NODE_POOL_AUTO_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getNodePoolAutoConfig().hashCode(); } + hash = (37 * hash) + ETAG_FIELD_NUMBER; + hash = (53 * hash) + getEtag().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -4844,6 +4907,8 @@ public Builder clear() { nodePoolAutoConfig_ = null; nodePoolAutoConfigBuilder_ = null; } + etag_ = ""; + return this; } @@ -5082,6 +5147,7 @@ public com.google.container.v1.Cluster buildPartial() { } else { result.nodePoolAutoConfig_ = nodePoolAutoConfigBuilder_.build(); } + result.etag_ = etag_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -5399,6 +5465,10 @@ public Builder mergeFrom(com.google.container.v1.Cluster other) { if (other.hasNodePoolAutoConfig()) { mergeNodePoolAutoConfig(other.getNodePoolAutoConfig()); } + if (!other.getEtag().isEmpty()) { + etag_ = other.etag_; + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -5837,6 +5907,12 @@ public Builder mergeFrom( break; } // case 1090 + case 1114: + { + etag_ = input.readStringRequireUtf8(); + + break; + } // case 1114 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -16025,6 +16101,122 @@ public com.google.container.v1.NodePoolAutoConfigOrBuilder getNodePoolAutoConfig return nodePoolAutoConfigBuilder_; } + private java.lang.Object etag_ = ""; + /** + * + * + *
+     * This checksum is computed by the server based on the value of cluster
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 139; + * + * @return The etag. + */ + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of cluster
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 139; + * + * @return The bytes for etag. + */ + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of cluster
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 139; + * + * @param value The etag to set. + * @return This builder for chaining. + */ + public Builder setEtag(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + etag_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of cluster
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 139; + * + * @return This builder for chaining. + */ + public Builder clearEtag() { + + etag_ = getDefaultInstance().getEtag(); + onChanged(); + return this; + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of cluster
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 139; + * + * @param value The bytes for etag to set. + * @return This builder for chaining. + */ + public Builder setEtagBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + etag_ = value; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java index 5b239e57bf87..63366a3ef3d4 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterOrBuilder.java @@ -2256,4 +2256,33 @@ java.lang.String getResourceLabelsOrDefault( * .google.container.v1.NodePoolAutoConfig node_pool_auto_config = 136; */ com.google.container.v1.NodePoolAutoConfigOrBuilder getNodePoolAutoConfigOrBuilder(); + + /** + * + * + *
+   * This checksum is computed by the server based on the value of cluster
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 139; + * + * @return The etag. + */ + java.lang.String getEtag(); + /** + * + * + *
+   * This checksum is computed by the server based on the value of cluster
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 139; + * + * @return The bytes for etag. + */ + com.google.protobuf.ByteString getEtagBytes(); } diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java index 244cab823d22..7def5945c7b5 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterServiceProto.java @@ -873,7 +873,7 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "lock\030\r \001(\t\022\022\n\nuse_routes\030\017 \001(\010\0222\n\nstack_" + "type\030\020 \001(\0162\036.google.container.v1.StackTy" + "pe\022=\n\020ipv6_access_type\030\021 \001(\0162#.google.co" - + "ntainer.v1.IPv6AccessType\"\207\031\n\007Cluster\022\014\n" + + "ntainer.v1.IPv6AccessType\"\226\031\n\007Cluster\022\014\n" + "\004name\030\001 \001(\t\022\023\n\013description\030\002 \001(\t\022\036\n\022init" + "ial_node_count\030\003 \001(\005B\002\030\001\0228\n\013node_config\030" + "\004 \001(\0132\037.google.container.v1.NodeConfigB\002" @@ -948,813 +948,814 @@ public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { + "v1.LoggingConfig\022A\n\021monitoring_config\030\205\001" + " \001(\0132%.google.container.v1.MonitoringCon" + "fig\022G\n\025node_pool_auto_config\030\210\001 \001(\0132\'.go" - + "ogle.container.v1.NodePoolAutoConfig\0325\n\023" - + "ResourceLabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005valu" - + "e\030\002 \001(\t:\0028\001\"w\n\006Status\022\026\n\022STATUS_UNSPECIF" - + "IED\020\000\022\020\n\014PROVISIONING\020\001\022\013\n\007RUNNING\020\002\022\017\n\013" - + "RECONCILING\020\003\022\014\n\010STOPPING\020\004\022\t\n\005ERROR\020\005\022\014" - + "\n\010DEGRADED\020\006B\025\n\023_node_pool_defaults\"L\n\022N" - + "odePoolAutoConfig\0226\n\014network_tags\030\001 \001(\0132" - + " .google.container.v1.NetworkTags\"Y\n\020Nod" - + "ePoolDefaults\022E\n\024node_config_defaults\030\001 " - + "\001(\0132\'.google.container.v1.NodeConfigDefa" - + "ults\"\216\001\n\022NodeConfigDefaults\0224\n\013gcfs_conf" - + "ig\030\001 \001(\0132\037.google.container.v1.GcfsConfi" - + "g\022B\n\016logging_config\030\003 \001(\0132*.google.conta" - + "iner.v1.NodePoolLoggingConfig\"\337\025\n\rCluste" - + "rUpdate\022\034\n\024desired_node_version\030\004 \001(\t\022\"\n" - + "\032desired_monitoring_service\030\005 \001(\t\022@\n\025des" - + "ired_addons_config\030\006 \001(\0132!.google.contai" - + "ner.v1.AddonsConfig\022\034\n\024desired_node_pool" - + "_id\030\007 \001(\t\022\032\n\022desired_image_type\030\010 \001(\t\022L\n" - + "\033desired_database_encryption\030. \001(\0132\'.goo" - + "gle.container.v1.DatabaseEncryption\022U\n d" - + "esired_workload_identity_config\030/ \001(\0132+." - + "google.container.v1.WorkloadIdentityConf" - + "ig\022H\n\031desired_mesh_certificates\030C \001(\0132%." - + "google.container.v1.MeshCertificates\022B\n\026" - + "desired_shielded_nodes\0300 \001(\0132\".google.co" - + "ntainer.v1.ShieldedNodes\022Q\n\036desired_cost" - + "_management_config\0301 \001(\0132).google.contai" - + "ner.v1.CostManagementConfig\022:\n\022desired_d" - + "ns_config\0305 \001(\0132\036.google.container.v1.DN" - + "SConfig\022O\n\035desired_node_pool_autoscaling" - + "\030\t \001(\0132(.google.container.v1.NodePoolAut" - + "oscaling\022\031\n\021desired_locations\030\n \003(\t\022f\n)d" - + "esired_master_authorized_networks_config" - + "\030\014 \001(\01323.google.container.v1.MasterAutho" - + "rizedNetworksConfig\022L\n\033desired_cluster_a" - + "utoscaling\030\017 \001(\0132\'.google.container.v1.C" - + "lusterAutoscaling\022N\n\034desired_binary_auth" - + "orization\030\020 \001(\0132(.google.container.v1.Bi" - + "naryAuthorization\022\037\n\027desired_logging_ser" - + "vice\030\023 \001(\t\022\\\n$desired_resource_usage_exp" - + "ort_config\030\025 \001(\0132..google.container.v1.R" - + "esourceUsageExportConfig\022U\n desired_vert" - + "ical_pod_autoscaling\030\026 \001(\0132+.google.cont" - + "ainer.v1.VerticalPodAutoscaling\022Q\n\036desir" - + "ed_private_cluster_config\030\031 \001(\0132).google" - + ".container.v1.PrivateClusterConfig\022\\\n$de" - + "sired_intra_node_visibility_config\030\032 \001(\013" - + "2..google.container.v1.IntraNodeVisibili" - + "tyConfig\022K\n\033desired_default_snat_status\030" - + "\034 \001(\0132&.google.container.v1.DefaultSnatS" - + "tatus\022D\n\027desired_release_channel\030\037 \001(\0132#" - + ".google.container.v1.ReleaseChannel\022Q\n\037d" - + "esired_l4ilb_subsetting_config\030\' \001(\0132(.g" - + "oogle.container.v1.ILBSubsettingConfig\022H" - + "\n\031desired_datapath_provider\0302 \001(\0162%.goog" - + "le.container.v1.DatapathProvider\022X\n\"desi" - + "red_private_ipv6_google_access\0303 \001(\0162,.g" - + "oogle.container.v1.PrivateIPv6GoogleAcce" - + "ss\022L\n\033desired_notification_config\0307 \001(\0132" - + "\'.google.container.v1.NotificationConfig" - + "\022[\n#desired_authenticator_groups_config\030" - + "? \001(\0132..google.container.v1.Authenticato" - + "rGroupsConfig\022B\n\026desired_logging_config\030" - + "@ \001(\0132\".google.container.v1.LoggingConfi" - + "g\022H\n\031desired_monitoring_config\030A \001(\0132%.g" - + "oogle.container.v1.MonitoringConfig\022S\n\037d" - + "esired_identity_service_config\030B \001(\0132*.g" - + "oogle.container.v1.IdentityServiceConfig" - + "\022Z\n#desired_service_external_ips_config\030" - + "< \001(\0132-.google.container.v1.ServiceExter" - + "nalIPsConfig\022,\n\037desired_enable_private_e" - + "ndpoint\030G \001(\010H\000\210\001\001\022\036\n\026desired_master_ver" - + "sion\030d \001(\t\022<\n\023desired_gcfs_config\030m \001(\0132" - + "\037.google.container.v1.GcfsConfig\022T\n*desi" - + "red_node_pool_auto_config_network_tags\030n" - + " \001(\0132 .google.container.v1.NetworkTags\022I" - + "\n\032desired_gateway_api_config\030r \001(\0132%.goo" - + "gle.container.v1.GatewayAPIConfig\022T\n des" - + "ired_node_pool_logging_config\030t \001(\0132*.go" - + "ogle.container.v1.NodePoolLoggingConfig\022" - + ":\n\022desired_stack_type\030w \001(\0162\036.google.con" - + "tainer.v1.StackTypeB\"\n _desired_enable_p" - + "rivate_endpoint\"\361\007\n\tOperation\022\014\n\004name\030\001 " - + "\001(\t\022\020\n\004zone\030\002 \001(\tB\002\030\001\022;\n\016operation_type\030" - + "\003 \001(\0162#.google.container.v1.Operation.Ty" - + "pe\0225\n\006status\030\004 \001(\0162%.google.container.v1" - + ".Operation.Status\022\016\n\006detail\030\010 \001(\t\022\035\n\016sta" - + "tus_message\030\005 \001(\tB\005\030\001\340A\003\022\021\n\tself_link\030\006 " - + "\001(\t\022\023\n\013target_link\030\007 \001(\t\022\020\n\010location\030\t \001" - + "(\t\022\022\n\nstart_time\030\n \001(\t\022\020\n\010end_time\030\013 \001(\t" - + "\022=\n\010progress\030\014 \001(\0132&.google.container.v1" - + ".OperationProgressB\003\340A\003\022D\n\022cluster_condi" - + "tions\030\r \003(\0132$.google.container.v1.Status" - + "ConditionB\002\030\001\022E\n\023nodepool_conditions\030\016 \003" - + "(\0132$.google.container.v1.StatusCondition" - + "B\002\030\001\022!\n\005error\030\017 \001(\0132\022.google.rpc.Status\"" - + "R\n\006Status\022\026\n\022STATUS_UNSPECIFIED\020\000\022\013\n\007PEN" - + "DING\020\001\022\013\n\007RUNNING\020\002\022\010\n\004DONE\020\003\022\014\n\010ABORTIN" - + "G\020\004\"\375\002\n\004Type\022\024\n\020TYPE_UNSPECIFIED\020\000\022\022\n\016CR" - + "EATE_CLUSTER\020\001\022\022\n\016DELETE_CLUSTER\020\002\022\022\n\016UP" - + "GRADE_MASTER\020\003\022\021\n\rUPGRADE_NODES\020\004\022\022\n\016REP" - + "AIR_CLUSTER\020\005\022\022\n\016UPDATE_CLUSTER\020\006\022\024\n\020CRE" - + "ATE_NODE_POOL\020\007\022\024\n\020DELETE_NODE_POOL\020\010\022\034\n" - + "\030SET_NODE_POOL_MANAGEMENT\020\t\022\025\n\021AUTO_REPA" - + "IR_NODES\020\n\022\026\n\022AUTO_UPGRADE_NODES\020\013\022\016\n\nSE" - + "T_LABELS\020\014\022\023\n\017SET_MASTER_AUTH\020\r\022\026\n\022SET_N" - + "ODE_POOL_SIZE\020\016\022\026\n\022SET_NETWORK_POLICY\020\017\022" - + "\032\n\026SET_MAINTENANCE_POLICY\020\020\"\273\002\n\021Operatio" - + "nProgress\022\014\n\004name\030\001 \001(\t\0225\n\006status\030\002 \001(\0162" - + "%.google.container.v1.Operation.Status\022>" - + "\n\007metrics\030\003 \003(\0132-.google.container.v1.Op" - + "erationProgress.Metric\0226\n\006stages\030\004 \003(\0132&" - + ".google.container.v1.OperationProgress\032i" - + "\n\006Metric\022\021\n\004name\030\001 \001(\tB\003\340A\002\022\023\n\tint_value" - + "\030\002 \001(\003H\000\022\026\n\014double_value\030\003 \001(\001H\000\022\026\n\014stri" - + "ng_value\030\004 \001(\tH\000B\007\n\005value\"\204\001\n\024CreateClus" + + "ogle.container.v1.NodePoolAutoConfig\022\r\n\004" + + "etag\030\213\001 \001(\t\0325\n\023ResourceLabelsEntry\022\013\n\003ke" + + "y\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"w\n\006Status\022\026\n\022" + + "STATUS_UNSPECIFIED\020\000\022\020\n\014PROVISIONING\020\001\022\013" + + "\n\007RUNNING\020\002\022\017\n\013RECONCILING\020\003\022\014\n\010STOPPING" + + "\020\004\022\t\n\005ERROR\020\005\022\014\n\010DEGRADED\020\006B\025\n\023_node_poo" + + "l_defaults\"L\n\022NodePoolAutoConfig\0226\n\014netw" + + "ork_tags\030\001 \001(\0132 .google.container.v1.Net" + + "workTags\"Y\n\020NodePoolDefaults\022E\n\024node_con" + + "fig_defaults\030\001 \001(\0132\'.google.container.v1" + + ".NodeConfigDefaults\"\216\001\n\022NodeConfigDefaul" + + "ts\0224\n\013gcfs_config\030\001 \001(\0132\037.google.contain" + + "er.v1.GcfsConfig\022B\n\016logging_config\030\003 \001(\013" + + "2*.google.container.v1.NodePoolLoggingCo" + + "nfig\"\355\025\n\rClusterUpdate\022\034\n\024desired_node_v" + + "ersion\030\004 \001(\t\022\"\n\032desired_monitoring_servi" + + "ce\030\005 \001(\t\022@\n\025desired_addons_config\030\006 \001(\0132" + + "!.google.container.v1.AddonsConfig\022\034\n\024de" + + "sired_node_pool_id\030\007 \001(\t\022\032\n\022desired_imag" + + "e_type\030\010 \001(\t\022L\n\033desired_database_encrypt" + + "ion\030. \001(\0132\'.google.container.v1.Database" + + "Encryption\022U\n desired_workload_identity_" + + "config\030/ \001(\0132+.google.container.v1.Workl" + + "oadIdentityConfig\022H\n\031desired_mesh_certif" + + "icates\030C \001(\0132%.google.container.v1.MeshC" + + "ertificates\022B\n\026desired_shielded_nodes\0300 " + + "\001(\0132\".google.container.v1.ShieldedNodes\022" + + "Q\n\036desired_cost_management_config\0301 \001(\0132" + + ").google.container.v1.CostManagementConf" + + "ig\022:\n\022desired_dns_config\0305 \001(\0132\036.google." + + "container.v1.DNSConfig\022O\n\035desired_node_p" + + "ool_autoscaling\030\t \001(\0132(.google.container" + + ".v1.NodePoolAutoscaling\022\031\n\021desired_locat" + + "ions\030\n \003(\t\022f\n)desired_master_authorized_" + + "networks_config\030\014 \001(\01323.google.container" + + ".v1.MasterAuthorizedNetworksConfig\022L\n\033de" + + "sired_cluster_autoscaling\030\017 \001(\0132\'.google" + + ".container.v1.ClusterAutoscaling\022N\n\034desi" + + "red_binary_authorization\030\020 \001(\0132(.google." + + "container.v1.BinaryAuthorization\022\037\n\027desi" + + "red_logging_service\030\023 \001(\t\022\\\n$desired_res" + + "ource_usage_export_config\030\025 \001(\0132..google" + + ".container.v1.ResourceUsageExportConfig\022" + + "U\n desired_vertical_pod_autoscaling\030\026 \001(" + + "\0132+.google.container.v1.VerticalPodAutos" + + "caling\022Q\n\036desired_private_cluster_config" + + "\030\031 \001(\0132).google.container.v1.PrivateClus" + + "terConfig\022\\\n$desired_intra_node_visibili" + + "ty_config\030\032 \001(\0132..google.container.v1.In" + + "traNodeVisibilityConfig\022K\n\033desired_defau" + + "lt_snat_status\030\034 \001(\0132&.google.container." + + "v1.DefaultSnatStatus\022D\n\027desired_release_" + + "channel\030\037 \001(\0132#.google.container.v1.Rele" + + "aseChannel\022Q\n\037desired_l4ilb_subsetting_c" + + "onfig\030\' \001(\0132(.google.container.v1.ILBSub" + + "settingConfig\022H\n\031desired_datapath_provid" + + "er\0302 \001(\0162%.google.container.v1.DatapathP" + + "rovider\022X\n\"desired_private_ipv6_google_a" + + "ccess\0303 \001(\0162,.google.container.v1.Privat" + + "eIPv6GoogleAccess\022L\n\033desired_notificatio" + + "n_config\0307 \001(\0132\'.google.container.v1.Not" + + "ificationConfig\022[\n#desired_authenticator" + + "_groups_config\030? \001(\0132..google.container." + + "v1.AuthenticatorGroupsConfig\022B\n\026desired_" + + "logging_config\030@ \001(\0132\".google.container." + + "v1.LoggingConfig\022H\n\031desired_monitoring_c" + + "onfig\030A \001(\0132%.google.container.v1.Monito" + + "ringConfig\022S\n\037desired_identity_service_c" + + "onfig\030B \001(\0132*.google.container.v1.Identi" + + "tyServiceConfig\022Z\n#desired_service_exter" + + "nal_ips_config\030< \001(\0132-.google.container." + + "v1.ServiceExternalIPsConfig\022,\n\037desired_e" + + "nable_private_endpoint\030G \001(\010H\000\210\001\001\022\036\n\026des" + + "ired_master_version\030d \001(\t\022<\n\023desired_gcf" + + "s_config\030m \001(\0132\037.google.container.v1.Gcf" + + "sConfig\022T\n*desired_node_pool_auto_config" + + "_network_tags\030n \001(\0132 .google.container.v" + + "1.NetworkTags\022I\n\032desired_gateway_api_con" + + "fig\030r \001(\0132%.google.container.v1.GatewayA" + + "PIConfig\022\014\n\004etag\030s \001(\t\022T\n desired_node_p" + + "ool_logging_config\030t \001(\0132*.google.contai" + + "ner.v1.NodePoolLoggingConfig\022:\n\022desired_" + + "stack_type\030w \001(\0162\036.google.container.v1.S" + + "tackTypeB\"\n _desired_enable_private_endp" + + "oint\"\361\007\n\tOperation\022\014\n\004name\030\001 \001(\t\022\020\n\004zone" + + "\030\002 \001(\tB\002\030\001\022;\n\016operation_type\030\003 \001(\0162#.goo" + + "gle.container.v1.Operation.Type\0225\n\006statu" + + "s\030\004 \001(\0162%.google.container.v1.Operation." + + "Status\022\016\n\006detail\030\010 \001(\t\022\035\n\016status_message" + + "\030\005 \001(\tB\005\030\001\340A\003\022\021\n\tself_link\030\006 \001(\t\022\023\n\013targ" + + "et_link\030\007 \001(\t\022\020\n\010location\030\t \001(\t\022\022\n\nstart" + + "_time\030\n \001(\t\022\020\n\010end_time\030\013 \001(\t\022=\n\010progres" + + "s\030\014 \001(\0132&.google.container.v1.OperationP" + + "rogressB\003\340A\003\022D\n\022cluster_conditions\030\r \003(\013" + + "2$.google.container.v1.StatusConditionB\002" + + "\030\001\022E\n\023nodepool_conditions\030\016 \003(\0132$.google" + + ".container.v1.StatusConditionB\002\030\001\022!\n\005err" + + "or\030\017 \001(\0132\022.google.rpc.Status\"R\n\006Status\022\026" + + "\n\022STATUS_UNSPECIFIED\020\000\022\013\n\007PENDING\020\001\022\013\n\007R" + + "UNNING\020\002\022\010\n\004DONE\020\003\022\014\n\010ABORTING\020\004\"\375\002\n\004Typ" + + "e\022\024\n\020TYPE_UNSPECIFIED\020\000\022\022\n\016CREATE_CLUSTE" + + "R\020\001\022\022\n\016DELETE_CLUSTER\020\002\022\022\n\016UPGRADE_MASTE" + + "R\020\003\022\021\n\rUPGRADE_NODES\020\004\022\022\n\016REPAIR_CLUSTER" + + "\020\005\022\022\n\016UPDATE_CLUSTER\020\006\022\024\n\020CREATE_NODE_PO" + + "OL\020\007\022\024\n\020DELETE_NODE_POOL\020\010\022\034\n\030SET_NODE_P" + + "OOL_MANAGEMENT\020\t\022\025\n\021AUTO_REPAIR_NODES\020\n\022" + + "\026\n\022AUTO_UPGRADE_NODES\020\013\022\016\n\nSET_LABELS\020\014\022" + + "\023\n\017SET_MASTER_AUTH\020\r\022\026\n\022SET_NODE_POOL_SI" + + "ZE\020\016\022\026\n\022SET_NETWORK_POLICY\020\017\022\032\n\026SET_MAIN" + + "TENANCE_POLICY\020\020\"\273\002\n\021OperationProgress\022\014" + + "\n\004name\030\001 \001(\t\0225\n\006status\030\002 \001(\0162%.google.co" + + "ntainer.v1.Operation.Status\022>\n\007metrics\030\003" + + " \003(\0132-.google.container.v1.OperationProg" + + "ress.Metric\0226\n\006stages\030\004 \003(\0132&.google.con" + + "tainer.v1.OperationProgress\032i\n\006Metric\022\021\n" + + "\004name\030\001 \001(\tB\003\340A\002\022\023\n\tint_value\030\002 \001(\003H\000\022\026\n" + + "\014double_value\030\003 \001(\001H\000\022\026\n\014string_value\030\004 " + + "\001(\tH\000B\007\n\005value\"\204\001\n\024CreateClusterRequest\022" + + "\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030" + + "\001\0222\n\007cluster\030\003 \001(\0132\034.google.container.v1" + + ".ClusterB\003\340A\002\022\016\n\006parent\030\005 \001(\t\"c\n\021GetClus" + "terRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zo" - + "ne\030\002 \001(\tB\002\030\001\0222\n\007cluster\030\003 \001(\0132\034.google.c" - + "ontainer.v1.ClusterB\003\340A\002\022\016\n\006parent\030\005 \001(\t" - + "\"c\n\021GetClusterRequest\022\026\n\nproject_id\030\001 \001(" - + "\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 " - + "\001(\tB\002\030\001\022\014\n\004name\030\005 \001(\t\"\237\001\n\024UpdateClusterR" - + "equest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002" - + " \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\0227\n\006upda" - + "te\030\004 \001(\0132\".google.container.v1.ClusterUp" - + "dateB\003\340A\002\022\014\n\004name\030\005 \001(\t\"\337\010\n\025UpdateNodePo" - + "olRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zon" - + "e\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\030\n\014n" - + "ode_pool_id\030\004 \001(\tB\002\030\001\022\031\n\014node_version\030\005 " - + "\001(\tB\003\340A\002\022\027\n\nimage_type\030\006 \001(\tB\003\340A\002\022\014\n\004nam" - + "e\030\010 \001(\t\022\021\n\tlocations\030\r \003(\t\022M\n\030workload_m", - "etadata_config\030\016 \001(\0132+.google.container." - + "v1.WorkloadMetadataConfig\022G\n\020upgrade_set" - + "tings\030\017 \001(\0132-.google.container.v1.NodePo" - + "ol.UpgradeSettings\022.\n\004tags\030\020 \001(\0132 .googl" - + "e.container.v1.NetworkTags\022/\n\006taints\030\021 \001" - + "(\0132\037.google.container.v1.NodeTaints\022/\n\006l" - + "abels\030\022 \001(\0132\037.google.container.v1.NodeLa" - + "bels\022?\n\021linux_node_config\030\023 \001(\0132$.google" - + ".container.v1.LinuxNodeConfig\022>\n\016kubelet" - + "_config\030\024 \001(\0132&.google.container.v1.Node" - + "KubeletConfig\022C\n\023node_network_config\030\025 \001" - + "(\0132&.google.container.v1.NodeNetworkConf" - + "ig\0224\n\013gcfs_config\030\026 \001(\0132\037.google.contain" - + "er.v1.GcfsConfig\022B\n\022confidential_nodes\030\027" - + " \001(\0132&.google.container.v1.ConfidentialN" - + "odes\022.\n\005gvnic\030\035 \001(\0132\037.google.container.v" - + "1.VirtualNIC\0224\n\013fast_socket\030\037 \001(\0132\037.goog" - + "le.container.v1.FastSocket\022B\n\016logging_co" - + "nfig\030 \001(\0132*.google.container.v1.NodePoo" - + "lLoggingConfig\022<\n\017resource_labels\030! \001(\0132" - + "#.google.container.v1.ResourceLabels\022C\n\023" - + "windows_node_config\030\" \001(\0132&.google.conta" - + "iner.v1.WindowsNodeConfig\"\315\001\n\035SetNodePoo" - + "lAutoscalingRequest\022\026\n\nproject_id\030\001 \001(\tB" - + "\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(" - + "\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022B\n\013autos" - + "caling\030\005 \001(\0132(.google.container.v1.NodeP" - + "oolAutoscalingB\003\340A\002\022\014\n\004name\030\006 \001(\t\"\210\001\n\030Se" - + "tLoggingServiceRequest\022\026\n\nproject_id\030\001 \001" - + "(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003" - + " \001(\tB\002\030\001\022\034\n\017logging_service\030\004 \001(\tB\003\340A\002\022\014" - + "\n\004name\030\005 \001(\t\"\216\001\n\033SetMonitoringServiceReq" - + "uest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001" - + "(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\037\n\022monito" - + "ring_service\030\004 \001(\tB\003\340A\002\022\014\n\004name\030\006 \001(\t\"\247\001" - + "\n\026SetAddonsConfigRequest\022\026\n\nproject_id\030\001" - + " \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id" - + "\030\003 \001(\tB\002\030\001\022=\n\raddons_config\030\004 \001(\0132!.goog" - + "le.container.v1.AddonsConfigB\003\340A\002\022\014\n\004nam" - + "e\030\006 \001(\t\"}\n\023SetLocationsRequest\022\026\n\nprojec" - + "t_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\nclus" - + "ter_id\030\003 \001(\tB\002\030\001\022\026\n\tlocations\030\004 \003(\tB\003\340A\002" - + "\022\014\n\004name\030\006 \001(\t\"\202\001\n\023UpdateMasterRequest\022\026" + + "ne\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\014\n\004" + + "name\030\005 \001(\t\"\237\001\n\024UpdateClusterRequest\022\026\n\np" + + "roject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n" + + "\ncluster_id\030\003 \001(\tB\002\030\001\0227\n\006update\030\004 \001(\0132\"." + + "google.container.v1.ClusterUpdateB\003\340A\002\022\014" + + "\n\004name\030\005 \001(\t\"\355\010\n\025UpdateNodePoolRequest\022\026" + "\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001" - + "\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\033\n\016master_versi" - + "on\030\004 \001(\tB\003\340A\002\022\014\n\004name\030\007 \001(\t\"\265\002\n\024SetMaste" - + "rAuthRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004" - + "zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022E" - + "\n\006action\030\004 \001(\01620.google.container.v1.Set" - + "MasterAuthRequest.ActionB\003\340A\002\0224\n\006update\030" - + "\005 \001(\0132\037.google.container.v1.MasterAuthB\003" - + "\340A\002\022\014\n\004name\030\007 \001(\t\"P\n\006Action\022\013\n\007UNKNOWN\020\000" - + "\022\020\n\014SET_PASSWORD\020\001\022\025\n\021GENERATE_PASSWORD\020" - + "\002\022\020\n\014SET_USERNAME\020\003\"f\n\024DeleteClusterRequ" - + "est\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(" - + "\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\014\n\004name\030\004 " - + "\001(\t\"O\n\023ListClustersRequest\022\026\n\nproject_id" - + "\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\016\n\006parent\030\004" - + " \001(\t\"]\n\024ListClustersResponse\022.\n\010clusters" - + "\030\001 \003(\0132\034.google.container.v1.Cluster\022\025\n\r" - + "missing_zones\030\002 \003(\t\"g\n\023GetOperationReque" - + "st\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\t" - + "B\002\030\001\022\030\n\014operation_id\030\003 \001(\tB\002\030\001\022\014\n\004name\030\005" - + " \001(\t\"Q\n\025ListOperationsRequest\022\026\n\nproject" + + "\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\030\n\014node_pool_id" + + "\030\004 \001(\tB\002\030\001\022\031\n\014node_version\030\005 \001(\tB\003\340A\002\022\027\n" + + "\nimage_type\030\006 \001(\tB\003\340A\002\022\014\n\004name\030\010 \001(\t\022\021\n\t", + "locations\030\r \003(\t\022M\n\030workload_metadata_con" + + "fig\030\016 \001(\0132+.google.container.v1.Workload" + + "MetadataConfig\022G\n\020upgrade_settings\030\017 \001(\013" + + "2-.google.container.v1.NodePool.UpgradeS" + + "ettings\022.\n\004tags\030\020 \001(\0132 .google.container" + + ".v1.NetworkTags\022/\n\006taints\030\021 \001(\0132\037.google" + + ".container.v1.NodeTaints\022/\n\006labels\030\022 \001(\013" + + "2\037.google.container.v1.NodeLabels\022?\n\021lin" + + "ux_node_config\030\023 \001(\0132$.google.container." + + "v1.LinuxNodeConfig\022>\n\016kubelet_config\030\024 \001" + + "(\0132&.google.container.v1.NodeKubeletConf" + + "ig\022C\n\023node_network_config\030\025 \001(\0132&.google" + + ".container.v1.NodeNetworkConfig\0224\n\013gcfs_" + + "config\030\026 \001(\0132\037.google.container.v1.GcfsC" + + "onfig\022B\n\022confidential_nodes\030\027 \001(\0132&.goog" + + "le.container.v1.ConfidentialNodes\022.\n\005gvn" + + "ic\030\035 \001(\0132\037.google.container.v1.VirtualNI" + + "C\022\014\n\004etag\030\036 \001(\t\0224\n\013fast_socket\030\037 \001(\0132\037.g" + + "oogle.container.v1.FastSocket\022B\n\016logging" + + "_config\030 \001(\0132*.google.container.v1.Node" + + "PoolLoggingConfig\022<\n\017resource_labels\030! \001" + + "(\0132#.google.container.v1.ResourceLabels\022" + + "C\n\023windows_node_config\030\" \001(\0132&.google.co" + + "ntainer.v1.WindowsNodeConfig\"\315\001\n\035SetNode" + + "PoolAutoscalingRequest\022\026\n\nproject_id\030\001 \001" + + "(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003" + + " \001(\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022B\n\013au" + + "toscaling\030\005 \001(\0132(.google.container.v1.No" + + "dePoolAutoscalingB\003\340A\002\022\014\n\004name\030\006 \001(\t\"\210\001\n" + + "\030SetLoggingServiceRequest\022\026\n\nproject_id\030" + + "\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_i" + + "d\030\003 \001(\tB\002\030\001\022\034\n\017logging_service\030\004 \001(\tB\003\340A" + + "\002\022\014\n\004name\030\005 \001(\t\"\216\001\n\033SetMonitoringService" + + "Request\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030" + + "\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\037\n\022mon" + + "itoring_service\030\004 \001(\tB\003\340A\002\022\014\n\004name\030\006 \001(\t" + + "\"\247\001\n\026SetAddonsConfigRequest\022\026\n\nproject_i" + + "d\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster" + + "_id\030\003 \001(\tB\002\030\001\022=\n\raddons_config\030\004 \001(\0132!.g" + + "oogle.container.v1.AddonsConfigB\003\340A\002\022\014\n\004" + + "name\030\006 \001(\t\"}\n\023SetLocationsRequest\022\026\n\npro" + + "ject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\nc" + + "luster_id\030\003 \001(\tB\002\030\001\022\026\n\tlocations\030\004 \003(\tB\003" + + "\340A\002\022\014\n\004name\030\006 \001(\t\"\202\001\n\023UpdateMasterReques" + + "t\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB" + + "\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\033\n\016master_ve" + + "rsion\030\004 \001(\tB\003\340A\002\022\014\n\004name\030\007 \001(\t\"\265\002\n\024SetMa" + + "sterAuthRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022" + + "\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030" + + "\001\022E\n\006action\030\004 \001(\01620.google.container.v1." + + "SetMasterAuthRequest.ActionB\003\340A\002\0224\n\006upda" + + "te\030\005 \001(\0132\037.google.container.v1.MasterAut" + + "hB\003\340A\002\022\014\n\004name\030\007 \001(\t\"P\n\006Action\022\013\n\007UNKNOW" + + "N\020\000\022\020\n\014SET_PASSWORD\020\001\022\025\n\021GENERATE_PASSWO" + + "RD\020\002\022\020\n\014SET_USERNAME\020\003\"f\n\024DeleteClusterR" + + "equest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002" + + " \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\014\n\004name" + + "\030\004 \001(\t\"O\n\023ListClustersRequest\022\026\n\nproject" + "_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\016\n\006paren" - + "t\030\004 \001(\t\"j\n\026CancelOperationRequest\022\026\n\npro" - + "ject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\030\n\014o" - + "peration_id\030\003 \001(\tB\002\030\001\022\014\n\004name\030\004 \001(\t\"c\n\026L" - + "istOperationsResponse\0222\n\noperations\030\001 \003(" - + "\0132\036.google.container.v1.Operation\022\025\n\rmis" - + "sing_zones\030\002 \003(\t\"P\n\026GetServerConfigReque" - + "st\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\t" - + "B\002\030\001\022\014\n\004name\030\004 \001(\t\"\364\002\n\014ServerConfig\022\037\n\027d" - + "efault_cluster_version\030\001 \001(\t\022\033\n\023valid_no" - + "de_versions\030\003 \003(\t\022\032\n\022default_image_type\030" - + "\004 \001(\t\022\031\n\021valid_image_types\030\005 \003(\t\022\035\n\025vali" - + "d_master_versions\030\006 \003(\t\022H\n\010channels\030\t \003(" - + "\01326.google.container.v1.ServerConfig.Rel" - + "easeChannelConfig\032\205\001\n\024ReleaseChannelConf" - + "ig\022<\n\007channel\030\001 \001(\0162+.google.container.v" - + "1.ReleaseChannel.Channel\022\027\n\017default_vers" - + "ion\030\002 \001(\t\022\026\n\016valid_versions\030\004 \003(\t\"\240\001\n\025Cr" - + "eateNodePoolRequest\022\026\n\nproject_id\030\001 \001(\tB" - + "\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(" - + "\tB\002\030\001\0225\n\tnode_pool\030\004 \001(\0132\035.google.contai" - + "ner.v1.NodePoolB\003\340A\002\022\016\n\006parent\030\006 \001(\t\"\201\001\n" - + "\025DeleteNodePoolRequest\022\026\n\nproject_id\030\001 \001" + + "t\030\004 \001(\t\"]\n\024ListClustersResponse\022.\n\010clust" + + "ers\030\001 \003(\0132\034.google.container.v1.Cluster\022" + + "\025\n\rmissing_zones\030\002 \003(\t\"g\n\023GetOperationRe" + + "quest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 " + + "\001(\tB\002\030\001\022\030\n\014operation_id\030\003 \001(\tB\002\030\001\022\014\n\004nam" + + "e\030\005 \001(\t\"Q\n\025ListOperationsRequest\022\026\n\nproj" + + "ect_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\016\n\006pa" + + "rent\030\004 \001(\t\"j\n\026CancelOperationRequest\022\026\n\n" + + "project_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\030" + + "\n\014operation_id\030\003 \001(\tB\002\030\001\022\014\n\004name\030\004 \001(\t\"c" + + "\n\026ListOperationsResponse\0222\n\noperations\030\001" + + " \003(\0132\036.google.container.v1.Operation\022\025\n\r" + + "missing_zones\030\002 \003(\t\"P\n\026GetServerConfigRe" + + "quest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 " + + "\001(\tB\002\030\001\022\014\n\004name\030\004 \001(\t\"\364\002\n\014ServerConfig\022\037" + + "\n\027default_cluster_version\030\001 \001(\t\022\033\n\023valid" + + "_node_versions\030\003 \003(\t\022\032\n\022default_image_ty" + + "pe\030\004 \001(\t\022\031\n\021valid_image_types\030\005 \003(\t\022\035\n\025v" + + "alid_master_versions\030\006 \003(\t\022H\n\010channels\030\t" + + " \003(\01326.google.container.v1.ServerConfig." + + "ReleaseChannelConfig\032\205\001\n\024ReleaseChannelC" + + "onfig\022<\n\007channel\030\001 \001(\0162+.google.containe" + + "r.v1.ReleaseChannel.Channel\022\027\n\017default_v" + + "ersion\030\002 \001(\t\022\026\n\016valid_versions\030\004 \003(\t\"\240\001\n" + + "\025CreateNodePoolRequest\022\026\n\nproject_id\030\001 \001" + "(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003" - + " \001(\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022\014\n\004na" - + "me\030\006 \001(\t\"h\n\024ListNodePoolsRequest\022\026\n\nproj" + + " \001(\tB\002\030\001\0225\n\tnode_pool\030\004 \001(\0132\035.google.con" + + "tainer.v1.NodePoolB\003\340A\002\022\016\n\006parent\030\006 \001(\t\"" + + "\201\001\n\025DeleteNodePoolRequest\022\026\n\nproject_id\030" + + "\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_i" + + "d\030\003 \001(\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022\014\n" + + "\004name\030\006 \001(\t\"h\n\024ListNodePoolsRequest\022\026\n\np" + + "roject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n" + + "\ncluster_id\030\003 \001(\tB\002\030\001\022\016\n\006parent\030\005 \001(\t\"~\n" + + "\022GetNodePoolRequest\022\026\n\nproject_id\030\001 \001(\tB" + + "\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(" + + "\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022\014\n\004name\030" + + "\006 \001(\t\"\237\003\n\021BlueGreenSettings\022_\n\027standard_" + + "rollout_policy\030\001 \001(\0132<.google.container." + + "v1.BlueGreenSettings.StandardRolloutPoli" + + "cyH\000\022?\n\027node_pool_soak_duration\030\002 \001(\0132\031." + + "google.protobuf.DurationH\001\210\001\001\032\271\001\n\025Standa" + + "rdRolloutPolicy\022\032\n\020batch_percentage\030\001 \001(" + + "\002H\000\022\032\n\020batch_node_count\030\002 \001(\005H\000\022;\n\023batch" + + "_soak_duration\030\003 \001(\0132\031.google.protobuf.D" + + "urationH\001\210\001\001B\023\n\021update_batch_sizeB\026\n\024_ba" + + "tch_soak_durationB\020\n\016rollout_policyB\032\n\030_" + + "node_pool_soak_duration\"\304\016\n\010NodePool\022\014\n\004" + + "name\030\001 \001(\t\022/\n\006config\030\002 \001(\0132\037.google.cont" + + "ainer.v1.NodeConfig\022\032\n\022initial_node_coun" + + "t\030\003 \001(\005\022\021\n\tlocations\030\r \003(\t\022>\n\016network_co" + + "nfig\030\016 \001(\0132&.google.container.v1.NodeNet" + + "workConfig\022\021\n\tself_link\030d \001(\t\022\017\n\007version" + + "\030e \001(\t\022\033\n\023instance_group_urls\030f \003(\t\0224\n\006s" + + "tatus\030g \001(\0162$.google.container.v1.NodePo" + + "ol.Status\022\032\n\016status_message\030h \001(\tB\002\030\001\022=\n" + + "\013autoscaling\030\004 \001(\0132(.google.container.v1" + + ".NodePoolAutoscaling\0227\n\nmanagement\030\005 \001(\013" + + "2#.google.container.v1.NodeManagement\022C\n" + + "\023max_pods_constraint\030\006 \001(\0132&.google.cont" + + "ainer.v1.MaxPodsConstraint\0228\n\nconditions" + + "\030i \003(\0132$.google.container.v1.StatusCondi" + + "tion\022\032\n\022pod_ipv4_cidr_size\030\007 \001(\005\022G\n\020upgr" + + "ade_settings\030k \001(\0132-.google.container.v1" + + ".NodePool.UpgradeSettings\022G\n\020placement_p" + + "olicy\030l \001(\0132-.google.container.v1.NodePo" + + "ol.PlacementPolicy\022B\n\013update_info\030m \001(\0132" + + "(.google.container.v1.NodePool.UpdateInf" + + "oB\003\340A\003\022\014\n\004etag\030n \001(\t\032\360\001\n\017UpgradeSettings" + + "\022\021\n\tmax_surge\030\001 \001(\005\022\027\n\017max_unavailable\030\002" + + " \001(\005\022B\n\010strategy\030\003 \001(\0162+.google.containe" + + "r.v1.NodePoolUpdateStrategyH\000\210\001\001\022H\n\023blue" + + "_green_settings\030\004 \001(\0132&.google.container" + + ".v1.BlueGreenSettingsH\001\210\001\001B\013\n\t_strategyB" + + "\026\n\024_blue_green_settings\032\210\004\n\nUpdateInfo\022O" + + "\n\017blue_green_info\030\001 \001(\01326.google.contain" + + "er.v1.NodePool.UpdateInfo.BlueGreenInfo\032" + + "\250\003\n\rBlueGreenInfo\022K\n\005phase\030\001 \001(\0162<.googl" + + "e.container.v1.NodePool.UpdateInfo.BlueG" + + "reenInfo.Phase\022 \n\030blue_instance_group_ur" + + "ls\030\002 \003(\t\022!\n\031green_instance_group_urls\030\003 " + + "\003(\t\022%\n\035blue_pool_deletion_start_time\030\004 \001" + + "(\t\022\032\n\022green_pool_version\030\005 \001(\t\"\301\001\n\005Phase" + + "\022\025\n\021PHASE_UNSPECIFIED\020\000\022\022\n\016UPDATE_STARTE" + + "D\020\001\022\027\n\023CREATING_GREEN_POOL\020\002\022\027\n\023CORDONIN" + + "G_BLUE_POOL\020\003\022\026\n\022DRAINING_BLUE_POOL\020\004\022\025\n" + + "\021NODE_POOL_SOAKING\020\005\022\026\n\022DELETING_BLUE_PO" + + "OL\020\006\022\024\n\020ROLLBACK_STARTED\020\007\032~\n\017PlacementP" + + "olicy\022@\n\004type\030\001 \001(\01622.google.container.v" + + "1.NodePool.PlacementPolicy.Type\")\n\004Type\022" + + "\024\n\020TYPE_UNSPECIFIED\020\000\022\013\n\007COMPACT\020\001\"\201\001\n\006S" + + "tatus\022\026\n\022STATUS_UNSPECIFIED\020\000\022\020\n\014PROVISI" + + "ONING\020\001\022\013\n\007RUNNING\020\002\022\026\n\022RUNNING_WITH_ERR" + + "OR\020\003\022\017\n\013RECONCILING\020\004\022\014\n\010STOPPING\020\005\022\t\n\005E" + + "RROR\020\006\"}\n\016NodeManagement\022\024\n\014auto_upgrade" + + "\030\001 \001(\010\022\023\n\013auto_repair\030\002 \001(\010\022@\n\017upgrade_o" + + "ptions\030\n \001(\0132\'.google.container.v1.AutoU" + + "pgradeOptions\"J\n\022AutoUpgradeOptions\022\037\n\027a" + + "uto_upgrade_start_time\030\001 \001(\t\022\023\n\013descript" + + "ion\030\002 \001(\t\"e\n\021MaintenancePolicy\0226\n\006window" + + "\030\001 \001(\0132&.google.container.v1.Maintenance" + + "Window\022\030\n\020resource_version\030\003 \001(\t\"\366\002\n\021Mai" + + "ntenanceWindow\022O\n\030daily_maintenance_wind" + + "ow\030\002 \001(\0132+.google.container.v1.DailyMain" + + "tenanceWindowH\000\022D\n\020recurring_window\030\003 \001(" + + "\0132(.google.container.v1.RecurringTimeWin" + + "dowH\000\022a\n\026maintenance_exclusions\030\004 \003(\0132A." + + "google.container.v1.MaintenanceWindow.Ma" + + "intenanceExclusionsEntry\032]\n\032MaintenanceE" + + "xclusionsEntry\022\013\n\003key\030\001 \001(\t\022.\n\005value\030\002 \001" + + "(\0132\037.google.container.v1.TimeWindow:\0028\001B" + + "\010\n\006policy\"\320\001\n\nTimeWindow\022Y\n\035maintenance_" + + "exclusion_options\030\003 \001(\01320.google.contain" + + "er.v1.MaintenanceExclusionOptionsH\000\022.\n\ns" + + "tart_time\030\001 \001(\0132\032.google.protobuf.Timest" + + "amp\022,\n\010end_time\030\002 \001(\0132\032.google.protobuf." + + "TimestampB\t\n\007options\"\264\001\n\033MaintenanceExcl" + + "usionOptions\022E\n\005scope\030\001 \001(\01626.google.con" + + "tainer.v1.MaintenanceExclusionOptions.Sc" + + "ope\"N\n\005Scope\022\017\n\013NO_UPGRADES\020\000\022\025\n\021NO_MINO" + + "R_UPGRADES\020\001\022\035\n\031NO_MINOR_OR_NODE_UPGRADE" + + "S\020\002\"Z\n\023RecurringTimeWindow\022/\n\006window\030\001 \001" + + "(\0132\037.google.container.v1.TimeWindow\022\022\n\nr" + + "ecurrence\030\002 \001(\t\">\n\026DailyMaintenanceWindo" + + "w\022\022\n\nstart_time\030\002 \001(\t\022\020\n\010duration\030\003 \001(\t\"" + + "\306\001\n\034SetNodePoolManagementRequest\022\026\n\nproj" + "ect_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncl" - + "uster_id\030\003 \001(\tB\002\030\001\022\016\n\006parent\030\005 \001(\t\"~\n\022Ge" - + "tNodePoolRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001" - + "\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002" - + "\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022\014\n\004name\030\006 \001" - + "(\t\"\237\003\n\021BlueGreenSettings\022_\n\027standard_rol" - + "lout_policy\030\001 \001(\0132<.google.container.v1." - + "BlueGreenSettings.StandardRolloutPolicyH" - + "\000\022?\n\027node_pool_soak_duration\030\002 \001(\0132\031.goo" - + "gle.protobuf.DurationH\001\210\001\001\032\271\001\n\025StandardR" - + "olloutPolicy\022\032\n\020batch_percentage\030\001 \001(\002H\000" - + "\022\032\n\020batch_node_count\030\002 \001(\005H\000\022;\n\023batch_so" - + "ak_duration\030\003 \001(\0132\031.google.protobuf.Dura" - + "tionH\001\210\001\001B\023\n\021update_batch_sizeB\026\n\024_batch" - + "_soak_durationB\020\n\016rollout_policyB\032\n\030_nod" - + "e_pool_soak_duration\"\266\016\n\010NodePool\022\014\n\004nam" - + "e\030\001 \001(\t\022/\n\006config\030\002 \001(\0132\037.google.contain" - + "er.v1.NodeConfig\022\032\n\022initial_node_count\030\003" - + " \001(\005\022\021\n\tlocations\030\r \003(\t\022>\n\016network_confi" - + "g\030\016 \001(\0132&.google.container.v1.NodeNetwor" - + "kConfig\022\021\n\tself_link\030d \001(\t\022\017\n\007version\030e " - + "\001(\t\022\033\n\023instance_group_urls\030f \003(\t\0224\n\006stat" - + "us\030g \001(\0162$.google.container.v1.NodePool." - + "Status\022\032\n\016status_message\030h \001(\tB\002\030\001\022=\n\013au" - + "toscaling\030\004 \001(\0132(.google.container.v1.No" - + "dePoolAutoscaling\0227\n\nmanagement\030\005 \001(\0132#." - + "google.container.v1.NodeManagement\022C\n\023ma" - + "x_pods_constraint\030\006 \001(\0132&.google.contain" - + "er.v1.MaxPodsConstraint\0228\n\nconditions\030i " - + "\003(\0132$.google.container.v1.StatusConditio" - + "n\022\032\n\022pod_ipv4_cidr_size\030\007 \001(\005\022G\n\020upgrade" - + "_settings\030k \001(\0132-.google.container.v1.No" - + "dePool.UpgradeSettings\022G\n\020placement_poli" - + "cy\030l \001(\0132-.google.container.v1.NodePool." - + "PlacementPolicy\022B\n\013update_info\030m \001(\0132(.g" - + "oogle.container.v1.NodePool.UpdateInfoB\003" - + "\340A\003\032\360\001\n\017UpgradeSettings\022\021\n\tmax_surge\030\001 \001" - + "(\005\022\027\n\017max_unavailable\030\002 \001(\005\022B\n\010strategy\030" - + "\003 \001(\0162+.google.container.v1.NodePoolUpda" - + "teStrategyH\000\210\001\001\022H\n\023blue_green_settings\030\004" - + " \001(\0132&.google.container.v1.BlueGreenSett" - + "ingsH\001\210\001\001B\013\n\t_strategyB\026\n\024_blue_green_se" - + "ttings\032\210\004\n\nUpdateInfo\022O\n\017blue_green_info" - + "\030\001 \001(\01326.google.container.v1.NodePool.Up" - + "dateInfo.BlueGreenInfo\032\250\003\n\rBlueGreenInfo" - + "\022K\n\005phase\030\001 \001(\0162<.google.container.v1.No" - + "dePool.UpdateInfo.BlueGreenInfo.Phase\022 \n" - + "\030blue_instance_group_urls\030\002 \003(\t\022!\n\031green" - + "_instance_group_urls\030\003 \003(\t\022%\n\035blue_pool_" - + "deletion_start_time\030\004 \001(\t\022\032\n\022green_pool_" - + "version\030\005 \001(\t\"\301\001\n\005Phase\022\025\n\021PHASE_UNSPECI" - + "FIED\020\000\022\022\n\016UPDATE_STARTED\020\001\022\027\n\023CREATING_G" - + "REEN_POOL\020\002\022\027\n\023CORDONING_BLUE_POOL\020\003\022\026\n\022" - + "DRAINING_BLUE_POOL\020\004\022\025\n\021NODE_POOL_SOAKIN" - + "G\020\005\022\026\n\022DELETING_BLUE_POOL\020\006\022\024\n\020ROLLBACK_" - + "STARTED\020\007\032~\n\017PlacementPolicy\022@\n\004type\030\001 \001" - + "(\01622.google.container.v1.NodePool.Placem" - + "entPolicy.Type\")\n\004Type\022\024\n\020TYPE_UNSPECIFI" - + "ED\020\000\022\013\n\007COMPACT\020\001\"\201\001\n\006Status\022\026\n\022STATUS_U" - + "NSPECIFIED\020\000\022\020\n\014PROVISIONING\020\001\022\013\n\007RUNNIN" - + "G\020\002\022\026\n\022RUNNING_WITH_ERROR\020\003\022\017\n\013RECONCILI" - + "NG\020\004\022\014\n\010STOPPING\020\005\022\t\n\005ERROR\020\006\"}\n\016NodeMan" - + "agement\022\024\n\014auto_upgrade\030\001 \001(\010\022\023\n\013auto_re" - + "pair\030\002 \001(\010\022@\n\017upgrade_options\030\n \001(\0132\'.go" - + "ogle.container.v1.AutoUpgradeOptions\"J\n\022" - + "AutoUpgradeOptions\022\037\n\027auto_upgrade_start" - + "_time\030\001 \001(\t\022\023\n\013description\030\002 \001(\t\"e\n\021Main" - + "tenancePolicy\0226\n\006window\030\001 \001(\0132&.google.c" - + "ontainer.v1.MaintenanceWindow\022\030\n\020resourc" - + "e_version\030\003 \001(\t\"\366\002\n\021MaintenanceWindow\022O\n" - + "\030daily_maintenance_window\030\002 \001(\0132+.google" - + ".container.v1.DailyMaintenanceWindowH\000\022D" - + "\n\020recurring_window\030\003 \001(\0132(.google.contai" - + "ner.v1.RecurringTimeWindowH\000\022a\n\026maintena" - + "nce_exclusions\030\004 \003(\0132A.google.container." - + "v1.MaintenanceWindow.MaintenanceExclusio" - + "nsEntry\032]\n\032MaintenanceExclusionsEntry\022\013\n" - + "\003key\030\001 \001(\t\022.\n\005value\030\002 \001(\0132\037.google.conta" - + "iner.v1.TimeWindow:\0028\001B\010\n\006policy\"\320\001\n\nTim" - + "eWindow\022Y\n\035maintenance_exclusion_options" - + "\030\003 \001(\01320.google.container.v1.Maintenance" - + "ExclusionOptionsH\000\022.\n\nstart_time\030\001 \001(\0132\032" - + ".google.protobuf.Timestamp\022,\n\010end_time\030\002" - + " \001(\0132\032.google.protobuf.TimestampB\t\n\007opti" - + "ons\"\264\001\n\033MaintenanceExclusionOptions\022E\n\005s" - + "cope\030\001 \001(\01626.google.container.v1.Mainten" - + "anceExclusionOptions.Scope\"N\n\005Scope\022\017\n\013N" - + "O_UPGRADES\020\000\022\025\n\021NO_MINOR_UPGRADES\020\001\022\035\n\031N" - + "O_MINOR_OR_NODE_UPGRADES\020\002\"Z\n\023RecurringT" - + "imeWindow\022/\n\006window\030\001 \001(\0132\037.google.conta" - + "iner.v1.TimeWindow\022\022\n\nrecurrence\030\002 \001(\t\">" - + "\n\026DailyMaintenanceWindow\022\022\n\nstart_time\030\002" - + " \001(\t\022\020\n\010duration\030\003 \001(\t\"\306\001\n\034SetNodePoolMa" - + "nagementRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022" - + "\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030" - + "\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022<\n\nmanagemen" - + "t\030\005 \001(\0132#.google.container.v1.NodeManage" - + "mentB\003\340A\002\022\014\n\004name\030\007 \001(\t\"\233\001\n\026SetNodePoolS" - + "izeRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zo" - + "ne\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\030\n\014" - + "node_pool_id\030\004 \001(\tB\002\030\001\022\027\n\nnode_count\030\005 \001" - + "(\005B\003\340A\002\022\014\n\004name\030\007 \001(\t\".\n\036CompleteNodePoo" - + "lUpgradeRequest\022\014\n\004name\030\001 \001(\t\"\237\001\n\036Rollba" - + "ckNodePoolUpgradeRequest\022\026\n\nproject_id\030\001" - + " \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id" - + "\030\003 \001(\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022\014\n\004" - + "name\030\006 \001(\t\022\023\n\013respect_pdb\030\007 \001(\010\"J\n\025ListN" - + "odePoolsResponse\0221\n\nnode_pools\030\001 \003(\0132\035.g" - + "oogle.container.v1.NodePool\"\257\003\n\022ClusterA" - + "utoscaling\022$\n\034enable_node_autoprovisioni" - + "ng\030\001 \001(\010\022;\n\017resource_limits\030\002 \003(\0132\".goog" - + "le.container.v1.ResourceLimit\022W\n\023autosca" - + "ling_profile\030\003 \001(\0162:.google.container.v1" - + ".ClusterAutoscaling.AutoscalingProfile\022b" - + "\n#autoprovisioning_node_pool_defaults\030\004 " - + "\001(\01325.google.container.v1.Autoprovisioni" - + "ngNodePoolDefaults\022\"\n\032autoprovisioning_l" - + "ocations\030\005 \003(\t\"U\n\022AutoscalingProfile\022\027\n\023" - + "PROFILE_UNSPECIFIED\020\000\022\030\n\024OPTIMIZE_UTILIZ" - + "ATION\020\001\022\014\n\010BALANCED\020\002\"\230\003\n Autoprovisioni" - + "ngNodePoolDefaults\022\024\n\014oauth_scopes\030\001 \003(\t" - + "\022\027\n\017service_account\030\002 \001(\t\022G\n\020upgrade_set" - + "tings\030\003 \001(\0132-.google.container.v1.NodePo" - + "ol.UpgradeSettings\0227\n\nmanagement\030\004 \001(\0132#" - + ".google.container.v1.NodeManagement\022\034\n\020m" - + "in_cpu_platform\030\005 \001(\tB\002\030\001\022\024\n\014disk_size_g" - + "b\030\006 \001(\005\022\021\n\tdisk_type\030\007 \001(\t\022M\n\030shielded_i" - + "nstance_config\030\010 \001(\0132+.google.container." - + "v1.ShieldedInstanceConfig\022\031\n\021boot_disk_k" - + "ms_key\030\t \001(\t\022\022\n\nimage_type\030\n \001(\t\"H\n\rReso" - + "urceLimit\022\025\n\rresource_type\030\001 \001(\t\022\017\n\007mini" - + "mum\030\002 \001(\003\022\017\n\007maximum\030\003 \001(\003\"\307\002\n\023NodePoolA" - + "utoscaling\022\017\n\007enabled\030\001 \001(\010\022\026\n\016min_node_" - + "count\030\002 \001(\005\022\026\n\016max_node_count\030\003 \001(\005\022\027\n\017a" - + "utoprovisioned\030\004 \001(\010\022P\n\017location_policy\030" - + "\005 \001(\01627.google.container.v1.NodePoolAuto" - + "scaling.LocationPolicy\022\034\n\024total_min_node" - + "_count\030\006 \001(\005\022\034\n\024total_max_node_count\030\007 \001" - + "(\005\"H\n\016LocationPolicy\022\037\n\033LOCATION_POLICY_" - + "UNSPECIFIED\020\000\022\014\n\010BALANCED\020\001\022\007\n\003ANY\020\002\"\222\002\n" - + "\020SetLabelsRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030" - + "\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB" - + "\002\030\001\022W\n\017resource_labels\030\004 \003(\01329.google.co" - + "ntainer.v1.SetLabelsRequest.ResourceLabe" - + "lsEntryB\003\340A\002\022\036\n\021label_fingerprint\030\005 \001(\tB" - + "\003\340A\002\022\014\n\004name\030\007 \001(\t\0325\n\023ResourceLabelsEntr" - + "y\022\013\n\003key\030\001 \001(\t\022\r\n\005value\030\002 \001(\t:\0028\001\"|\n\024Set" - + "LegacyAbacRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030" - + "\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB" - + "\002\030\001\022\024\n\007enabled\030\004 \001(\010B\003\340A\002\022\014\n\004name\030\006 \001(\t\"" - + "\204\001\n\026StartIPRotationRequest\022\026\n\nproject_id" - + "\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_" - + "id\030\003 \001(\tB\002\030\001\022\014\n\004name\030\006 \001(\t\022\032\n\022rotate_cre" - + "dentials\030\007 \001(\010\"k\n\031CompleteIPRotationRequ" + + "uster_id\030\003 \001(\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\t" + + "B\002\030\001\022<\n\nmanagement\030\005 \001(\0132#.google.contai" + + "ner.v1.NodeManagementB\003\340A\002\022\014\n\004name\030\007 \001(\t" + + "\"\233\001\n\026SetNodePoolSizeRequest\022\026\n\nproject_i" + + "d\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster" + + "_id\030\003 \001(\tB\002\030\001\022\030\n\014node_pool_id\030\004 \001(\tB\002\030\001\022" + + "\027\n\nnode_count\030\005 \001(\005B\003\340A\002\022\014\n\004name\030\007 \001(\t\"." + + "\n\036CompleteNodePoolUpgradeRequest\022\014\n\004name" + + "\030\001 \001(\t\"\237\001\n\036RollbackNodePoolUpgradeReques" + + "t\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB" + + "\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\030\n\014node_pool" + + "_id\030\004 \001(\tB\002\030\001\022\014\n\004name\030\006 \001(\t\022\023\n\013respect_p" + + "db\030\007 \001(\010\"J\n\025ListNodePoolsResponse\0221\n\nnod" + + "e_pools\030\001 \003(\0132\035.google.container.v1.Node" + + "Pool\"\257\003\n\022ClusterAutoscaling\022$\n\034enable_no" + + "de_autoprovisioning\030\001 \001(\010\022;\n\017resource_li" + + "mits\030\002 \003(\0132\".google.container.v1.Resourc" + + "eLimit\022W\n\023autoscaling_profile\030\003 \001(\0162:.go" + + "ogle.container.v1.ClusterAutoscaling.Aut" + + "oscalingProfile\022b\n#autoprovisioning_node" + + "_pool_defaults\030\004 \001(\01325.google.container." + + "v1.AutoprovisioningNodePoolDefaults\022\"\n\032a" + + "utoprovisioning_locations\030\005 \003(\t\"U\n\022Autos" + + "calingProfile\022\027\n\023PROFILE_UNSPECIFIED\020\000\022\030" + + "\n\024OPTIMIZE_UTILIZATION\020\001\022\014\n\010BALANCED\020\002\"\230" + + "\003\n AutoprovisioningNodePoolDefaults\022\024\n\014o" + + "auth_scopes\030\001 \003(\t\022\027\n\017service_account\030\002 \001" + + "(\t\022G\n\020upgrade_settings\030\003 \001(\0132-.google.co" + + "ntainer.v1.NodePool.UpgradeSettings\0227\n\nm" + + "anagement\030\004 \001(\0132#.google.container.v1.No" + + "deManagement\022\034\n\020min_cpu_platform\030\005 \001(\tB\002" + + "\030\001\022\024\n\014disk_size_gb\030\006 \001(\005\022\021\n\tdisk_type\030\007 " + + "\001(\t\022M\n\030shielded_instance_config\030\010 \001(\0132+." + + "google.container.v1.ShieldedInstanceConf" + + "ig\022\031\n\021boot_disk_kms_key\030\t \001(\t\022\022\n\nimage_t" + + "ype\030\n \001(\t\"H\n\rResourceLimit\022\025\n\rresource_t" + + "ype\030\001 \001(\t\022\017\n\007minimum\030\002 \001(\003\022\017\n\007maximum\030\003 " + + "\001(\003\"\307\002\n\023NodePoolAutoscaling\022\017\n\007enabled\030\001" + + " \001(\010\022\026\n\016min_node_count\030\002 \001(\005\022\026\n\016max_node" + + "_count\030\003 \001(\005\022\027\n\017autoprovisioned\030\004 \001(\010\022P\n" + + "\017location_policy\030\005 \001(\01627.google.containe" + + "r.v1.NodePoolAutoscaling.LocationPolicy\022" + + "\034\n\024total_min_node_count\030\006 \001(\005\022\034\n\024total_m" + + "ax_node_count\030\007 \001(\005\"H\n\016LocationPolicy\022\037\n" + + "\033LOCATION_POLICY_UNSPECIFIED\020\000\022\014\n\010BALANC" + + "ED\020\001\022\007\n\003ANY\020\002\"\222\002\n\020SetLabelsRequest\022\026\n\npr" + + "oject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\n" + + "cluster_id\030\003 \001(\tB\002\030\001\022W\n\017resource_labels\030" + + "\004 \003(\01329.google.container.v1.SetLabelsReq" + + "uest.ResourceLabelsEntryB\003\340A\002\022\036\n\021label_f" + + "ingerprint\030\005 \001(\tB\003\340A\002\022\014\n\004name\030\007 \001(\t\0325\n\023R" + + "esourceLabelsEntry\022\013\n\003key\030\001 \001(\t\022\r\n\005value" + + "\030\002 \001(\t:\0028\001\"|\n\024SetLegacyAbacRequest\022\026\n\npr" + + "oject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\n" + + "cluster_id\030\003 \001(\tB\002\030\001\022\024\n\007enabled\030\004 \001(\010B\003\340" + + "A\002\022\014\n\004name\030\006 \001(\t\"\204\001\n\026StartIPRotationRequ" + "est\022\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(" - + "\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022\014\n\004name\030\007 " - + "\001(\t\"\303\001\n\021AcceleratorConfig\022\031\n\021accelerator" - + "_count\030\001 \001(\003\022\030\n\020accelerator_type\030\002 \001(\t\022\032" - + "\n\022gpu_partition_size\030\003 \001(\t\022F\n\022gpu_sharin" - + "g_config\030\005 \001(\0132%.google.container.v1.GPU" - + "SharingConfigH\000\210\001\001B\025\n\023_gpu_sharing_confi" - + "g\"\372\001\n\020GPUSharingConfig\022\"\n\032max_shared_cli" - + "ents_per_gpu\030\001 \001(\003\022[\n\024gpu_sharing_strate" - + "gy\030\002 \001(\01628.google.container.v1.GPUSharin" - + "gConfig.GPUSharingStrategyH\000\210\001\001\"L\n\022GPUSh" - + "aringStrategy\022$\n GPU_SHARING_STRATEGY_UN" - + "SPECIFIED\020\000\022\020\n\014TIME_SHARING\020\001B\027\n\025_gpu_sh" - + "aring_strategy\"\232\001\n\026WorkloadMetadataConfi" - + "g\022>\n\004mode\030\002 \001(\01620.google.container.v1.Wo" - + "rkloadMetadataConfig.Mode\"@\n\004Mode\022\024\n\020MOD" - + "E_UNSPECIFIED\020\000\022\020\n\014GCE_METADATA\020\001\022\020\n\014GKE" - + "_METADATA\020\002\"\252\001\n\027SetNetworkPolicyRequest\022" - + "\026\n\nproject_id\030\001 \001(\tB\002\030\001\022\020\n\004zone\030\002 \001(\tB\002\030" - + "\001\022\026\n\ncluster_id\030\003 \001(\tB\002\030\001\022?\n\016network_pol" - + "icy\030\004 \001(\0132\".google.container.v1.NetworkP" - + "olicyB\003\340A\002\022\014\n\004name\030\006 \001(\t\"\271\001\n\033SetMaintena" - + "ncePolicyRequest\022\027\n\nproject_id\030\001 \001(\tB\003\340A" - + "\002\022\021\n\004zone\030\002 \001(\tB\003\340A\002\022\027\n\ncluster_id\030\003 \001(\t" - + "B\003\340A\002\022G\n\022maintenance_policy\030\004 \001(\0132&.goog" - + "le.container.v1.MaintenancePolicyB\003\340A\002\022\014" - + "\n\004name\030\005 \001(\t\"\251\002\n\017StatusCondition\022;\n\004code" - + "\030\001 \001(\0162).google.container.v1.StatusCondi" - + "tion.CodeB\002\030\001\022\017\n\007message\030\002 \001(\t\022(\n\016canoni" - + "cal_code\030\003 \001(\0162\020.google.rpc.Code\"\235\001\n\004Cod" - + "e\022\013\n\007UNKNOWN\020\000\022\020\n\014GCE_STOCKOUT\020\001\022\037\n\033GKE_" - + "SERVICE_ACCOUNT_DELETED\020\002\022\026\n\022GCE_QUOTA_E" - + "XCEEDED\020\003\022\023\n\017SET_BY_OPERATOR\020\004\022\027\n\023CLOUD_" - + "KMS_KEY_ERROR\020\007\022\017\n\013CA_EXPIRING\020\t\"\237\004\n\rNet" - + "workConfig\022\017\n\007network\030\001 \001(\t\022\022\n\nsubnetwor" - + "k\030\002 \001(\t\022$\n\034enable_intra_node_visibility\030" - + "\005 \001(\010\022C\n\023default_snat_status\030\007 \001(\0132&.goo" - + "gle.container.v1.DefaultSnatStatus\022\037\n\027en" - + "able_l4ilb_subsetting\030\n \001(\010\022@\n\021datapath_" - + "provider\030\013 \001(\0162%.google.container.v1.Dat" - + "apathProvider\022P\n\032private_ipv6_google_acc" - + "ess\030\014 \001(\0162,.google.container.v1.PrivateI" - + "Pv6GoogleAccess\0222\n\ndns_config\030\r \001(\0132\036.go" - + "ogle.container.v1.DNSConfig\022R\n\033service_e" - + "xternal_ips_config\030\017 \001(\0132-.google.contai" - + "ner.v1.ServiceExternalIPsConfig\022A\n\022gatew" - + "ay_api_config\030\020 \001(\0132%.google.container.v" - + "1.GatewayAPIConfig\"\274\001\n\020GatewayAPIConfig\022" - + ">\n\007channel\030\001 \001(\0162-.google.container.v1.G" - + "atewayAPIConfig.Channel\"h\n\007Channel\022\027\n\023CH" - + "ANNEL_UNSPECIFIED\020\000\022\024\n\020CHANNEL_DISABLED\020" - + "\001\022\030\n\024CHANNEL_EXPERIMENTAL\020\003\022\024\n\020CHANNEL_S" - + "TANDARD\020\004\"+\n\030ServiceExternalIPsConfig\022\017\n" - + "\007enabled\030\001 \001(\010\"(\n\026GetOpenIDConfigRequest" - + "\022\016\n\006parent\030\001 \001(\t\"\334\001\n\027GetOpenIDConfigResp" - + "onse\022\016\n\006issuer\030\001 \001(\t\022\020\n\010jwks_uri\030\002 \001(\t\022 " - + "\n\030response_types_supported\030\003 \003(\t\022\037\n\027subj" - + "ect_types_supported\030\004 \003(\t\022-\n%id_token_si" - + "gning_alg_values_supported\030\005 \003(\t\022\030\n\020clai" - + "ms_supported\030\006 \003(\t\022\023\n\013grant_types\030\007 \003(\t\"" - + "\'\n\025GetJSONWebKeysRequest\022\016\n\006parent\030\001 \001(\t" - + "\"r\n\003Jwk\022\013\n\003kty\030\001 \001(\t\022\013\n\003alg\030\002 \001(\t\022\013\n\003use" - + "\030\003 \001(\t\022\013\n\003kid\030\004 \001(\t\022\t\n\001n\030\005 \001(\t\022\t\n\001e\030\006 \001(" - + "\t\022\t\n\001x\030\007 \001(\t\022\t\n\001y\030\010 \001(\t\022\013\n\003crv\030\t \001(\t\"@\n\026" - + "GetJSONWebKeysResponse\022&\n\004keys\030\001 \003(\0132\030.g" - + "oogle.container.v1.Jwk\"\216\001\n\016ReleaseChanne" - + "l\022<\n\007channel\030\001 \001(\0162+.google.container.v1" - + ".ReleaseChannel.Channel\">\n\007Channel\022\017\n\013UN" - + "SPECIFIED\020\000\022\t\n\005RAPID\020\001\022\013\n\007REGULAR\020\002\022\n\n\006S" - + "TABLE\020\003\"\'\n\024CostManagementConfig\022\017\n\007enabl" - + "ed\030\001 \001(\010\",\n\031IntraNodeVisibilityConfig\022\017\n" - + "\007enabled\030\001 \001(\010\"&\n\023ILBSubsettingConfig\022\017\n" - + "\007enabled\030\001 \001(\010\"\275\002\n\tDNSConfig\022<\n\013cluster_" - + "dns\030\001 \001(\0162\'.google.container.v1.DNSConfi" - + "g.Provider\022B\n\021cluster_dns_scope\030\002 \001(\0162\'." - + "google.container.v1.DNSConfig.DNSScope\022\032" - + "\n\022cluster_dns_domain\030\003 \001(\t\"I\n\010Provider\022\030" - + "\n\024PROVIDER_UNSPECIFIED\020\000\022\024\n\020PLATFORM_DEF" - + "AULT\020\001\022\r\n\tCLOUD_DNS\020\002\"G\n\010DNSScope\022\031\n\025DNS" - + "_SCOPE_UNSPECIFIED\020\000\022\021\n\rCLUSTER_SCOPE\020\001\022" - + "\r\n\tVPC_SCOPE\020\002\".\n\021MaxPodsConstraint\022\031\n\021m" - + "ax_pods_per_node\030\001 \001(\003\"/\n\026WorkloadIdenti" - + "tyConfig\022\025\n\rworkload_pool\030\002 \001(\t\"(\n\025Ident" - + "ityServiceConfig\022\017\n\007enabled\030\001 \001(\010\"K\n\020Mes" - + "hCertificates\0227\n\023enable_certificates\030\001 \001" - + "(\0132\032.google.protobuf.BoolValue\"\230\001\n\022Datab" - + "aseEncryption\022<\n\005state\030\002 \001(\0162-.google.co" - + "ntainer.v1.DatabaseEncryption.State\022\020\n\010k" - + "ey_name\030\001 \001(\t\"2\n\005State\022\013\n\007UNKNOWN\020\000\022\r\n\tE" - + "NCRYPTED\020\001\022\r\n\tDECRYPTED\020\002\"e\n\034ListUsableS" - + "ubnetworksRequest\022\016\n\006parent\030\001 \001(\t\022\016\n\006fil" - + "ter\030\002 \001(\t\022\021\n\tpage_size\030\003 \001(\005\022\022\n\npage_tok" - + "en\030\004 \001(\t\"t\n\035ListUsableSubnetworksRespons" - + "e\022:\n\013subnetworks\030\001 \003(\0132%.google.containe" - + "r.v1.UsableSubnetwork\022\027\n\017next_page_token" - + "\030\002 \001(\t\"\200\002\n\036UsableSubnetworkSecondaryRang" - + "e\022\022\n\nrange_name\030\001 \001(\t\022\025\n\rip_cidr_range\030\002" - + " \001(\t\022J\n\006status\030\003 \001(\0162:.google.container." - + "v1.UsableSubnetworkSecondaryRange.Status" - + "\"g\n\006Status\022\013\n\007UNKNOWN\020\000\022\n\n\006UNUSED\020\001\022\022\n\016I" - + "N_USE_SERVICE\020\002\022\030\n\024IN_USE_SHAREABLE_POD\020" - + "\003\022\026\n\022IN_USE_MANAGED_POD\020\004\"\270\001\n\020UsableSubn" - + "etwork\022\022\n\nsubnetwork\030\001 \001(\t\022\017\n\007network\030\002 " - + "\001(\t\022\025\n\rip_cidr_range\030\003 \001(\t\022P\n\023secondary_" - + "ip_ranges\030\004 \003(\01323.google.container.v1.Us" - + "ableSubnetworkSecondaryRange\022\026\n\016status_m" - + "essage\030\005 \001(\t\"\355\002\n\031ResourceUsageExportConf" - + "ig\022`\n\024bigquery_destination\030\001 \001(\0132B.googl" - + "e.container.v1.ResourceUsageExportConfig" - + ".BigQueryDestination\022&\n\036enable_network_e" - + "gress_metering\030\002 \001(\010\022m\n\033consumption_mete" - + "ring_config\030\003 \001(\0132H.google.container.v1." - + "ResourceUsageExportConfig.ConsumptionMet" - + "eringConfig\032)\n\023BigQueryDestination\022\022\n\nda" - + "taset_id\030\001 \001(\t\032,\n\031ConsumptionMeteringCon" - + "fig\022\017\n\007enabled\030\001 \001(\010\")\n\026VerticalPodAutos" - + "caling\022\017\n\007enabled\030\001 \001(\010\"%\n\021DefaultSnatSt" - + "atus\022\020\n\010disabled\030\001 \001(\010\" \n\rShieldedNodes\022" - + "\017\n\007enabled\030\001 \001(\010\"\035\n\nVirtualNIC\022\017\n\007enable" - + "d\030\001 \001(\010\"\035\n\nFastSocket\022\017\n\007enabled\030\001 \001(\010\"\250" - + "\003\n\022NotificationConfig\022>\n\006pubsub\030\001 \001(\0132.." - + "google.container.v1.NotificationConfig.P" - + "ubSub\032\212\001\n\006PubSub\022\017\n\007enabled\030\001 \001(\010\022/\n\005top" - + "ic\030\002 \001(\tB \372A\035\n\033pubsub.googleapis.com/Top" - + "ic\022>\n\006filter\030\003 \001(\0132..google.container.v1" - + ".NotificationConfig.Filter\032O\n\006Filter\022E\n\n" - + "event_type\030\001 \003(\01621.google.container.v1.N" - + "otificationConfig.EventType\"t\n\tEventType" - + "\022\032\n\026EVENT_TYPE_UNSPECIFIED\020\000\022\033\n\027UPGRADE_" - + "AVAILABLE_EVENT\020\001\022\021\n\rUPGRADE_EVENT\020\002\022\033\n\027" - + "SECURITY_BULLETIN_EVENT\020\003\"$\n\021Confidentia" - + "lNodes\022\017\n\007enabled\030\001 \001(\010\"\337\001\n\014UpgradeEvent" - + "\022?\n\rresource_type\030\001 \001(\0162(.google.contain" - + "er.v1.UpgradeResourceType\022\021\n\toperation\030\002" - + " \001(\t\0228\n\024operation_start_time\030\003 \001(\0132\032.goo" - + "gle.protobuf.Timestamp\022\027\n\017current_versio" - + "n\030\004 \001(\t\022\026\n\016target_version\030\005 \001(\t\022\020\n\010resou" - + "rce\030\006 \001(\t\"\271\001\n\025UpgradeAvailableEvent\022\017\n\007v" - + "ersion\030\001 \001(\t\022?\n\rresource_type\030\002 \001(\0162(.go" - + "ogle.container.v1.UpgradeResourceType\022<\n" - + "\017release_channel\030\003 \001(\0132#.google.containe" - + "r.v1.ReleaseChannel\022\020\n\010resource\030\004 \001(\t\"\236\002" - + "\n\025SecurityBulletinEvent\022\036\n\026resource_type" - + "_affected\030\001 \001(\t\022\023\n\013bulletin_id\030\002 \001(\t\022\017\n\007" - + "cve_ids\030\003 \003(\t\022\020\n\010severity\030\004 \001(\t\022\024\n\014bulle" - + "tin_uri\030\005 \001(\t\022\031\n\021brief_description\030\006 \001(\t" - + "\022!\n\031affected_supported_minors\030\007 \003(\t\022\030\n\020p" - + "atched_versions\030\010 \003(\t\022 \n\030suggested_upgra" - + "de_target\030\t \001(\t\022\035\n\025manual_steps_required" - + "\030\n \001(\010\"\034\n\tAutopilot\022\017\n\007enabled\030\001 \001(\010\"V\n\r" - + "LoggingConfig\022E\n\020component_config\030\001 \001(\0132" - + "+.google.container.v1.LoggingComponentCo" - + "nfig\"\357\001\n\026LoggingComponentConfig\022P\n\021enabl" - + "e_components\030\001 \003(\01625.google.container.v1" - + ".LoggingComponentConfig.Component\"\202\001\n\tCo" - + "mponent\022\031\n\025COMPONENT_UNSPECIFIED\020\000\022\025\n\021SY", - "STEM_COMPONENTS\020\001\022\r\n\tWORKLOADS\020\002\022\r\n\tAPIS" - + "ERVER\020\003\022\r\n\tSCHEDULER\020\004\022\026\n\022CONTROLLER_MAN" - + "AGER\020\005\"\255\001\n\020MonitoringConfig\022H\n\020component" - + "_config\030\001 \001(\0132..google.container.v1.Moni" - + "toringComponentConfig\022O\n\031managed_prometh" - + "eus_config\030\002 \001(\0132,.google.container.v1.M" - + "anagedPrometheusConfig\"Z\n\025NodePoolLoggin" - + "gConfig\022A\n\016variant_config\030\001 \001(\0132).google" - + ".container.v1.LoggingVariantConfig\"\237\001\n\024L" - + "oggingVariantConfig\022B\n\007variant\030\001 \001(\01621.g" - + "oogle.container.v1.LoggingVariantConfig." - + "Variant\"C\n\007Variant\022\027\n\023VARIANT_UNSPECIFIE" - + "D\020\000\022\013\n\007DEFAULT\020\001\022\022\n\016MAX_THROUGHPUT\020\002\"\345\001\n" - + "\031MonitoringComponentConfig\022S\n\021enable_com" - + "ponents\030\001 \003(\01628.google.container.v1.Moni" - + "toringComponentConfig.Component\"s\n\tCompo" - + "nent\022\031\n\025COMPONENT_UNSPECIFIED\020\000\022\025\n\021SYSTE" - + "M_COMPONENTS\020\001\022\r\n\tAPISERVER\020\003\022\r\n\tSCHEDUL" - + "ER\020\004\022\026\n\022CONTROLLER_MANAGER\020\005\"*\n\027ManagedP" - + "rometheusConfig\022\017\n\007enabled\030\001 \001(\010\"2\n\027Loca" - + "lNvmeSsdBlockConfig\022\027\n\017local_ssd_count\030\001" - + " \001(\005\"9\n\036EphemeralStorageLocalSsdConfig\022\027" - + "\n\017local_ssd_count\030\001 \001(\005*\306\001\n\027PrivateIPv6G" - + "oogleAccess\022*\n&PRIVATE_IPV6_GOOGLE_ACCES" - + "S_UNSPECIFIED\020\000\022\'\n#PRIVATE_IPV6_GOOGLE_A" - + "CCESS_DISABLED\020\001\022(\n$PRIVATE_IPV6_GOOGLE_" - + "ACCESS_TO_GOOGLE\020\002\022,\n(PRIVATE_IPV6_GOOGL" - + "E_ACCESS_BIDIRECTIONAL\020\003*W\n\023UpgradeResou" - + "rceType\022%\n!UPGRADE_RESOURCE_TYPE_UNSPECI" - + "FIED\020\000\022\n\n\006MASTER\020\001\022\r\n\tNODE_POOL\020\002*a\n\020Dat" - + "apathProvider\022!\n\035DATAPATH_PROVIDER_UNSPE" - + "CIFIED\020\000\022\023\n\017LEGACY_DATAPATH\020\001\022\025\n\021ADVANCE" - + "D_DATAPATH\020\002*^\n\026NodePoolUpdateStrategy\022)" - + "\n%NODE_POOL_UPDATE_STRATEGY_UNSPECIFIED\020" - + "\000\022\016\n\nBLUE_GREEN\020\002\022\t\n\005SURGE\020\003*@\n\tStackTyp" - + "e\022\032\n\026STACK_TYPE_UNSPECIFIED\020\000\022\010\n\004IPV4\020\001\022" - + "\r\n\tIPV4_IPV6\020\002*N\n\016IPv6AccessType\022 \n\034IPV6" - + "_ACCESS_TYPE_UNSPECIFIED\020\000\022\014\n\010INTERNAL\020\001" - + "\022\014\n\010EXTERNAL\020\0022\303G\n\016ClusterManager\022\350\001\n\014Li" - + "stClusters\022(.google.container.v1.ListClu" - + "stersRequest\032).google.container.v1.ListC" - + "lustersResponse\"\202\001\202\323\344\223\002a\022,/v1/{parent=pr" - + "ojects/*/locations/*}/clustersZ1\022//v1/pr" - + "ojects/{project_id}/zones/{zone}/cluster" - + "s\332A\017project_id,zone\332A\006parent\022\355\001\n\nGetClus" - + "ter\022&.google.container.v1.GetClusterRequ" - + "est\032\034.google.container.v1.Cluster\"\230\001\202\323\344\223" - + "\002n\022,/v1/{name=projects/*/locations/*/clu" - + "sters/*}Z>\022*\n\004mode\030\002 \001(\01620.googl" + + "e.container.v1.WorkloadMetadataConfig.Mo" + + "de\"@\n\004Mode\022\024\n\020MODE_UNSPECIFIED\020\000\022\020\n\014GCE_" + + "METADATA\020\001\022\020\n\014GKE_METADATA\020\002\"\252\001\n\027SetNetw" + + "orkPolicyRequest\022\026\n\nproject_id\030\001 \001(\tB\002\030\001" + + "\022\020\n\004zone\030\002 \001(\tB\002\030\001\022\026\n\ncluster_id\030\003 \001(\tB\002" + + "\030\001\022?\n\016network_policy\030\004 \001(\0132\".google.cont" + + "ainer.v1.NetworkPolicyB\003\340A\002\022\014\n\004name\030\006 \001(" + + "\t\"\271\001\n\033SetMaintenancePolicyRequest\022\027\n\npro" + + "ject_id\030\001 \001(\tB\003\340A\002\022\021\n\004zone\030\002 \001(\tB\003\340A\002\022\027\n" + + "\ncluster_id\030\003 \001(\tB\003\340A\002\022G\n\022maintenance_po" + + "licy\030\004 \001(\0132&.google.container.v1.Mainten" + + "ancePolicyB\003\340A\002\022\014\n\004name\030\005 \001(\t\"\251\002\n\017Status" + + "Condition\022;\n\004code\030\001 \001(\0162).google.contain" + + "er.v1.StatusCondition.CodeB\002\030\001\022\017\n\007messag" + + "e\030\002 \001(\t\022(\n\016canonical_code\030\003 \001(\0162\020.google" + + ".rpc.Code\"\235\001\n\004Code\022\013\n\007UNKNOWN\020\000\022\020\n\014GCE_S" + + "TOCKOUT\020\001\022\037\n\033GKE_SERVICE_ACCOUNT_DELETED" + + "\020\002\022\026\n\022GCE_QUOTA_EXCEEDED\020\003\022\023\n\017SET_BY_OPE" + + "RATOR\020\004\022\027\n\023CLOUD_KMS_KEY_ERROR\020\007\022\017\n\013CA_E" + + "XPIRING\020\t\"\237\004\n\rNetworkConfig\022\017\n\007network\030\001" + + " \001(\t\022\022\n\nsubnetwork\030\002 \001(\t\022$\n\034enable_intra" + + "_node_visibility\030\005 \001(\010\022C\n\023default_snat_s" + + "tatus\030\007 \001(\0132&.google.container.v1.Defaul" + + "tSnatStatus\022\037\n\027enable_l4ilb_subsetting\030\n" + + " \001(\010\022@\n\021datapath_provider\030\013 \001(\0162%.google" + + ".container.v1.DatapathProvider\022P\n\032privat" + + "e_ipv6_google_access\030\014 \001(\0162,.google.cont" + + "ainer.v1.PrivateIPv6GoogleAccess\0222\n\ndns_" + + "config\030\r \001(\0132\036.google.container.v1.DNSCo" + + "nfig\022R\n\033service_external_ips_config\030\017 \001(" + + "\0132-.google.container.v1.ServiceExternalI" + + "PsConfig\022A\n\022gateway_api_config\030\020 \001(\0132%.g" + + "oogle.container.v1.GatewayAPIConfig\"\274\001\n\020" + + "GatewayAPIConfig\022>\n\007channel\030\001 \001(\0162-.goog" + + "le.container.v1.GatewayAPIConfig.Channel" + + "\"h\n\007Channel\022\027\n\023CHANNEL_UNSPECIFIED\020\000\022\024\n\020" + + "CHANNEL_DISABLED\020\001\022\030\n\024CHANNEL_EXPERIMENT" + + "AL\020\003\022\024\n\020CHANNEL_STANDARD\020\004\"+\n\030ServiceExt" + + "ernalIPsConfig\022\017\n\007enabled\030\001 \001(\010\"(\n\026GetOp" + + "enIDConfigRequest\022\016\n\006parent\030\001 \001(\t\"\334\001\n\027Ge" + + "tOpenIDConfigResponse\022\016\n\006issuer\030\001 \001(\t\022\020\n" + + "\010jwks_uri\030\002 \001(\t\022 \n\030response_types_suppor" + + "ted\030\003 \003(\t\022\037\n\027subject_types_supported\030\004 \003" + + "(\t\022-\n%id_token_signing_alg_values_suppor" + + "ted\030\005 \003(\t\022\030\n\020claims_supported\030\006 \003(\t\022\023\n\013g" + + "rant_types\030\007 \003(\t\"\'\n\025GetJSONWebKeysReques" + + "t\022\016\n\006parent\030\001 \001(\t\"r\n\003Jwk\022\013\n\003kty\030\001 \001(\t\022\013\n" + + "\003alg\030\002 \001(\t\022\013\n\003use\030\003 \001(\t\022\013\n\003kid\030\004 \001(\t\022\t\n\001" + + "n\030\005 \001(\t\022\t\n\001e\030\006 \001(\t\022\t\n\001x\030\007 \001(\t\022\t\n\001y\030\010 \001(\t" + + "\022\013\n\003crv\030\t \001(\t\"@\n\026GetJSONWebKeysResponse\022" + + "&\n\004keys\030\001 \003(\0132\030.google.container.v1.Jwk\"" + + "\216\001\n\016ReleaseChannel\022<\n\007channel\030\001 \001(\0162+.go" + + "ogle.container.v1.ReleaseChannel.Channel" + + "\">\n\007Channel\022\017\n\013UNSPECIFIED\020\000\022\t\n\005RAPID\020\001\022" + + "\013\n\007REGULAR\020\002\022\n\n\006STABLE\020\003\"\'\n\024CostManageme" + + "ntConfig\022\017\n\007enabled\030\001 \001(\010\",\n\031IntraNodeVi" + + "sibilityConfig\022\017\n\007enabled\030\001 \001(\010\"&\n\023ILBSu" + + "bsettingConfig\022\017\n\007enabled\030\001 \001(\010\"\275\002\n\tDNSC" + + "onfig\022<\n\013cluster_dns\030\001 \001(\0162\'.google.cont" + + "ainer.v1.DNSConfig.Provider\022B\n\021cluster_d" + + "ns_scope\030\002 \001(\0162\'.google.container.v1.DNS" + + "Config.DNSScope\022\032\n\022cluster_dns_domain\030\003 " + + "\001(\t\"I\n\010Provider\022\030\n\024PROVIDER_UNSPECIFIED\020" + + "\000\022\024\n\020PLATFORM_DEFAULT\020\001\022\r\n\tCLOUD_DNS\020\002\"G" + + "\n\010DNSScope\022\031\n\025DNS_SCOPE_UNSPECIFIED\020\000\022\021\n" + + "\rCLUSTER_SCOPE\020\001\022\r\n\tVPC_SCOPE\020\002\".\n\021MaxPo" + + "dsConstraint\022\031\n\021max_pods_per_node\030\001 \001(\003\"" + + "/\n\026WorkloadIdentityConfig\022\025\n\rworkload_po" + + "ol\030\002 \001(\t\"(\n\025IdentityServiceConfig\022\017\n\007ena" + + "bled\030\001 \001(\010\"K\n\020MeshCertificates\0227\n\023enable" + + "_certificates\030\001 \001(\0132\032.google.protobuf.Bo" + + "olValue\"\230\001\n\022DatabaseEncryption\022<\n\005state\030" + + "\002 \001(\0162-.google.container.v1.DatabaseEncr" + + "yption.State\022\020\n\010key_name\030\001 \001(\t\"2\n\005State\022" + + "\013\n\007UNKNOWN\020\000\022\r\n\tENCRYPTED\020\001\022\r\n\tDECRYPTED" + + "\020\002\"e\n\034ListUsableSubnetworksRequest\022\016\n\006pa" + + "rent\030\001 \001(\t\022\016\n\006filter\030\002 \001(\t\022\021\n\tpage_size\030" + + "\003 \001(\005\022\022\n\npage_token\030\004 \001(\t\"t\n\035ListUsableS" + + "ubnetworksResponse\022:\n\013subnetworks\030\001 \003(\0132" + + "%.google.container.v1.UsableSubnetwork\022\027" + + "\n\017next_page_token\030\002 \001(\t\"\200\002\n\036UsableSubnet" + + "workSecondaryRange\022\022\n\nrange_name\030\001 \001(\t\022\025" + + "\n\rip_cidr_range\030\002 \001(\t\022J\n\006status\030\003 \001(\0162:." + + "google.container.v1.UsableSubnetworkSeco" + + "ndaryRange.Status\"g\n\006Status\022\013\n\007UNKNOWN\020\000" + + "\022\n\n\006UNUSED\020\001\022\022\n\016IN_USE_SERVICE\020\002\022\030\n\024IN_U" + + "SE_SHAREABLE_POD\020\003\022\026\n\022IN_USE_MANAGED_POD" + + "\020\004\"\270\001\n\020UsableSubnetwork\022\022\n\nsubnetwork\030\001 " + + "\001(\t\022\017\n\007network\030\002 \001(\t\022\025\n\rip_cidr_range\030\003 " + + "\001(\t\022P\n\023secondary_ip_ranges\030\004 \003(\01323.googl" + + "e.container.v1.UsableSubnetworkSecondary" + + "Range\022\026\n\016status_message\030\005 \001(\t\"\355\002\n\031Resour" + + "ceUsageExportConfig\022`\n\024bigquery_destinat" + + "ion\030\001 \001(\0132B.google.container.v1.Resource" + + "UsageExportConfig.BigQueryDestination\022&\n" + + "\036enable_network_egress_metering\030\002 \001(\010\022m\n" + + "\033consumption_metering_config\030\003 \001(\0132H.goo" + + "gle.container.v1.ResourceUsageExportConf" + + "ig.ConsumptionMeteringConfig\032)\n\023BigQuery" + + "Destination\022\022\n\ndataset_id\030\001 \001(\t\032,\n\031Consu" + + "mptionMeteringConfig\022\017\n\007enabled\030\001 \001(\010\")\n" + + "\026VerticalPodAutoscaling\022\017\n\007enabled\030\001 \001(\010" + + "\"%\n\021DefaultSnatStatus\022\020\n\010disabled\030\001 \001(\010\"" + + " \n\rShieldedNodes\022\017\n\007enabled\030\001 \001(\010\"\035\n\nVir" + + "tualNIC\022\017\n\007enabled\030\001 \001(\010\"\035\n\nFastSocket\022\017" + + "\n\007enabled\030\001 \001(\010\"\250\003\n\022NotificationConfig\022>" + + "\n\006pubsub\030\001 \001(\0132..google.container.v1.Not" + + "ificationConfig.PubSub\032\212\001\n\006PubSub\022\017\n\007ena" + + "bled\030\001 \001(\010\022/\n\005topic\030\002 \001(\tB \372A\035\n\033pubsub.g" + + "oogleapis.com/Topic\022>\n\006filter\030\003 \001(\0132..go" + + "ogle.container.v1.NotificationConfig.Fil" + + "ter\032O\n\006Filter\022E\n\nevent_type\030\001 \003(\01621.goog" + + "le.container.v1.NotificationConfig.Event" + + "Type\"t\n\tEventType\022\032\n\026EVENT_TYPE_UNSPECIF" + + "IED\020\000\022\033\n\027UPGRADE_AVAILABLE_EVENT\020\001\022\021\n\rUP" + + "GRADE_EVENT\020\002\022\033\n\027SECURITY_BULLETIN_EVENT" + + "\020\003\"$\n\021ConfidentialNodes\022\017\n\007enabled\030\001 \001(\010" + + "\"\337\001\n\014UpgradeEvent\022?\n\rresource_type\030\001 \001(\016" + + "2(.google.container.v1.UpgradeResourceTy" + + "pe\022\021\n\toperation\030\002 \001(\t\0228\n\024operation_start" + + "_time\030\003 \001(\0132\032.google.protobuf.Timestamp\022" + + "\027\n\017current_version\030\004 \001(\t\022\026\n\016target_versi" + + "on\030\005 \001(\t\022\020\n\010resource\030\006 \001(\t\"\271\001\n\025UpgradeAv" + + "ailableEvent\022\017\n\007version\030\001 \001(\t\022?\n\rresourc" + + "e_type\030\002 \001(\0162(.google.container.v1.Upgra" + + "deResourceType\022<\n\017release_channel\030\003 \001(\0132" + + "#.google.container.v1.ReleaseChannel\022\020\n\010" + + "resource\030\004 \001(\t\"\236\002\n\025SecurityBulletinEvent" + + "\022\036\n\026resource_type_affected\030\001 \001(\t\022\023\n\013bull" + + "etin_id\030\002 \001(\t\022\017\n\007cve_ids\030\003 \003(\t\022\020\n\010severi" + + "ty\030\004 \001(\t\022\024\n\014bulletin_uri\030\005 \001(\t\022\031\n\021brief_" + + "description\030\006 \001(\t\022!\n\031affected_supported_" + + "minors\030\007 \003(\t\022\030\n\020patched_versions\030\010 \003(\t\022 " + + "\n\030suggested_upgrade_target\030\t \001(\t\022\035\n\025manu" + + "al_steps_required\030\n \001(\010\"\034\n\tAutopilot\022\017\n\007" + + "enabled\030\001 \001(\010\"V\n\rLoggingConfig\022E\n\020compon" + + "ent_config\030\001 \001(\0132+.google.container.v1.L" + + "oggingComponentConfig\"\357\001\n\026LoggingCompone" + + "ntConfig\022P\n\021enable_components\030\001 \003(\01625.go" + + "ogle.container.v1.LoggingComponentConfig", + ".Component\"\202\001\n\tComponent\022\031\n\025COMPONENT_UN" + + "SPECIFIED\020\000\022\025\n\021SYSTEM_COMPONENTS\020\001\022\r\n\tWO" + + "RKLOADS\020\002\022\r\n\tAPISERVER\020\003\022\r\n\tSCHEDULER\020\004\022" + + "\026\n\022CONTROLLER_MANAGER\020\005\"\255\001\n\020MonitoringCo" + + "nfig\022H\n\020component_config\030\001 \001(\0132..google." + + "container.v1.MonitoringComponentConfig\022O" + + "\n\031managed_prometheus_config\030\002 \001(\0132,.goog" + + "le.container.v1.ManagedPrometheusConfig\"" + + "Z\n\025NodePoolLoggingConfig\022A\n\016variant_conf" + + "ig\030\001 \001(\0132).google.container.v1.LoggingVa" + + "riantConfig\"\237\001\n\024LoggingVariantConfig\022B\n\007" + + "variant\030\001 \001(\01621.google.container.v1.Logg" + + "ingVariantConfig.Variant\"C\n\007Variant\022\027\n\023V" + + "ARIANT_UNSPECIFIED\020\000\022\013\n\007DEFAULT\020\001\022\022\n\016MAX" + + "_THROUGHPUT\020\002\"\345\001\n\031MonitoringComponentCon" + + "fig\022S\n\021enable_components\030\001 \003(\01628.google." + + "container.v1.MonitoringComponentConfig.C" + + "omponent\"s\n\tComponent\022\031\n\025COMPONENT_UNSPE" + + "CIFIED\020\000\022\025\n\021SYSTEM_COMPONENTS\020\001\022\r\n\tAPISE" + + "RVER\020\003\022\r\n\tSCHEDULER\020\004\022\026\n\022CONTROLLER_MANA" + + "GER\020\005\"*\n\027ManagedPrometheusConfig\022\017\n\007enab" + + "led\030\001 \001(\010\"2\n\027LocalNvmeSsdBlockConfig\022\027\n\017" + + "local_ssd_count\030\001 \001(\005\"9\n\036EphemeralStorag" + + "eLocalSsdConfig\022\027\n\017local_ssd_count\030\001 \001(\005" + + "*\306\001\n\027PrivateIPv6GoogleAccess\022*\n&PRIVATE_" + + "IPV6_GOOGLE_ACCESS_UNSPECIFIED\020\000\022\'\n#PRIV" + + "ATE_IPV6_GOOGLE_ACCESS_DISABLED\020\001\022(\n$PRI" + + "VATE_IPV6_GOOGLE_ACCESS_TO_GOOGLE\020\002\022,\n(P" + + "RIVATE_IPV6_GOOGLE_ACCESS_BIDIRECTIONAL\020" + + "\003*W\n\023UpgradeResourceType\022%\n!UPGRADE_RESO" + + "URCE_TYPE_UNSPECIFIED\020\000\022\n\n\006MASTER\020\001\022\r\n\tN" + + "ODE_POOL\020\002*a\n\020DatapathProvider\022!\n\035DATAPA" + + "TH_PROVIDER_UNSPECIFIED\020\000\022\023\n\017LEGACY_DATA" + + "PATH\020\001\022\025\n\021ADVANCED_DATAPATH\020\002*^\n\026NodePoo" + + "lUpdateStrategy\022)\n%NODE_POOL_UPDATE_STRA" + + "TEGY_UNSPECIFIED\020\000\022\016\n\nBLUE_GREEN\020\002\022\t\n\005SU" + + "RGE\020\003*@\n\tStackType\022\032\n\026STACK_TYPE_UNSPECI" + + "FIED\020\000\022\010\n\004IPV4\020\001\022\r\n\tIPV4_IPV6\020\002*N\n\016IPv6A" + + "ccessType\022 \n\034IPV6_ACCESS_TYPE_UNSPECIFIE" + + "D\020\000\022\014\n\010INTERNAL\020\001\022\014\n\010EXTERNAL\020\0022\303G\n\016Clus" + + "terManager\022\350\001\n\014ListClusters\022(.google.con" + + "tainer.v1.ListClustersRequest\032).google.c" + + "ontainer.v1.ListClustersResponse\"\202\001\202\323\344\223\002" + + "a\022,/v1/{parent=projects/*/locations/*}/c" + + "lustersZ1\022//v1/projects/{project_id}/zon" + + "es/{zone}/clusters\332A\017project_id,zone\332A\006p" + + "arent\022\355\001\n\nGetCluster\022&.google.container." + + "v1.GetClusterRequest\032\034.google.container." + + "v1.Cluster\"\230\001\202\323\344\223\002n\022,/v1/{name=projects/" + + "*/locations/*/clusters/*}Z>\022/v1/" - + "{name=projects/*/locations/*/clusters/*}" - + ":setResourceLabels:\001*ZP\"K/v1/projects/{p" + + "s/*}:setMonitoring:\001*ZL\"G/v1/projects/{p" + "roject_id}/zones/{zone}/clusters/{cluste" - + "r_id}/resourceLabels:\001*\022\245\002\n\rSetLegacyAba" - + "c\022).google.container.v1.SetLegacyAbacReq" - + "uest\032\036.google.container.v1.Operation\"\310\001\202" - + "\323\344\223\002\215\001\":/v1/{name=projects/*/locations/*" - + "/clusters/*}:setLegacyAbac:\001*ZL\"G/v1/pro" - + "jects/{project_id}/zones/{zone}/clusters" - + "/{cluster_id}/legacyAbac:\001*\332A\"project_id" - + ",zone,cluster_id,enabled\332A\014name,enabled\022" - + "\240\002\n\017StartIPRotation\022+.google.container.v" - + "1.StartIPRotationRequest\032\036.google.contai" - + "ner.v1.Operation\"\277\001\202\323\344\223\002\224\001\"*/v1/{name=projects/*/locati" + + "ons/*/clusters/*}:setResourceLabels:\001*ZP" + + "\"K/v1/projects/{project_id}/zones/{zone}" + + "/clusters/{cluster_id}/resourceLabels:\001*" + + "\022\245\002\n\rSetLegacyAbac\022).google.container.v1" + + ".SetLegacyAbacRequest\032\036.google.container" + + ".v1.Operation\"\310\001\202\323\344\223\002\215\001\":/v1/{name=proje" + + "cts/*/locations/*/clusters/*}:setLegacyA" + + "bac:\001*ZL\"G/v1/projects/{project_id}/zone" + + "s/{zone}/clusters/{cluster_id}/legacyAba" + + "c:\001*\332A\"project_id,zone,cluster_id,enable" + + "d\332A\014name,enabled\022\240\002\n\017StartIPRotation\022+.g" + + "oogle.container.v1.StartIPRotationReques" + + "t\032\036.google.container.v1.Operation\"\277\001\202\323\344\223" + + "\002\224\001\" + * The current etag of the cluster. + * If an etag is provided and does not match the current etag of the cluster, + * update will be blocked and an ABORTED error will be returned. + * + * + * string etag = 115; + * + * @return The etag. + */ + @java.lang.Override + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } + } + /** + * + * + *
+   * The current etag of the cluster.
+   * If an etag is provided and does not match the current etag of the cluster,
+   * update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 115; + * + * @return The bytes for etag. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + public static final int DESIRED_NODE_POOL_LOGGING_CONFIG_FIELD_NUMBER = 116; private com.google.container.v1.NodePoolLoggingConfig desiredNodePoolLoggingConfig_; /** @@ -2199,6 +2253,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (desiredGatewayApiConfig_ != null) { output.writeMessage(114, getDesiredGatewayApiConfig()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 115, etag_); + } if (desiredNodePoolLoggingConfig_ != null) { output.writeMessage(116, getDesiredNodePoolLoggingConfig()); } @@ -2382,6 +2439,9 @@ public int getSerializedSize() { com.google.protobuf.CodedOutputStream.computeMessageSize( 114, getDesiredGatewayApiConfig()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(115, etag_); + } if (desiredNodePoolLoggingConfig_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize( @@ -2552,6 +2612,7 @@ public boolean equals(final java.lang.Object obj) { if (hasDesiredGatewayApiConfig()) { if (!getDesiredGatewayApiConfig().equals(other.getDesiredGatewayApiConfig())) return false; } + if (!getEtag().equals(other.getEtag())) return false; if (hasDesiredNodePoolLoggingConfig() != other.hasDesiredNodePoolLoggingConfig()) return false; if (hasDesiredNodePoolLoggingConfig()) { if (!getDesiredNodePoolLoggingConfig().equals(other.getDesiredNodePoolLoggingConfig())) @@ -2702,6 +2763,8 @@ public int hashCode() { hash = (37 * hash) + DESIRED_GATEWAY_API_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getDesiredGatewayApiConfig().hashCode(); } + hash = (37 * hash) + ETAG_FIELD_NUMBER; + hash = (53 * hash) + getEtag().hashCode(); if (hasDesiredNodePoolLoggingConfig()) { hash = (37 * hash) + DESIRED_NODE_POOL_LOGGING_CONFIG_FIELD_NUMBER; hash = (53 * hash) + getDesiredNodePoolLoggingConfig().hashCode(); @@ -3029,6 +3092,8 @@ public Builder clear() { desiredGatewayApiConfig_ = null; desiredGatewayApiConfigBuilder_ = null; } + etag_ = ""; + if (desiredNodePoolLoggingConfigBuilder_ == null) { desiredNodePoolLoggingConfig_ = null; } else { @@ -3220,6 +3285,7 @@ public com.google.container.v1.ClusterUpdate buildPartial() { } else { result.desiredGatewayApiConfig_ = desiredGatewayApiConfigBuilder_.build(); } + result.etag_ = etag_; if (desiredNodePoolLoggingConfigBuilder_ == null) { result.desiredNodePoolLoggingConfig_ = desiredNodePoolLoggingConfig_; } else { @@ -3401,6 +3467,10 @@ public Builder mergeFrom(com.google.container.v1.ClusterUpdate other) { if (other.hasDesiredGatewayApiConfig()) { mergeDesiredGatewayApiConfig(other.getDesiredGatewayApiConfig()); } + if (!other.getEtag().isEmpty()) { + etag_ = other.etag_; + onChanged(); + } if (other.hasDesiredNodePoolLoggingConfig()) { mergeDesiredNodePoolLoggingConfig(other.getDesiredNodePoolLoggingConfig()); } @@ -3689,6 +3759,12 @@ public Builder mergeFrom( break; } // case 914 + case 922: + { + etag_ = input.readStringRequireUtf8(); + + break; + } // case 922 case 930: { input.readMessage( @@ -10267,6 +10343,122 @@ public com.google.container.v1.GatewayAPIConfigOrBuilder getDesiredGatewayApiCon return desiredGatewayApiConfigBuilder_; } + private java.lang.Object etag_ = ""; + /** + * + * + *
+     * The current etag of the cluster.
+     * If an etag is provided and does not match the current etag of the cluster,
+     * update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 115; + * + * @return The etag. + */ + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * The current etag of the cluster.
+     * If an etag is provided and does not match the current etag of the cluster,
+     * update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 115; + * + * @return The bytes for etag. + */ + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * The current etag of the cluster.
+     * If an etag is provided and does not match the current etag of the cluster,
+     * update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 115; + * + * @param value The etag to set. + * @return This builder for chaining. + */ + public Builder setEtag(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + etag_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * The current etag of the cluster.
+     * If an etag is provided and does not match the current etag of the cluster,
+     * update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 115; + * + * @return This builder for chaining. + */ + public Builder clearEtag() { + + etag_ = getDefaultInstance().getEtag(); + onChanged(); + return this; + } + /** + * + * + *
+     * The current etag of the cluster.
+     * If an etag is provided and does not match the current etag of the cluster,
+     * update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 115; + * + * @param value The bytes for etag to set. + * @return This builder for chaining. + */ + public Builder setEtagBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + etag_ = value; + onChanged(); + return this; + } + private com.google.container.v1.NodePoolLoggingConfig desiredNodePoolLoggingConfig_; private com.google.protobuf.SingleFieldBuilderV3< com.google.container.v1.NodePoolLoggingConfig, diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java index f895c32e1b1a..22b2d257d1ea 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterUpdateOrBuilder.java @@ -1379,6 +1379,35 @@ public interface ClusterUpdateOrBuilder */ com.google.container.v1.GatewayAPIConfigOrBuilder getDesiredGatewayApiConfigOrBuilder(); + /** + * + * + *
+   * The current etag of the cluster.
+   * If an etag is provided and does not match the current etag of the cluster,
+   * update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 115; + * + * @return The etag. + */ + java.lang.String getEtag(); + /** + * + * + *
+   * The current etag of the cluster.
+   * If an etag is provided and does not match the current etag of the cluster,
+   * update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 115; + * + * @return The bytes for etag. + */ + com.google.protobuf.ByteString getEtagBytes(); + /** * * diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java index 162b92f5d243..19097ee7d312 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return The bytes for clusterId. */ @java.lang.Override @@ -707,7 +707,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return The projectId. */ @java.lang.Deprecated @@ -734,7 +734,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -761,7 +761,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @param value The projectId to set. * @return This builder for chaining. */ @@ -787,7 +787,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return This builder for chaining. */ @java.lang.Deprecated @@ -809,7 +809,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -839,7 +839,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return The zone. */ @java.lang.Deprecated @@ -867,7 +867,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return The bytes for zone. */ @java.lang.Deprecated @@ -895,7 +895,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @param value The zone to set. * @return This builder for chaining. */ @@ -922,7 +922,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return This builder for chaining. */ @java.lang.Deprecated @@ -945,7 +945,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -973,7 +973,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return The clusterId. */ @java.lang.Deprecated @@ -999,7 +999,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1025,7 +1025,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1050,7 +1050,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1071,7 +1071,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java index ece737b87462..423cea7a3eac 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CompleteIPRotationRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface CompleteIPRotationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface CompleteIPRotationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3642 + * google/container/v1/cluster_service.proto;l=3662 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface CompleteIPRotationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface CompleteIPRotationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3648 + * google/container/v1/cluster_service.proto;l=3668 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface CompleteIPRotationRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface CompleteIPRotationRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CompleteIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3652 + * google/container/v1/cluster_service.proto;l=3672 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java index 49d2030bf4fa..b21c38e61b83 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequest.java @@ -83,7 +83,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return The projectId. */ @java.lang.Override @@ -111,7 +111,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return The bytes for projectId. */ @java.lang.Override @@ -143,7 +143,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return The zone. */ @java.lang.Override @@ -172,7 +172,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return The bytes for zone. */ @java.lang.Override @@ -712,7 +712,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return The projectId. */ @java.lang.Deprecated @@ -739,7 +739,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -766,7 +766,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @param value The projectId to set. * @return This builder for chaining. */ @@ -792,7 +792,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return This builder for chaining. */ @java.lang.Deprecated @@ -814,7 +814,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -844,7 +844,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return The zone. */ @java.lang.Deprecated @@ -872,7 +872,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return The bytes for zone. */ @java.lang.Deprecated @@ -900,7 +900,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @param value The zone to set. * @return This builder for chaining. */ @@ -927,7 +927,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return This builder for chaining. */ @java.lang.Deprecated @@ -950,7 +950,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @param value The bytes for zone to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java index 4dcdeba32ed8..c6b8812b5cee 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateClusterRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface CreateClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface CreateClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2170 + * google/container/v1/cluster_service.proto;l=2180 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface CreateClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface CreateClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2176 + * google/container/v1/cluster_service.proto;l=2186 * @return The bytes for zone. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java index 43f938e4826b..b01d9fee0194 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return The bytes for clusterId. */ @java.lang.Override @@ -791,7 +791,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return The projectId. */ @java.lang.Deprecated @@ -818,7 +818,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -845,7 +845,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @param value The projectId to set. * @return This builder for chaining. */ @@ -871,7 +871,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return This builder for chaining. */ @java.lang.Deprecated @@ -893,7 +893,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -923,7 +923,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return The zone. */ @java.lang.Deprecated @@ -951,7 +951,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return The bytes for zone. */ @java.lang.Deprecated @@ -979,7 +979,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @param value The zone to set. * @return This builder for chaining. */ @@ -1006,7 +1006,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1029,7 +1029,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1057,7 +1057,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return The clusterId. */ @java.lang.Deprecated @@ -1083,7 +1083,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1109,7 +1109,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1134,7 +1134,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1155,7 +1155,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java index c866faaec543..1427af72cdca 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/CreateNodePoolRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface CreateNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface CreateNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2755 + * google/container/v1/cluster_service.proto;l=2770 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface CreateNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface CreateNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2761 + * google/container/v1/cluster_service.proto;l=2776 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface CreateNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface CreateNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.CreateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2765 + * google/container/v1/cluster_service.proto;l=2780 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java index a93647be974f..4bc8e959b299 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return The bytes for clusterId. */ @java.lang.Override @@ -706,7 +706,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return The projectId. */ @java.lang.Deprecated @@ -733,7 +733,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -760,7 +760,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @param value The projectId to set. * @return This builder for chaining. */ @@ -786,7 +786,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return This builder for chaining. */ @java.lang.Deprecated @@ -808,7 +808,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -838,7 +838,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return The zone. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return The bytes for zone. */ @java.lang.Deprecated @@ -894,7 +894,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @param value The zone to set. * @return This builder for chaining. */ @@ -921,7 +921,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return This builder for chaining. */ @java.lang.Deprecated @@ -944,7 +944,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -972,7 +972,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return The clusterId. */ @java.lang.Deprecated @@ -998,7 +998,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1024,7 +1024,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1049,7 +1049,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1070,7 +1070,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java index 6a0447fe1c6b..15216e611292 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteClusterRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface DeleteClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface DeleteClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2579 + * google/container/v1/cluster_service.proto;l=2594 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface DeleteClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface DeleteClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2585 + * google/container/v1/cluster_service.proto;l=2600 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface DeleteClusterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface DeleteClusterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2589 + * google/container/v1/cluster_service.proto;l=2604 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java index dc6d614e4929..c6b2b65740cc 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return The bytes for clusterId. */ @java.lang.Override @@ -261,7 +261,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return The nodePoolId. */ @java.lang.Override @@ -288,7 +288,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -788,7 +788,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return The projectId. */ @java.lang.Deprecated @@ -815,7 +815,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -842,7 +842,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @param value The projectId to set. * @return This builder for chaining. */ @@ -868,7 +868,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return This builder for chaining. */ @java.lang.Deprecated @@ -890,7 +890,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -920,7 +920,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return The zone. */ @java.lang.Deprecated @@ -948,7 +948,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return The bytes for zone. */ @java.lang.Deprecated @@ -976,7 +976,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @param value The zone to set. * @return This builder for chaining. */ @@ -1003,7 +1003,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1026,7 +1026,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1054,7 +1054,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return The clusterId. */ @java.lang.Deprecated @@ -1080,7 +1080,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1106,7 +1106,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1131,7 +1131,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1152,7 +1152,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -1180,7 +1180,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return The nodePoolId. */ @java.lang.Deprecated @@ -1206,7 +1206,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -1232,7 +1232,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -1257,7 +1257,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1278,7 +1278,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java index 1fd61e65a174..e7b5bcf94e20 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/DeleteNodePoolRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface DeleteNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface DeleteNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2781 + * google/container/v1/cluster_service.proto;l=2796 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface DeleteNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface DeleteNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2787 + * google/container/v1/cluster_service.proto;l=2802 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface DeleteNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface DeleteNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2791 + * google/container/v1/cluster_service.proto;l=2806 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface DeleteNodePoolRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface DeleteNodePoolRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.DeleteNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2795 + * google/container/v1/cluster_service.proto;l=2810 * @return The bytes for nodePoolId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java index c4a08f0f19a9..1889e39d4815 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return The bytes for clusterId. */ @java.lang.Override @@ -706,7 +706,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return The projectId. */ @java.lang.Deprecated @@ -733,7 +733,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -760,7 +760,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @param value The projectId to set. * @return This builder for chaining. */ @@ -786,7 +786,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return This builder for chaining. */ @java.lang.Deprecated @@ -808,7 +808,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -838,7 +838,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return The zone. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return The bytes for zone. */ @java.lang.Deprecated @@ -894,7 +894,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @param value The zone to set. * @return This builder for chaining. */ @@ -921,7 +921,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return This builder for chaining. */ @java.lang.Deprecated @@ -944,7 +944,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -972,7 +972,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return The clusterId. */ @java.lang.Deprecated @@ -998,7 +998,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1024,7 +1024,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1049,7 +1049,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1070,7 +1070,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java index c3ad49075b2d..a665e4e9e0fe 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetClusterRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface GetClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface GetClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2192 + * google/container/v1/cluster_service.proto;l=2202 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface GetClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface GetClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2198 + * google/container/v1/cluster_service.proto;l=2208 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface GetClusterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface GetClusterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2202 + * google/container/v1/cluster_service.proto;l=2212 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java index eec00654002b..a6fd28ada56e 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return The bytes for clusterId. */ @java.lang.Override @@ -261,7 +261,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return The nodePoolId. */ @java.lang.Override @@ -288,7 +288,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -788,7 +788,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return The projectId. */ @java.lang.Deprecated @@ -815,7 +815,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -842,7 +842,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @param value The projectId to set. * @return This builder for chaining. */ @@ -868,7 +868,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return This builder for chaining. */ @java.lang.Deprecated @@ -890,7 +890,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -920,7 +920,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return The zone. */ @java.lang.Deprecated @@ -948,7 +948,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return The bytes for zone. */ @java.lang.Deprecated @@ -976,7 +976,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @param value The zone to set. * @return This builder for chaining. */ @@ -1003,7 +1003,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1026,7 +1026,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1054,7 +1054,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return The clusterId. */ @java.lang.Deprecated @@ -1080,7 +1080,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1106,7 +1106,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1131,7 +1131,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1152,7 +1152,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -1180,7 +1180,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return The nodePoolId. */ @java.lang.Deprecated @@ -1206,7 +1206,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -1232,7 +1232,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -1257,7 +1257,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1278,7 +1278,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java index cfa63fb1c69e..4db0157f19b9 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetNodePoolRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface GetNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface GetNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2830 + * google/container/v1/cluster_service.proto;l=2845 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface GetNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface GetNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2836 + * google/container/v1/cluster_service.proto;l=2851 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface GetNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface GetNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2840 + * google/container/v1/cluster_service.proto;l=2855 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface GetNodePoolRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface GetNodePoolRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.GetNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2844 + * google/container/v1/cluster_service.proto;l=2859 * @return The bytes for nodePoolId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java index d45285b7e380..6ddcec802351 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return The operationId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getOperationId() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return The bytes for operationId. */ @java.lang.Override @@ -706,7 +706,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return The projectId. */ @java.lang.Deprecated @@ -733,7 +733,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -760,7 +760,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @param value The projectId to set. * @return This builder for chaining. */ @@ -786,7 +786,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return This builder for chaining. */ @java.lang.Deprecated @@ -808,7 +808,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -838,7 +838,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return The zone. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return The bytes for zone. */ @java.lang.Deprecated @@ -894,7 +894,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @param value The zone to set. * @return This builder for chaining. */ @@ -921,7 +921,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return This builder for chaining. */ @java.lang.Deprecated @@ -944,7 +944,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -972,7 +972,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return The operationId. */ @java.lang.Deprecated @@ -998,7 +998,7 @@ public java.lang.String getOperationId() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return The bytes for operationId. */ @java.lang.Deprecated @@ -1024,7 +1024,7 @@ public com.google.protobuf.ByteString getOperationIdBytes() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @param value The operationId to set. * @return This builder for chaining. */ @@ -1049,7 +1049,7 @@ public Builder setOperationId(java.lang.String value) { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1070,7 +1070,7 @@ public Builder clearOperationId() { * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @param value The bytes for operationId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java index c250583936bc..b52a7f244e0d 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetOperationRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface GetOperationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface GetOperationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2631 + * google/container/v1/cluster_service.proto;l=2646 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface GetOperationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface GetOperationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2637 + * google/container/v1/cluster_service.proto;l=2652 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface GetOperationRequestOrBuilder * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return The operationId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface GetOperationRequestOrBuilder * string operation_id = 3 [deprecated = true]; * * @deprecated google.container.v1.GetOperationRequest.operation_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2641 + * google/container/v1/cluster_service.proto;l=2656 * @return The bytes for operationId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java index 424f096ef0d3..11971843458a 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequest.java @@ -83,7 +83,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return The projectId. */ @java.lang.Override @@ -111,7 +111,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return The bytes for projectId. */ @java.lang.Override @@ -143,7 +143,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return The zone. */ @java.lang.Override @@ -172,7 +172,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return The bytes for zone. */ @java.lang.Override @@ -626,7 +626,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return The projectId. */ @java.lang.Deprecated @@ -653,7 +653,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -680,7 +680,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @param value The projectId to set. * @return This builder for chaining. */ @@ -706,7 +706,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return This builder for chaining. */ @java.lang.Deprecated @@ -728,7 +728,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -758,7 +758,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return The zone. */ @java.lang.Deprecated @@ -786,7 +786,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return The bytes for zone. */ @java.lang.Deprecated @@ -814,7 +814,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @param value The zone to set. * @return This builder for chaining. */ @@ -841,7 +841,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return This builder for chaining. */ @java.lang.Deprecated @@ -864,7 +864,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @param value The bytes for zone to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java index 2e16a017ab5b..5886603ab7f2 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/GetServerConfigRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface GetServerConfigRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface GetServerConfigRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2704 + * google/container/v1/cluster_service.proto;l=2719 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface GetServerConfigRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface GetServerConfigRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.GetServerConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2710 + * google/container/v1/cluster_service.proto;l=2725 * @return The bytes for zone. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java index 02edfe476311..cb193401e3b4 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequest.java @@ -83,7 +83,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return The projectId. */ @java.lang.Override @@ -111,7 +111,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return The bytes for projectId. */ @java.lang.Override @@ -143,7 +143,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return The zone. */ @java.lang.Override @@ -172,7 +172,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return The bytes for zone. */ @java.lang.Override @@ -628,7 +628,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return The projectId. */ @java.lang.Deprecated @@ -655,7 +655,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -682,7 +682,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @param value The projectId to set. * @return This builder for chaining. */ @@ -708,7 +708,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return This builder for chaining. */ @java.lang.Deprecated @@ -730,7 +730,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -760,7 +760,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return The zone. */ @java.lang.Deprecated @@ -788,7 +788,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return The bytes for zone. */ @java.lang.Deprecated @@ -816,7 +816,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @param value The zone to set. * @return This builder for chaining. */ @@ -843,7 +843,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return This builder for chaining. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @param value The bytes for zone to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java index 0d4d4a1c8dd1..7c6ddd44b599 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListClustersRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface ListClustersRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface ListClustersRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2601 + * google/container/v1/cluster_service.proto;l=2616 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface ListClustersRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface ListClustersRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListClustersRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2607 + * google/container/v1/cluster_service.proto;l=2622 * @return The bytes for zone. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java index dea2e5b03fe4..b63b2956b734 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return The bytes for clusterId. */ @java.lang.Override @@ -706,7 +706,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return The projectId. */ @java.lang.Deprecated @@ -733,7 +733,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -760,7 +760,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @param value The projectId to set. * @return This builder for chaining. */ @@ -786,7 +786,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return This builder for chaining. */ @java.lang.Deprecated @@ -808,7 +808,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -838,7 +838,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return The zone. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return The bytes for zone. */ @java.lang.Deprecated @@ -894,7 +894,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @param value The zone to set. * @return This builder for chaining. */ @@ -921,7 +921,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return This builder for chaining. */ @java.lang.Deprecated @@ -944,7 +944,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -972,7 +972,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return The clusterId. */ @java.lang.Deprecated @@ -998,7 +998,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1024,7 +1024,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1049,7 +1049,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1070,7 +1070,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java index 525d814a2171..dd31863e9900 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListNodePoolsRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface ListNodePoolsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface ListNodePoolsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2808 + * google/container/v1/cluster_service.proto;l=2823 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface ListNodePoolsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface ListNodePoolsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2814 + * google/container/v1/cluster_service.proto;l=2829 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface ListNodePoolsRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface ListNodePoolsRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.ListNodePoolsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2818 + * google/container/v1/cluster_service.proto;l=2833 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java index 04d512ec3641..8cd6c1d01b01 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequest.java @@ -83,7 +83,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return The projectId. */ @java.lang.Override @@ -111,7 +111,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return The bytes for projectId. */ @java.lang.Override @@ -143,7 +143,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return The zone. */ @java.lang.Override @@ -172,7 +172,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return The bytes for zone. */ @java.lang.Override @@ -628,7 +628,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return The projectId. */ @java.lang.Deprecated @@ -655,7 +655,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -682,7 +682,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @param value The projectId to set. * @return This builder for chaining. */ @@ -708,7 +708,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return This builder for chaining. */ @java.lang.Deprecated @@ -730,7 +730,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -760,7 +760,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return The zone. */ @java.lang.Deprecated @@ -788,7 +788,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return The bytes for zone. */ @java.lang.Deprecated @@ -816,7 +816,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @param value The zone to set. * @return This builder for chaining. */ @@ -843,7 +843,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return This builder for chaining. */ @java.lang.Deprecated @@ -866,7 +866,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @param value The bytes for zone to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java index 9dc50666ace6..837a68ed1284 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/ListOperationsRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface ListOperationsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface ListOperationsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2653 + * google/container/v1/cluster_service.proto;l=2668 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface ListOperationsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface ListOperationsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.ListOperationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2659 + * google/container/v1/cluster_service.proto;l=2674 * @return The bytes for zone. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java index 4b4003bc69a4..4340a8d491c0 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePool.java @@ -51,6 +51,7 @@ private NodePool() { status_ = 0; statusMessage_ = ""; conditions_ = java.util.Collections.emptyList(); + etag_ = ""; } @java.lang.Override @@ -5606,7 +5607,7 @@ public com.google.container.v1.NodePool.Status getStatus() { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return The statusMessage. */ @java.lang.Override @@ -5634,7 +5635,7 @@ public java.lang.String getStatusMessage() { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return The bytes for statusMessage. */ @java.lang.Override @@ -6041,6 +6042,59 @@ public com.google.container.v1.NodePool.UpdateInfoOrBuilder getUpdateInfoOrBuild return getUpdateInfo(); } + public static final int ETAG_FIELD_NUMBER = 110; + private volatile java.lang.Object etag_; + /** + * + * + *
+   * This checksum is computed by the server based on the value of node pool
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 110; + * + * @return The etag. + */ + @java.lang.Override + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } + } + /** + * + * + *
+   * This checksum is computed by the server based on the value of node pool
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 110; + * + * @return The bytes for etag. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override @@ -6109,6 +6163,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (updateInfo_ != null) { output.writeMessage(109, getUpdateInfo()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 110, etag_); + } getUnknownFields().writeTo(output); } @@ -6182,6 +6239,9 @@ public int getSerializedSize() { if (updateInfo_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(109, getUpdateInfo()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(110, etag_); + } size += getUnknownFields().getSerializedSize(); memoizedSize = size; return size; @@ -6239,6 +6299,7 @@ public boolean equals(final java.lang.Object obj) { if (hasUpdateInfo()) { if (!getUpdateInfo().equals(other.getUpdateInfo())) return false; } + if (!getEtag().equals(other.getEtag())) return false; if (!getUnknownFields().equals(other.getUnknownFields())) return false; return true; } @@ -6308,6 +6369,8 @@ public int hashCode() { hash = (37 * hash) + UPDATE_INFO_FIELD_NUMBER; hash = (53 * hash) + getUpdateInfo().hashCode(); } + hash = (37 * hash) + ETAG_FIELD_NUMBER; + hash = (53 * hash) + getEtag().hashCode(); hash = (29 * hash) + getUnknownFields().hashCode(); memoizedHashCode = hash; return hash; @@ -6523,6 +6586,8 @@ public Builder clear() { updateInfo_ = null; updateInfoBuilder_ = null; } + etag_ = ""; + return this; } @@ -6616,6 +6681,7 @@ public com.google.container.v1.NodePool buildPartial() { } else { result.updateInfo_ = updateInfoBuilder_.build(); } + result.etag_ = etag_; onBuilt(); return result; } @@ -6761,6 +6827,10 @@ public Builder mergeFrom(com.google.container.v1.NodePool other) { if (other.hasUpdateInfo()) { mergeUpdateInfo(other.getUpdateInfo()); } + if (!other.getEtag().isEmpty()) { + etag_ = other.etag_; + onChanged(); + } this.mergeUnknownFields(other.getUnknownFields()); onChanged(); return this; @@ -6905,6 +6975,12 @@ public Builder mergeFrom( break; } // case 874 + case 882: + { + etag_ = input.readStringRequireUtf8(); + + break; + } // case 882 default: { if (!super.parseUnknownField(input, extensionRegistry, tag)) { @@ -8218,7 +8294,7 @@ public Builder clearStatus() { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return The statusMessage. */ @java.lang.Deprecated @@ -8245,7 +8321,7 @@ public java.lang.String getStatusMessage() { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return The bytes for statusMessage. */ @java.lang.Deprecated @@ -8272,7 +8348,7 @@ public com.google.protobuf.ByteString getStatusMessageBytes() { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @param value The statusMessage to set. * @return This builder for chaining. */ @@ -8298,7 +8374,7 @@ public Builder setStatusMessage(java.lang.String value) { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return This builder for chaining. */ @java.lang.Deprecated @@ -8320,7 +8396,7 @@ public Builder clearStatusMessage() { * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @param value The bytes for statusMessage to set. * @return This builder for chaining. */ @@ -9897,6 +9973,122 @@ public com.google.container.v1.NodePool.UpdateInfoOrBuilder getUpdateInfoOrBuild return updateInfoBuilder_; } + private java.lang.Object etag_ = ""; + /** + * + * + *
+     * This checksum is computed by the server based on the value of node pool
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 110; + * + * @return The etag. + */ + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of node pool
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 110; + * + * @return The bytes for etag. + */ + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of node pool
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 110; + * + * @param value The etag to set. + * @return This builder for chaining. + */ + public Builder setEtag(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + etag_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of node pool
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 110; + * + * @return This builder for chaining. + */ + public Builder clearEtag() { + + etag_ = getDefaultInstance().getEtag(); + onChanged(); + return this; + } + /** + * + * + *
+     * This checksum is computed by the server based on the value of node pool
+     * fields, and may be sent on update requests to ensure the client has an
+     * up-to-date value before proceeding.
+     * 
+ * + * string etag = 110; + * + * @param value The bytes for etag to set. + * @return This builder for chaining. + */ + public Builder setEtagBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + etag_ = value; + onChanged(); + return this; + } + @java.lang.Override public final Builder setUnknownFields(final com.google.protobuf.UnknownFieldSet unknownFields) { return super.setUnknownFields(unknownFields); diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java index cf8e8d130feb..d89eff8a0309 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/NodePoolOrBuilder.java @@ -370,7 +370,7 @@ public interface NodePoolOrBuilder * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return The statusMessage. */ @java.lang.Deprecated @@ -387,7 +387,7 @@ public interface NodePoolOrBuilder * string status_message = 104 [deprecated = true]; * * @deprecated google.container.v1.NodePool.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=3103 + * google/container/v1/cluster_service.proto;l=3118 * @return The bytes for statusMessage. */ @java.lang.Deprecated @@ -682,4 +682,33 @@ public interface NodePoolOrBuilder * */ com.google.container.v1.NodePool.UpdateInfoOrBuilder getUpdateInfoOrBuilder(); + + /** + * + * + *
+   * This checksum is computed by the server based on the value of node pool
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 110; + * + * @return The etag. + */ + java.lang.String getEtag(); + /** + * + * + *
+   * This checksum is computed by the server based on the value of node pool
+   * fields, and may be sent on update requests to ensure the client has an
+   * up-to-date value before proceeding.
+   * 
+ * + * string etag = 110; + * + * @return The bytes for etag. + */ + com.google.protobuf.ByteString getEtagBytes(); } diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java index 70645abaf03a..62dde9a4239b 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/Operation.java @@ -809,7 +809,7 @@ public com.google.protobuf.ByteString getNameBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return The zone. */ @java.lang.Override @@ -837,7 +837,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return The bytes for zone. */ @java.lang.Override @@ -990,7 +990,7 @@ public com.google.protobuf.ByteString getDetailBytes() { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return The statusMessage. */ @java.lang.Override @@ -1019,7 +1019,7 @@ public java.lang.String getStatusMessage() { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return The bytes for statusMessage. */ @java.lang.Override @@ -2443,7 +2443,7 @@ public Builder setNameBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return The zone. */ @java.lang.Deprecated @@ -2470,7 +2470,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return The bytes for zone. */ @java.lang.Deprecated @@ -2497,7 +2497,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @param value The zone to set. * @return This builder for chaining. */ @@ -2523,7 +2523,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2545,7 +2545,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -2863,7 +2863,7 @@ public Builder setDetailBytes(com.google.protobuf.ByteString value) { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return The statusMessage. */ @java.lang.Deprecated @@ -2891,7 +2891,7 @@ public java.lang.String getStatusMessage() { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return The bytes for statusMessage. */ @java.lang.Deprecated @@ -2919,7 +2919,7 @@ public com.google.protobuf.ByteString getStatusMessageBytes() { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @param value The statusMessage to set. * @return This builder for chaining. */ @@ -2946,7 +2946,7 @@ public Builder setStatusMessage(java.lang.String value) { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2969,7 +2969,7 @@ public Builder clearStatusMessage() { * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @param value The bytes for statusMessage to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java index 81aa9cc60e57..80e547f2ea8d 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/OperationOrBuilder.java @@ -60,7 +60,7 @@ public interface OperationOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return The zone. */ @java.lang.Deprecated @@ -77,7 +77,7 @@ public interface OperationOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.Operation.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2071 + * google/container/v1/cluster_service.proto;l=2081 * @return The bytes for zone. */ @java.lang.Deprecated @@ -171,7 +171,7 @@ public interface OperationOrBuilder * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return The statusMessage. */ @java.lang.Deprecated @@ -189,7 +189,7 @@ public interface OperationOrBuilder * * * @deprecated google.container.v1.Operation.status_message is deprecated. See - * google/container/v1/cluster_service.proto;l=2084 + * google/container/v1/cluster_service.proto;l=2094 * @return The bytes for statusMessage. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java index 7b8535435511..e89fff757c41 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequest.java @@ -88,7 +88,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return The projectId. */ @java.lang.Override @@ -116,7 +116,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return The bytes for projectId. */ @java.lang.Override @@ -148,7 +148,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return The zone. */ @java.lang.Override @@ -177,7 +177,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return The bytes for zone. */ @java.lang.Override @@ -207,7 +207,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return The clusterId. */ @java.lang.Override @@ -234,7 +234,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return The bytes for clusterId. */ @java.lang.Override @@ -264,7 +264,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3379 + * google/container/v1/cluster_service.proto;l=3399 * @return The nodePoolId. */ @java.lang.Override @@ -291,7 +291,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3379 + * google/container/v1/cluster_service.proto;l=3399 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -835,7 +835,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return The projectId. */ @java.lang.Deprecated @@ -862,7 +862,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -889,7 +889,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @param value The projectId to set. * @return This builder for chaining. */ @@ -915,7 +915,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return This builder for chaining. */ @java.lang.Deprecated @@ -937,7 +937,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -967,7 +967,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return The zone. */ @java.lang.Deprecated @@ -995,7 +995,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1023,7 +1023,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @param value The zone to set. * @return This builder for chaining. */ @@ -1050,7 +1050,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1073,7 +1073,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1101,7 +1101,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return The clusterId. */ @java.lang.Deprecated @@ -1127,7 +1127,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1153,7 +1153,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1178,7 +1178,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1199,7 +1199,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -1227,7 +1227,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. - * See google/container/v1/cluster_service.proto;l=3379 + * See google/container/v1/cluster_service.proto;l=3399 * @return The nodePoolId. */ @java.lang.Deprecated @@ -1253,7 +1253,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. - * See google/container/v1/cluster_service.proto;l=3379 + * See google/container/v1/cluster_service.proto;l=3399 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -1279,7 +1279,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. - * See google/container/v1/cluster_service.proto;l=3379 + * See google/container/v1/cluster_service.proto;l=3399 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -1304,7 +1304,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. - * See google/container/v1/cluster_service.proto;l=3379 + * See google/container/v1/cluster_service.proto;l=3399 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1325,7 +1325,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. - * See google/container/v1/cluster_service.proto;l=3379 + * See google/container/v1/cluster_service.proto;l=3399 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java index 8eb86a5cbff5..93fa92ba6a8f 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/RollbackNodePoolUpgradeRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3365 + * google/container/v1/cluster_service.proto;l=3385 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3371 + * google/container/v1/cluster_service.proto;l=3391 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3375 + * google/container/v1/cluster_service.proto;l=3395 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3379 + * google/container/v1/cluster_service.proto;l=3399 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface RollbackNodePoolUpgradeRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.RollbackNodePoolUpgradeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3379 + * google/container/v1/cluster_service.proto;l=3399 * @return The bytes for nodePoolId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java index 7b0f69aca598..3258033a1043 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return The bytes for clusterId. */ @java.lang.Override @@ -797,7 +797,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return The projectId. */ @java.lang.Deprecated @@ -824,7 +824,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -851,7 +851,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @param value The projectId to set. * @return This builder for chaining. */ @@ -877,7 +877,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return This builder for chaining. */ @java.lang.Deprecated @@ -899,7 +899,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -929,7 +929,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return The zone. */ @java.lang.Deprecated @@ -957,7 +957,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return The bytes for zone. */ @java.lang.Deprecated @@ -985,7 +985,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @param value The zone to set. * @return This builder for chaining. */ @@ -1012,7 +1012,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1035,7 +1035,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1063,7 +1063,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return The clusterId. */ @java.lang.Deprecated @@ -1089,7 +1089,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1115,7 +1115,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1140,7 +1140,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1161,7 +1161,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java index 51c2614f0cc8..533880592cc2 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetAddonsConfigRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetAddonsConfigRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetAddonsConfigRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2442 + * google/container/v1/cluster_service.proto;l=2457 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetAddonsConfigRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetAddonsConfigRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2448 + * google/container/v1/cluster_service.proto;l=2463 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetAddonsConfigRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetAddonsConfigRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetAddonsConfigRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2452 + * google/container/v1/cluster_service.proto;l=2467 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java index de78a0559a12..4203c50d6bc8 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequest.java @@ -98,7 +98,7 @@ protected com.google.protobuf.MapField internalGetMapField(int number) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return The projectId. */ @java.lang.Override @@ -126,7 +126,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return The bytes for projectId. */ @java.lang.Override @@ -158,7 +158,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return The zone. */ @java.lang.Override @@ -187,7 +187,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return The bytes for zone. */ @java.lang.Override @@ -217,7 +217,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return The clusterId. */ @java.lang.Override @@ -244,7 +244,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return The bytes for clusterId. */ @java.lang.Override @@ -962,7 +962,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return The projectId. */ @java.lang.Deprecated @@ -989,7 +989,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -1016,7 +1016,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @param value The projectId to set. * @return This builder for chaining. */ @@ -1042,7 +1042,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1064,7 +1064,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -1094,7 +1094,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return The zone. */ @java.lang.Deprecated @@ -1122,7 +1122,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1150,7 +1150,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @param value The zone to set. * @return This builder for chaining. */ @@ -1177,7 +1177,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1200,7 +1200,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1228,7 +1228,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return The clusterId. */ @java.lang.Deprecated @@ -1254,7 +1254,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1280,7 +1280,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1305,7 +1305,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1326,7 +1326,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java index ef5abcc26ea2..af0ed68f6ae6 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLabelsRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetLabelsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetLabelsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3557 + * google/container/v1/cluster_service.proto;l=3577 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetLabelsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetLabelsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3563 + * google/container/v1/cluster_service.proto;l=3583 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetLabelsRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetLabelsRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLabelsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3567 + * google/container/v1/cluster_service.proto;l=3587 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java index 847177e011f5..38a0f890d04e 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return The bytes for clusterId. */ @java.lang.Override @@ -747,7 +747,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return The projectId. */ @java.lang.Deprecated @@ -774,7 +774,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -801,7 +801,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @param value The projectId to set. * @return This builder for chaining. */ @@ -827,7 +827,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return This builder for chaining. */ @java.lang.Deprecated @@ -849,7 +849,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -879,7 +879,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return The zone. */ @java.lang.Deprecated @@ -907,7 +907,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return The bytes for zone. */ @java.lang.Deprecated @@ -935,7 +935,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @param value The zone to set. * @return This builder for chaining. */ @@ -962,7 +962,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return This builder for chaining. */ @java.lang.Deprecated @@ -985,7 +985,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1013,7 +1013,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return The clusterId. */ @java.lang.Deprecated @@ -1039,7 +1039,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1065,7 +1065,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1090,7 +1090,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1111,7 +1111,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java index c91f3f55baef..83be1494235e 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLegacyAbacRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetLegacyAbacRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetLegacyAbacRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3591 + * google/container/v1/cluster_service.proto;l=3611 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetLegacyAbacRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetLegacyAbacRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3597 + * google/container/v1/cluster_service.proto;l=3617 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetLegacyAbacRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetLegacyAbacRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLegacyAbacRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3601 + * google/container/v1/cluster_service.proto;l=3621 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java index eb5b63f934ff..eef51d5e67e0 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return The bytes for clusterId. */ @java.lang.Override @@ -831,7 +831,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return The projectId. */ @java.lang.Deprecated @@ -858,7 +858,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -885,7 +885,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @param value The projectId to set. * @return This builder for chaining. */ @@ -911,7 +911,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return This builder for chaining. */ @java.lang.Deprecated @@ -933,7 +933,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -963,7 +963,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return The zone. */ @java.lang.Deprecated @@ -991,7 +991,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1019,7 +1019,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @param value The zone to set. * @return This builder for chaining. */ @@ -1046,7 +1046,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1069,7 +1069,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1097,7 +1097,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return The clusterId. */ @java.lang.Deprecated @@ -1123,7 +1123,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1149,7 +1149,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1174,7 +1174,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1195,7 +1195,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java index 380410595164..8d2b84f99a70 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLocationsRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetLocationsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetLocationsRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2468 + * google/container/v1/cluster_service.proto;l=2483 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetLocationsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetLocationsRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2474 + * google/container/v1/cluster_service.proto;l=2489 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetLocationsRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetLocationsRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLocationsRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2478 + * google/container/v1/cluster_service.proto;l=2493 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java index aac16cc6c36e..9becfb8aea35 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return The bytes for clusterId. */ @java.lang.Override @@ -795,7 +795,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return The projectId. */ @java.lang.Deprecated @@ -822,7 +822,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -849,7 +849,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @param value The projectId to set. * @return This builder for chaining. */ @@ -875,7 +875,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return This builder for chaining. */ @java.lang.Deprecated @@ -897,7 +897,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -927,7 +927,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return The zone. */ @java.lang.Deprecated @@ -955,7 +955,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return The bytes for zone. */ @java.lang.Deprecated @@ -983,7 +983,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @param value The zone to set. * @return This builder for chaining. */ @@ -1010,7 +1010,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1033,7 +1033,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1061,7 +1061,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return The clusterId. */ @java.lang.Deprecated @@ -1087,7 +1087,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1113,7 +1113,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1138,7 +1138,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1159,7 +1159,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java index 560e90a43120..dbb6fc54f7da 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetLoggingServiceRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetLoggingServiceRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetLoggingServiceRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2372 + * google/container/v1/cluster_service.proto;l=2387 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetLoggingServiceRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetLoggingServiceRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2378 + * google/container/v1/cluster_service.proto;l=2393 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetLoggingServiceRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetLoggingServiceRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetLoggingServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2382 + * google/container/v1/cluster_service.proto;l=2397 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java index caf3efcaea86..0db43b683898 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequest.java @@ -270,7 +270,7 @@ private Action(int value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return The projectId. */ @java.lang.Override @@ -298,7 +298,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return The bytes for projectId. */ @java.lang.Override @@ -330,7 +330,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return The zone. */ @java.lang.Override @@ -359,7 +359,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return The bytes for zone. */ @java.lang.Override @@ -389,7 +389,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return The clusterId. */ @java.lang.Override @@ -416,7 +416,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return The bytes for clusterId. */ @java.lang.Override @@ -1038,7 +1038,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return The projectId. */ @java.lang.Deprecated @@ -1065,7 +1065,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -1092,7 +1092,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @param value The projectId to set. * @return This builder for chaining. */ @@ -1118,7 +1118,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1140,7 +1140,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -1170,7 +1170,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return The zone. */ @java.lang.Deprecated @@ -1198,7 +1198,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1226,7 +1226,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @param value The zone to set. * @return This builder for chaining. */ @@ -1253,7 +1253,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1276,7 +1276,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1304,7 +1304,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return The clusterId. */ @java.lang.Deprecated @@ -1330,7 +1330,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1356,7 +1356,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1381,7 +1381,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1402,7 +1402,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java index ebb0299e5bff..21a91cb0230b 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMasterAuthRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetMasterAuthRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetMasterAuthRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2551 + * google/container/v1/cluster_service.proto;l=2566 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetMasterAuthRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetMasterAuthRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2557 + * google/container/v1/cluster_service.proto;l=2572 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetMasterAuthRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetMasterAuthRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMasterAuthRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2561 + * google/container/v1/cluster_service.proto;l=2576 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java index 19dce592ee3e..a2926467c163 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return The bytes for clusterId. */ @java.lang.Override @@ -795,7 +795,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return The projectId. */ @java.lang.Deprecated @@ -822,7 +822,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -849,7 +849,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @param value The projectId to set. * @return This builder for chaining. */ @@ -875,7 +875,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return This builder for chaining. */ @java.lang.Deprecated @@ -897,7 +897,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -927,7 +927,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return The zone. */ @java.lang.Deprecated @@ -955,7 +955,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return The bytes for zone. */ @java.lang.Deprecated @@ -983,7 +983,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @param value The zone to set. * @return This builder for chaining. */ @@ -1010,7 +1010,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1033,7 +1033,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1061,7 +1061,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return The clusterId. */ @java.lang.Deprecated @@ -1087,7 +1087,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1113,7 +1113,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1138,7 +1138,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1159,7 +1159,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java index 5d90ad304619..2eae995a1f64 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetMonitoringServiceRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetMonitoringServiceRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetMonitoringServiceRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2407 + * google/container/v1/cluster_service.proto;l=2422 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetMonitoringServiceRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetMonitoringServiceRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2413 + * google/container/v1/cluster_service.proto;l=2428 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetMonitoringServiceRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetMonitoringServiceRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetMonitoringServiceRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2417 + * google/container/v1/cluster_service.proto;l=2432 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java index 0ea359721209..6cb468fd004d 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return The bytes for clusterId. */ @java.lang.Override @@ -795,7 +795,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return The projectId. */ @java.lang.Deprecated @@ -822,7 +822,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -849,7 +849,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @param value The projectId to set. * @return This builder for chaining. */ @@ -875,7 +875,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return This builder for chaining. */ @java.lang.Deprecated @@ -897,7 +897,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -927,7 +927,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return The zone. */ @java.lang.Deprecated @@ -955,7 +955,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return The bytes for zone. */ @java.lang.Deprecated @@ -983,7 +983,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @param value The zone to set. * @return This builder for chaining. */ @@ -1010,7 +1010,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1033,7 +1033,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1061,7 +1061,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return The clusterId. */ @java.lang.Deprecated @@ -1087,7 +1087,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1113,7 +1113,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1138,7 +1138,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1159,7 +1159,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java index f4791a6a4619..4cc10276b076 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNetworkPolicyRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetNetworkPolicyRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetNetworkPolicyRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3726 + * google/container/v1/cluster_service.proto;l=3746 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetNetworkPolicyRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetNetworkPolicyRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3732 + * google/container/v1/cluster_service.proto;l=3752 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetNetworkPolicyRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetNetworkPolicyRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNetworkPolicyRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3736 + * google/container/v1/cluster_service.proto;l=3756 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java index b225c3f39ea6..54fd299493cc 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return The bytes for clusterId. */ @java.lang.Override @@ -261,7 +261,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return The nodePoolId. */ @java.lang.Override @@ -288,7 +288,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -878,7 +878,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return The projectId. */ @java.lang.Deprecated @@ -905,7 +905,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -932,7 +932,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @param value The projectId to set. * @return This builder for chaining. */ @@ -958,7 +958,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return This builder for chaining. */ @java.lang.Deprecated @@ -980,7 +980,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -1010,7 +1010,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return The zone. */ @java.lang.Deprecated @@ -1038,7 +1038,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1066,7 +1066,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @param value The zone to set. * @return This builder for chaining. */ @@ -1093,7 +1093,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1116,7 +1116,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1144,7 +1144,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return The clusterId. */ @java.lang.Deprecated @@ -1170,7 +1170,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1196,7 +1196,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1221,7 +1221,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1242,7 +1242,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -1270,7 +1270,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return The nodePoolId. */ @java.lang.Deprecated @@ -1296,7 +1296,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -1322,7 +1322,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -1347,7 +1347,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1368,7 +1368,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java index cc1d5b3a9862..964619f48308 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolAutoscalingRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2342 + * google/container/v1/cluster_service.proto;l=2357 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2348 + * google/container/v1/cluster_service.proto;l=2363 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2352 + * google/container/v1/cluster_service.proto;l=2367 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface SetNodePoolAutoscalingRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolAutoscalingRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2356 + * google/container/v1/cluster_service.proto;l=2371 * @return The bytes for nodePoolId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java index 091d63934bfd..f08c46bb3288 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequest.java @@ -86,7 +86,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return The projectId. */ @java.lang.Override @@ -114,7 +114,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return The bytes for projectId. */ @java.lang.Override @@ -146,7 +146,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return The zone. */ @java.lang.Override @@ -175,7 +175,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return The bytes for zone. */ @java.lang.Override @@ -205,7 +205,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return The clusterId. */ @java.lang.Override @@ -232,7 +232,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return The bytes for clusterId. */ @java.lang.Override @@ -262,7 +262,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return The nodePoolId. */ @java.lang.Override @@ -289,7 +289,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -879,7 +879,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return The projectId. */ @java.lang.Deprecated @@ -906,7 +906,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -933,7 +933,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @param value The projectId to set. * @return This builder for chaining. */ @@ -959,7 +959,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return This builder for chaining. */ @java.lang.Deprecated @@ -981,7 +981,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -1011,7 +1011,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return The zone. */ @java.lang.Deprecated @@ -1039,7 +1039,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1067,7 +1067,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @param value The zone to set. * @return This builder for chaining. */ @@ -1094,7 +1094,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1117,7 +1117,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1145,7 +1145,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return The clusterId. */ @java.lang.Deprecated @@ -1171,7 +1171,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1197,7 +1197,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1222,7 +1222,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1243,7 +1243,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -1271,7 +1271,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return The nodePoolId. */ @java.lang.Deprecated @@ -1297,7 +1297,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -1323,7 +1323,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -1348,7 +1348,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1369,7 +1369,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java index d77aa2f96ef0..2094d1ef2994 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolManagementRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3294 + * google/container/v1/cluster_service.proto;l=3314 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3300 + * google/container/v1/cluster_service.proto;l=3320 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3304 + * google/container/v1/cluster_service.proto;l=3324 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface SetNodePoolManagementRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolManagementRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3308 + * google/container/v1/cluster_service.proto;l=3328 * @return The bytes for nodePoolId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java index 297f2c984948..98770249ba9c 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return The bytes for clusterId. */ @java.lang.Override @@ -261,7 +261,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return The nodePoolId. */ @java.lang.Override @@ -288,7 +288,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -827,7 +827,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return The projectId. */ @java.lang.Deprecated @@ -854,7 +854,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -881,7 +881,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @param value The projectId to set. * @return This builder for chaining. */ @@ -907,7 +907,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return This builder for chaining. */ @java.lang.Deprecated @@ -929,7 +929,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -959,7 +959,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return The zone. */ @java.lang.Deprecated @@ -987,7 +987,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return The bytes for zone. */ @java.lang.Deprecated @@ -1015,7 +1015,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @param value The zone to set. * @return This builder for chaining. */ @@ -1042,7 +1042,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1065,7 +1065,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1093,7 +1093,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return The clusterId. */ @java.lang.Deprecated @@ -1119,7 +1119,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1145,7 +1145,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1170,7 +1170,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1191,7 +1191,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -1219,7 +1219,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return The nodePoolId. */ @java.lang.Deprecated @@ -1245,7 +1245,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -1271,7 +1271,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -1296,7 +1296,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1317,7 +1317,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java index af1419578b9c..527aa738f900 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/SetNodePoolSizeRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3324 + * google/container/v1/cluster_service.proto;l=3344 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3330 + * google/container/v1/cluster_service.proto;l=3350 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3334 + * google/container/v1/cluster_service.proto;l=3354 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface SetNodePoolSizeRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.SetNodePoolSizeRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3338 + * google/container/v1/cluster_service.proto;l=3358 * @return The bytes for nodePoolId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java index c67b8e1a1c54..a5d1dfb9e5d5 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return The bytes for clusterId. */ @java.lang.Override @@ -747,7 +747,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return The projectId. */ @java.lang.Deprecated @@ -774,7 +774,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -801,7 +801,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @param value The projectId to set. * @return This builder for chaining. */ @@ -827,7 +827,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return This builder for chaining. */ @java.lang.Deprecated @@ -849,7 +849,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -879,7 +879,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return The zone. */ @java.lang.Deprecated @@ -907,7 +907,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return The bytes for zone. */ @java.lang.Deprecated @@ -935,7 +935,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @param value The zone to set. * @return This builder for chaining. */ @@ -962,7 +962,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return This builder for chaining. */ @java.lang.Deprecated @@ -985,7 +985,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1013,7 +1013,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return The clusterId. */ @java.lang.Deprecated @@ -1039,7 +1039,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1065,7 +1065,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1090,7 +1090,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1111,7 +1111,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java index d4dfbd04e606..a1904682a6f2 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StartIPRotationRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface StartIPRotationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface StartIPRotationRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3617 + * google/container/v1/cluster_service.proto;l=3637 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface StartIPRotationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface StartIPRotationRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=3623 + * google/container/v1/cluster_service.proto;l=3643 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface StartIPRotationRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface StartIPRotationRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.StartIPRotationRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=3627 + * google/container/v1/cluster_service.proto;l=3647 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusCondition.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusCondition.java index e1aec9cf8d84..c02f4cb58e92 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusCondition.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusCondition.java @@ -334,7 +334,7 @@ private Code(int value) { * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return The enum numeric value on the wire for code. */ @java.lang.Override @@ -353,7 +353,7 @@ public int getCodeValue() { * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return The code. */ @java.lang.Override @@ -832,7 +832,7 @@ public Builder mergeFrom( * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return The enum numeric value on the wire for code. */ @java.lang.Override @@ -851,7 +851,7 @@ public int getCodeValue() { * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @param value The enum numeric value on the wire for code to set. * @return This builder for chaining. */ @@ -873,7 +873,7 @@ public Builder setCodeValue(int value) { * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return The code. */ @java.lang.Override @@ -895,7 +895,7 @@ public com.google.container.v1.StatusCondition.Code getCode() { * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @param value The code to set. * @return This builder for chaining. */ @@ -920,7 +920,7 @@ public Builder setCode(com.google.container.v1.StatusCondition.Code value) { * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return This builder for chaining. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusConditionOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusConditionOrBuilder.java index d9e8cacba133..798eb5089d1e 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusConditionOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/StatusConditionOrBuilder.java @@ -34,7 +34,7 @@ public interface StatusConditionOrBuilder * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return The enum numeric value on the wire for code. */ @java.lang.Deprecated @@ -50,7 +50,7 @@ public interface StatusConditionOrBuilder * .google.container.v1.StatusCondition.Code code = 1 [deprecated = true]; * * @deprecated google.container.v1.StatusCondition.code is deprecated. See - * google/container/v1/cluster_service.proto;l=3802 + * google/container/v1/cluster_service.proto;l=3822 * @return The code. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java index 386c37287081..f457ec6f7188 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequest.java @@ -84,7 +84,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return The projectId. */ @java.lang.Override @@ -112,7 +112,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return The bytes for projectId. */ @java.lang.Override @@ -144,7 +144,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return The zone. */ @java.lang.Override @@ -173,7 +173,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return The bytes for zone. */ @java.lang.Override @@ -203,7 +203,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return The clusterId. */ @java.lang.Override @@ -230,7 +230,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return The bytes for clusterId. */ @java.lang.Override @@ -789,7 +789,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return The projectId. */ @java.lang.Deprecated @@ -816,7 +816,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -843,7 +843,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @param value The projectId to set. * @return This builder for chaining. */ @@ -869,7 +869,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return This builder for chaining. */ @java.lang.Deprecated @@ -891,7 +891,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -921,7 +921,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return The zone. */ @java.lang.Deprecated @@ -949,7 +949,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return The bytes for zone. */ @java.lang.Deprecated @@ -977,7 +977,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @param value The zone to set. * @return This builder for chaining. */ @@ -1004,7 +1004,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1027,7 +1027,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1055,7 +1055,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return The clusterId. */ @java.lang.Deprecated @@ -1081,7 +1081,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1107,7 +1107,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1132,7 +1132,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1153,7 +1153,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java index b38d352ae303..20e060edb71f 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateClusterRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface UpdateClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface UpdateClusterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2214 + * google/container/v1/cluster_service.proto;l=2224 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface UpdateClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface UpdateClusterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2220 + * google/container/v1/cluster_service.proto;l=2230 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface UpdateClusterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface UpdateClusterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateClusterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2224 + * google/container/v1/cluster_service.proto;l=2234 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java index a9cd97641fe3..82cceb274f75 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequest.java @@ -85,7 +85,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return The projectId. */ @java.lang.Override @@ -113,7 +113,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return The bytes for projectId. */ @java.lang.Override @@ -145,7 +145,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return The zone. */ @java.lang.Override @@ -174,7 +174,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return The bytes for zone. */ @java.lang.Override @@ -204,7 +204,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return The clusterId. */ @java.lang.Override @@ -231,7 +231,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return The bytes for clusterId. */ @java.lang.Override @@ -792,7 +792,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return The projectId. */ @java.lang.Deprecated @@ -819,7 +819,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -846,7 +846,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @param value The projectId to set. * @return This builder for chaining. */ @@ -872,7 +872,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return This builder for chaining. */ @java.lang.Deprecated @@ -894,7 +894,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -924,7 +924,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return The zone. */ @java.lang.Deprecated @@ -952,7 +952,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return The bytes for zone. */ @java.lang.Deprecated @@ -980,7 +980,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @param value The zone to set. * @return This builder for chaining. */ @@ -1007,7 +1007,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1030,7 +1030,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -1058,7 +1058,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return The clusterId. */ @java.lang.Deprecated @@ -1084,7 +1084,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -1110,7 +1110,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -1135,7 +1135,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return This builder for chaining. */ @java.lang.Deprecated @@ -1156,7 +1156,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java index 12bcd5cc8f97..24de78b55da5 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateMasterRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface UpdateMasterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface UpdateMasterRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2499 + * google/container/v1/cluster_service.proto;l=2514 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface UpdateMasterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface UpdateMasterRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2505 + * google/container/v1/cluster_service.proto;l=2520 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface UpdateMasterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface UpdateMasterRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateMasterRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2509 + * google/container/v1/cluster_service.proto;l=2524 * @return The bytes for clusterId. */ @java.lang.Deprecated diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java index a633339203ad..dd1fa8b1b2e0 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequest.java @@ -46,6 +46,7 @@ private UpdateNodePoolRequest() { imageType_ = ""; name_ = ""; locations_ = com.google.protobuf.LazyStringArrayList.EMPTY; + etag_ = ""; } @java.lang.Override @@ -88,7 +89,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return The projectId. */ @java.lang.Override @@ -116,7 +117,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return The bytes for projectId. */ @java.lang.Override @@ -148,7 +149,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return The zone. */ @java.lang.Override @@ -177,7 +178,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return The bytes for zone. */ @java.lang.Override @@ -207,7 +208,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return The clusterId. */ @java.lang.Override @@ -234,7 +235,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return The bytes for clusterId. */ @java.lang.Override @@ -264,7 +265,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return The nodePoolId. */ @java.lang.Override @@ -291,7 +292,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return The bytes for nodePoolId. */ @java.lang.Override @@ -1094,6 +1095,59 @@ public com.google.container.v1.VirtualNICOrBuilder getGvnicOrBuilder() { return getGvnic(); } + public static final int ETAG_FIELD_NUMBER = 30; + private volatile java.lang.Object etag_; + /** + * + * + *
+   * The current etag of the node pool.
+   * If an etag is provided and does not match the current etag of the node
+   * pool, update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 30; + * + * @return The etag. + */ + @java.lang.Override + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } + } + /** + * + * + *
+   * The current etag of the node pool.
+   * If an etag is provided and does not match the current etag of the node
+   * pool, update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 30; + * + * @return The bytes for etag. + */ + @java.lang.Override + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + public static final int FAST_SOCKET_FIELD_NUMBER = 31; private com.google.container.v1.FastSocket fastSocket_; /** @@ -1360,6 +1414,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io if (gvnic_ != null) { output.writeMessage(29, getGvnic()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 30, etag_); + } if (fastSocket_ != null) { output.writeMessage(31, getFastSocket()); } @@ -1444,6 +1501,9 @@ public int getSerializedSize() { if (gvnic_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(29, getGvnic()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(etag_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(30, etag_); + } if (fastSocket_ != null) { size += com.google.protobuf.CodedOutputStream.computeMessageSize(31, getFastSocket()); } @@ -1524,6 +1584,7 @@ public boolean equals(final java.lang.Object obj) { if (hasGvnic()) { if (!getGvnic().equals(other.getGvnic())) return false; } + if (!getEtag().equals(other.getEtag())) return false; if (hasFastSocket() != other.hasFastSocket()) return false; if (hasFastSocket()) { if (!getFastSocket().equals(other.getFastSocket())) return false; @@ -1613,6 +1674,8 @@ public int hashCode() { hash = (37 * hash) + GVNIC_FIELD_NUMBER; hash = (53 * hash) + getGvnic().hashCode(); } + hash = (37 * hash) + ETAG_FIELD_NUMBER; + hash = (53 * hash) + getEtag().hashCode(); if (hasFastSocket()) { hash = (37 * hash) + FAST_SOCKET_FIELD_NUMBER; hash = (53 * hash) + getFastSocket().hashCode(); @@ -1849,6 +1912,8 @@ public Builder clear() { gvnic_ = null; gvnicBuilder_ = null; } + etag_ = ""; + if (fastSocketBuilder_ == null) { fastSocket_ = null; } else { @@ -1968,6 +2033,7 @@ public com.google.container.v1.UpdateNodePoolRequest buildPartial() { } else { result.gvnic_ = gvnicBuilder_.build(); } + result.etag_ = etag_; if (fastSocketBuilder_ == null) { result.fastSocket_ = fastSocket_; } else { @@ -2108,6 +2174,10 @@ public Builder mergeFrom(com.google.container.v1.UpdateNodePoolRequest other) { if (other.hasGvnic()) { mergeGvnic(other.getGvnic()); } + if (!other.getEtag().isEmpty()) { + etag_ = other.etag_; + onChanged(); + } if (other.hasFastSocket()) { mergeFastSocket(other.getFastSocket()); } @@ -2264,6 +2334,12 @@ public Builder mergeFrom( break; } // case 234 + case 242: + { + etag_ = input.readStringRequireUtf8(); + + break; + } // case 242 case 250: { input.readMessage(getFastSocketFieldBuilder().getBuilder(), extensionRegistry); @@ -2321,7 +2397,7 @@ public Builder mergeFrom( * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return The projectId. */ @java.lang.Deprecated @@ -2348,7 +2424,7 @@ public java.lang.String getProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -2375,7 +2451,7 @@ public com.google.protobuf.ByteString getProjectIdBytes() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @param value The projectId to set. * @return This builder for chaining. */ @@ -2401,7 +2477,7 @@ public Builder setProjectId(java.lang.String value) { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2423,7 +2499,7 @@ public Builder clearProjectId() { * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @param value The bytes for projectId to set. * @return This builder for chaining. */ @@ -2453,7 +2529,7 @@ public Builder setProjectIdBytes(com.google.protobuf.ByteString value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return The zone. */ @java.lang.Deprecated @@ -2481,7 +2557,7 @@ public java.lang.String getZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return The bytes for zone. */ @java.lang.Deprecated @@ -2509,7 +2585,7 @@ public com.google.protobuf.ByteString getZoneBytes() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @param value The zone to set. * @return This builder for chaining. */ @@ -2536,7 +2612,7 @@ public Builder setZone(java.lang.String value) { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2559,7 +2635,7 @@ public Builder clearZone() { * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @param value The bytes for zone to set. * @return This builder for chaining. */ @@ -2587,7 +2663,7 @@ public Builder setZoneBytes(com.google.protobuf.ByteString value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return The clusterId. */ @java.lang.Deprecated @@ -2613,7 +2689,7 @@ public java.lang.String getClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -2639,7 +2715,7 @@ public com.google.protobuf.ByteString getClusterIdBytes() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @param value The clusterId to set. * @return This builder for chaining. */ @@ -2664,7 +2740,7 @@ public Builder setClusterId(java.lang.String value) { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2685,7 +2761,7 @@ public Builder clearClusterId() { * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @param value The bytes for clusterId to set. * @return This builder for chaining. */ @@ -2713,7 +2789,7 @@ public Builder setClusterIdBytes(com.google.protobuf.ByteString value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return The nodePoolId. */ @java.lang.Deprecated @@ -2739,7 +2815,7 @@ public java.lang.String getNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -2765,7 +2841,7 @@ public com.google.protobuf.ByteString getNodePoolIdBytes() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @param value The nodePoolId to set. * @return This builder for chaining. */ @@ -2790,7 +2866,7 @@ public Builder setNodePoolId(java.lang.String value) { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return This builder for chaining. */ @java.lang.Deprecated @@ -2811,7 +2887,7 @@ public Builder clearNodePoolId() { * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @param value The bytes for nodePoolId to set. * @return This builder for chaining. */ @@ -5486,6 +5562,122 @@ public com.google.container.v1.VirtualNICOrBuilder getGvnicOrBuilder() { return gvnicBuilder_; } + private java.lang.Object etag_ = ""; + /** + * + * + *
+     * The current etag of the node pool.
+     * If an etag is provided and does not match the current etag of the node
+     * pool, update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 30; + * + * @return The etag. + */ + public java.lang.String getEtag() { + java.lang.Object ref = etag_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + etag_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + * + * + *
+     * The current etag of the node pool.
+     * If an etag is provided and does not match the current etag of the node
+     * pool, update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 30; + * + * @return The bytes for etag. + */ + public com.google.protobuf.ByteString getEtagBytes() { + java.lang.Object ref = etag_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8((java.lang.String) ref); + etag_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + * + * + *
+     * The current etag of the node pool.
+     * If an etag is provided and does not match the current etag of the node
+     * pool, update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 30; + * + * @param value The etag to set. + * @return This builder for chaining. + */ + public Builder setEtag(java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + etag_ = value; + onChanged(); + return this; + } + /** + * + * + *
+     * The current etag of the node pool.
+     * If an etag is provided and does not match the current etag of the node
+     * pool, update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 30; + * + * @return This builder for chaining. + */ + public Builder clearEtag() { + + etag_ = getDefaultInstance().getEtag(); + onChanged(); + return this; + } + /** + * + * + *
+     * The current etag of the node pool.
+     * If an etag is provided and does not match the current etag of the node
+     * pool, update will be blocked and an ABORTED error will be returned.
+     * 
+ * + * string etag = 30; + * + * @param value The bytes for etag to set. + * @return This builder for chaining. + */ + public Builder setEtagBytes(com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + etag_ = value; + onChanged(); + return this; + } + private com.google.container.v1.FastSocket fastSocket_; private com.google.protobuf.SingleFieldBuilderV3< com.google.container.v1.FastSocket, diff --git a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java index 900f0b457e30..48336f4898c6 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java +++ b/java-container/proto-google-cloud-container-v1/src/main/java/com/google/container/v1/UpdateNodePoolRequestOrBuilder.java @@ -35,7 +35,7 @@ public interface UpdateNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return The projectId. */ @java.lang.Deprecated @@ -52,7 +52,7 @@ public interface UpdateNodePoolRequestOrBuilder * string project_id = 1 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.project_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2239 + * google/container/v1/cluster_service.proto;l=2249 * @return The bytes for projectId. */ @java.lang.Deprecated @@ -71,7 +71,7 @@ public interface UpdateNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return The zone. */ @java.lang.Deprecated @@ -89,7 +89,7 @@ public interface UpdateNodePoolRequestOrBuilder * string zone = 2 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.zone is deprecated. See - * google/container/v1/cluster_service.proto;l=2245 + * google/container/v1/cluster_service.proto;l=2255 * @return The bytes for zone. */ @java.lang.Deprecated @@ -106,7 +106,7 @@ public interface UpdateNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return The clusterId. */ @java.lang.Deprecated @@ -122,7 +122,7 @@ public interface UpdateNodePoolRequestOrBuilder * string cluster_id = 3 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.cluster_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2249 + * google/container/v1/cluster_service.proto;l=2259 * @return The bytes for clusterId. */ @java.lang.Deprecated @@ -139,7 +139,7 @@ public interface UpdateNodePoolRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return The nodePoolId. */ @java.lang.Deprecated @@ -155,7 +155,7 @@ public interface UpdateNodePoolRequestOrBuilder * string node_pool_id = 4 [deprecated = true]; * * @deprecated google.container.v1.UpdateNodePoolRequest.node_pool_id is deprecated. See - * google/container/v1/cluster_service.proto;l=2253 + * google/container/v1/cluster_service.proto;l=2263 * @return The bytes for nodePoolId. */ @java.lang.Deprecated @@ -729,6 +729,35 @@ public interface UpdateNodePoolRequestOrBuilder */ com.google.container.v1.VirtualNICOrBuilder getGvnicOrBuilder(); + /** + * + * + *
+   * The current etag of the node pool.
+   * If an etag is provided and does not match the current etag of the node
+   * pool, update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 30; + * + * @return The etag. + */ + java.lang.String getEtag(); + /** + * + * + *
+   * The current etag of the node pool.
+   * If an etag is provided and does not match the current etag of the node
+   * pool, update will be blocked and an ABORTED error will be returned.
+   * 
+ * + * string etag = 30; + * + * @return The bytes for etag. + */ + com.google.protobuf.ByteString getEtagBytes(); + /** * * diff --git a/java-container/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto b/java-container/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto index e422e2213d35..28303a65be37 100644 --- a/java-container/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto +++ b/java-container/proto-google-cloud-container-v1/src/main/proto/google/container/v1/cluster_service.proto @@ -1781,6 +1781,11 @@ message Cluster { // Node pool configs that apply to all auto-provisioned node pools // in autopilot clusters and node auto-provisioning enabled clusters. NodePoolAutoConfig node_pool_auto_config = 136; + + // This checksum is computed by the server based on the value of cluster + // fields, and may be sent on update requests to ensure the client has an + // up-to-date value before proceeding. + string etag = 139; } // Node pool configs that apply to all auto-provisioned node pools @@ -1979,6 +1984,11 @@ message ClusterUpdate { // The desired config of Gateway API on this cluster. GatewayAPIConfig desired_gateway_api_config = 114; + // The current etag of the cluster. + // If an etag is provided and does not match the current etag of the cluster, + // update will be blocked and an ABORTED error will be returned. + string etag = 115; + // The desired node pool logging configuration defaults for the cluster. NodePoolLoggingConfig desired_node_pool_logging_config = 116; @@ -2321,6 +2331,11 @@ message UpdateNodePoolRequest { // Enable or disable gvnic on the node pool. VirtualNIC gvnic = 29; + // The current etag of the node pool. + // If an etag is provided and does not match the current etag of the node + // pool, update will be blocked and an ABORTED error will be returned. + string etag = 30; + // Enable or disable NCCL fast socket for the node pool. FastSocket fast_socket = 31; @@ -3129,6 +3144,11 @@ message NodePool { // Output only. [Output only] Update info contains relevant information during a node // pool update. UpdateInfo update_info = 109 [(google.api.field_behavior) = OUTPUT_ONLY]; + + // This checksum is computed by the server based on the value of node pool + // fields, and may be sent on update requests to ensure the client has an + // up-to-date value before proceeding. + string etag = 110; } // NodeManagement defines the set of node management services turned on for the