Skip to content
This repository has been archived by the owner on Sep 16, 2023. It is now read-only.

fix!: revert bad publishing #663

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -199,7 +199,7 @@ Java is a registered trademark of Oracle and/or its affiliates.
[kokoro-badge-link-4]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-container/java8-win.html
[kokoro-badge-image-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-container/java11.svg
[kokoro-badge-link-5]: http://storage.googleapis.com/cloud-devrel-public/java/badges/java-container/java11.html
[stability-image]: https://img.shields.io/badge/stability-ga-green
[stability-image]: https://img.shields.io/badge/stability-unknown-red
[maven-version-image]: https://img.shields.io/maven-central/v/com.google.cloud/google-cloud-container.svg
[maven-version-link]: https://search.maven.org/search?q=g:com.google.cloud%20AND%20a:google-cloud-container&core=gav
[authentication]: https://github.com/googleapis/google-cloud-java#authentication
Expand Down
Expand Up @@ -697,6 +697,10 @@ public final UnaryCallable<UpdateClusterRequest, Operation> updateClusterCallabl
* .addAllLocations(new ArrayList<String>())
* .setWorkloadMetadataConfig(WorkloadMetadataConfig.newBuilder().build())
* .setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build())
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
* .setGcfsConfig(GcfsConfig.newBuilder().build())
* .setGvnic(VirtualNIC.newBuilder().build())
* .build();
* Operation response = clusterManagerClient.updateNodePool(request);
* }
Expand Down Expand Up @@ -729,6 +733,10 @@ public final Operation updateNodePool(UpdateNodePoolRequest request) {
* .addAllLocations(new ArrayList<String>())
* .setWorkloadMetadataConfig(WorkloadMetadataConfig.newBuilder().build())
* .setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build())
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
* .setGcfsConfig(GcfsConfig.newBuilder().build())
* .setGvnic(VirtualNIC.newBuilder().build())
* .build();
* ApiFuture<Operation> future =
* clusterManagerClient.updateNodePoolCallable().futureCall(request);
Expand Down Expand Up @@ -3146,7 +3154,9 @@ public final UnaryCallable<CompleteIPRotationRequest, Operation> completeIPRotat

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Sets the size for a specific node pool.
* Sets the size for a specific node pool. The new size will be used for all replicas, including
* future replicas created by modifying
* [NodePool.locations][google.container.v1.NodePool.locations].
*
* <p>Sample code:
*
Expand Down Expand Up @@ -3174,7 +3184,9 @@ public final Operation setNodePoolSize(SetNodePoolSizeRequest request) {

// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Sets the size for a specific node pool.
* Sets the size for a specific node pool. The new size will be used for all replicas, including
* future replicas created by modifying
* [NodePool.locations][google.container.v1.NodePool.locations].
*
* <p>Sample code:
*
Expand Down
Expand Up @@ -15,7 +15,9 @@
*/

/**
* The interfaces provided are listed below, along with usage samples.
* A client to Kubernetes Engine API
*
* <p>The interfaces provided are listed below, along with usage samples.
*
* <p>======================= ClusterManagerClient =======================
*
Expand Down
Expand Up @@ -601,6 +601,7 @@ public final UnaryCallable<UpdateClusterRequest, Operation> updateClusterCallabl
* .setLabels(NodeLabels.newBuilder().build())
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
* .setGcfsConfig(GcfsConfig.newBuilder().build())
* .setGvnic(VirtualNIC.newBuilder().build())
* .build();
* Operation response = clusterManagerClient.updateNodePool(request);
Expand Down Expand Up @@ -639,6 +640,7 @@ public final Operation updateNodePool(UpdateNodePoolRequest request) {
* .setLabels(NodeLabels.newBuilder().build())
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
* .setGcfsConfig(GcfsConfig.newBuilder().build())
* .setGvnic(VirtualNIC.newBuilder().build())
* .build();
* ApiFuture<Operation> future =
Expand Down
Expand Up @@ -15,7 +15,9 @@
*/

/**
* The interfaces provided are listed below, along with usage samples.
* A client to Kubernetes Engine API
*
* <p>The interfaces provided are listed below, along with usage samples.
*
* <p>======================= ClusterManagerClient =======================
*
Expand Down