Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Sep 16, 2023. It is now read-only.

Commitb0c296a

Browse files
fix: reverting unintentional breaking change: GetOpenIdConfigRequest, GetOpenIdConfigResponse (#664)
* fix: reverting unintentional breaking change: GetOpenIdConfigRequest, GetOpenIdConfigResponsePiperOrigin-RevId: 424115592Source-Link:googleapis/googleapis@853e8a2Source-Link:https://github.com/googleapis/googleapis-gen/commit/8e17f77fb9e4843845bf0ee1d466dcee001cc2c4Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOGUxN2Y3N2ZiOWU0ODQzODQ1YmYwZWUxZDQ2NmRjZWUwMDFjYzJjNCJ9* 🦉 Updates from OwlBotSeehttps://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.mdCo-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parente81b950 commitb0c296a

File tree

136 files changed

+58784
-3775
lines changed

Some content is hidden

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

136 files changed

+58784
-3775
lines changed

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

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -697,6 +697,10 @@ public final UnaryCallable<UpdateClusterRequest, Operation> updateClusterCallabl
697697
* .addAllLocations(new ArrayList<String>())
698698
* .setWorkloadMetadataConfig(WorkloadMetadataConfig.newBuilder().build())
699699
* .setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build())
700+
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
701+
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
702+
* .setGcfsConfig(GcfsConfig.newBuilder().build())
703+
* .setGvnic(VirtualNIC.newBuilder().build())
700704
* .build();
701705
* Operation response = clusterManagerClient.updateNodePool(request);
702706
* }
@@ -729,6 +733,10 @@ public final Operation updateNodePool(UpdateNodePoolRequest request) {
729733
* .addAllLocations(new ArrayList<String>())
730734
* .setWorkloadMetadataConfig(WorkloadMetadataConfig.newBuilder().build())
731735
* .setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build())
736+
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
737+
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
738+
* .setGcfsConfig(GcfsConfig.newBuilder().build())
739+
* .setGvnic(VirtualNIC.newBuilder().build())
732740
* .build();
733741
* ApiFuture<Operation> future =
734742
* clusterManagerClient.updateNodePoolCallable().futureCall(request);
@@ -3146,7 +3154,9 @@ public final UnaryCallable<CompleteIPRotationRequest, Operation> completeIPRotat
31463154

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

31753185
// AUTO-GENERATED DOCUMENTATION AND METHOD.
31763186
/**
3177-
* Sets the size for a specific node pool.
3187+
* Sets the size for a specific node pool. The new size will be used for all replicas, including
3188+
* future replicas created by modifying
3189+
* [NodePool.locations][google.container.v1.NodePool.locations].
31783190
*
31793191
* <p>Sample code:
31803192
*

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
*/
1616

1717
/**
18-
* The interfaces provided are listed below, along with usage samples.
18+
* A client to Kubernetes Engine API
19+
*
20+
* <p>The interfaces provided are listed below, along with usage samples.
1921
*
2022
* <p>======================= ClusterManagerClient =======================
2123
*

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -601,6 +601,7 @@ public final UnaryCallable<UpdateClusterRequest, Operation> updateClusterCallabl
601601
* .setLabels(NodeLabels.newBuilder().build())
602602
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
603603
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
604+
* .setGcfsConfig(GcfsConfig.newBuilder().build())
604605
* .setGvnic(VirtualNIC.newBuilder().build())
605606
* .build();
606607
* Operation response = clusterManagerClient.updateNodePool(request);
@@ -639,6 +640,7 @@ public final Operation updateNodePool(UpdateNodePoolRequest request) {
639640
* .setLabels(NodeLabels.newBuilder().build())
640641
* .setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
641642
* .setKubeletConfig(NodeKubeletConfig.newBuilder().build())
643+
* .setGcfsConfig(GcfsConfig.newBuilder().build())
642644
* .setGvnic(VirtualNIC.newBuilder().build())
643645
* .build();
644646
* ApiFuture<Operation> future =

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@
1515
*/
1616

1717
/**
18-
* The interfaces provided are listed below, along with usage samples.
18+
* A client to Kubernetes Engine API
19+
*
20+
* <p>The interfaces provided are listed below, along with usage samples.
1921
*
2022
* <p>======================= ClusterManagerClient =======================
2123
*

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

Lines changed: 83 additions & 0 deletions
Large diffs are not rendered by default.

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

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
importcom.google.container.v1beta1.DatabaseEncryption;
4343
importcom.google.container.v1beta1.DeleteClusterRequest;
4444
importcom.google.container.v1beta1.DeleteNodePoolRequest;
45+
importcom.google.container.v1beta1.GcfsConfig;
4546
importcom.google.container.v1beta1.GetClusterRequest;
4647
importcom.google.container.v1beta1.GetJSONWebKeysRequest;
4748
importcom.google.container.v1beta1.GetJSONWebKeysResponse;
@@ -70,6 +71,7 @@
7071
importcom.google.container.v1beta1.MasterAuth;
7172
importcom.google.container.v1beta1.MasterAuthorizedNetworksConfig;
7273
importcom.google.container.v1beta1.MaxPodsConstraint;
74+
importcom.google.container.v1beta1.MeshCertificates;
7375
importcom.google.container.v1beta1.MonitoringConfig;
7476
importcom.google.container.v1beta1.NetworkConfig;
7577
importcom.google.container.v1beta1.NetworkPolicy;
@@ -257,6 +259,7 @@ public void getClusterTest() throws Exception {
257259
.setReleaseChannel(ReleaseChannel.newBuilder().build())
258260
.setWorkloadIdentityConfig(WorkloadIdentityConfig.newBuilder().build())
259261
.setWorkloadCertificates(WorkloadCertificates.newBuilder().build())
262+
.setMeshCertificates(MeshCertificates.newBuilder().build())
260263
.setClusterTelemetry(ClusterTelemetry.newBuilder().build())
261264
.setTpuConfig(TpuConfig.newBuilder().build())
262265
.setNotificationConfig(NotificationConfig.newBuilder().build())
@@ -477,6 +480,7 @@ public void updateNodePoolTest() throws Exception {
477480
.setLabels(NodeLabels.newBuilder().build())
478481
.setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
479482
.setKubeletConfig(NodeKubeletConfig.newBuilder().build())
483+
.setGcfsConfig(GcfsConfig.newBuilder().build())
480484
.setGvnic(VirtualNIC.newBuilder().build())
481485
.build();
482486

@@ -503,6 +507,7 @@ public void updateNodePoolTest() throws Exception {
503507
Assert.assertEquals(request.getLabels(),actualRequest.getLabels());
504508
Assert.assertEquals(request.getLinuxNodeConfig(),actualRequest.getLinuxNodeConfig());
505509
Assert.assertEquals(request.getKubeletConfig(),actualRequest.getKubeletConfig());
510+
Assert.assertEquals(request.getGcfsConfig(),actualRequest.getGcfsConfig());
506511
Assert.assertEquals(request.getGvnic(),actualRequest.getGvnic());
507512
Assert.assertTrue(
508513
channelProvider.isHeaderSent(
@@ -533,6 +538,7 @@ public void updateNodePoolExceptionTest() throws Exception {
533538
.setLabels(NodeLabels.newBuilder().build())
534539
.setLinuxNodeConfig(LinuxNodeConfig.newBuilder().build())
535540
.setKubeletConfig(NodeKubeletConfig.newBuilder().build())
541+
.setGcfsConfig(GcfsConfig.newBuilder().build())
536542
.setGvnic(VirtualNIC.newBuilder().build())
537543
.build();
538544
client.updateNodePool(request);
@@ -1320,6 +1326,7 @@ public void getNodePoolTest() throws Exception {
13201326
.addAllConditions(newArrayList<StatusCondition>())
13211327
.setPodIpv4CidrSize(1098768716)
13221328
.setUpgradeSettings(NodePool.UpgradeSettings.newBuilder().build())
1329+
.setPlacementPolicy(NodePool.PlacementPolicy.newBuilder().build())
13231330
.build();
13241331
mockClusterManager.addResponse(expectedResponse);
13251332

‎grpc-google-cloud-container-v1/src/main/java/com/google/container/v1/ClusterManagerGrpc.java‎

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1892,7 +1892,9 @@ public void completeIPRotation(
18921892
*
18931893
*
18941894
* <pre>
1895-
* Sets the size for a specific node pool.
1895+
* Sets the size for a specific node pool. The new size will be used for all
1896+
* replicas, including future replicas created by modifying
1897+
* [NodePool.locations][google.container.v1.NodePool.locations].
18961898
* </pre>
18971899
*/
18981900
publicvoidsetNodePoolSize(
@@ -2646,7 +2648,9 @@ public void completeIPRotation(
26462648
*
26472649
*
26482650
* <pre>
2649-
* Sets the size for a specific node pool.
2651+
* Sets the size for a specific node pool. The new size will be used for all
2652+
* replicas, including future replicas created by modifying
2653+
* [NodePool.locations][google.container.v1.NodePool.locations].
26502654
* </pre>
26512655
*/
26522656
publicvoidsetNodePoolSize(
@@ -3122,7 +3126,9 @@ public com.google.container.v1.Operation completeIPRotation(
31223126
*
31233127
*
31243128
* <pre>
3125-
* Sets the size for a specific node pool.
3129+
* Sets the size for a specific node pool. The new size will be used for all
3130+
* replicas, including future replicas created by modifying
3131+
* [NodePool.locations][google.container.v1.NodePool.locations].
31263132
* </pre>
31273133
*/
31283134
publiccom.google.container.v1.OperationsetNodePoolSize(
@@ -3589,7 +3595,9 @@ protected ClusterManagerFutureStub build(
35893595
*
35903596
*
35913597
* <pre>
3592-
* Sets the size for a specific node pool.
3598+
* Sets the size for a specific node pool. The new size will be used for all
3599+
* replicas, including future replicas created by modifying
3600+
* [NodePool.locations][google.container.v1.NodePool.locations].
35933601
* </pre>
35943602
*/
35953603
publiccom.google.common.util.concurrent.ListenableFuture<com.google.container.v1.Operation>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp