Skip to content

Commit dcf17db

Browse files
1 parent a54808c commit dcf17db

File tree

157 files changed

+683
-168
lines changed

Some content is hidden

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

157 files changed

+683
-168
lines changed

clients/google-api-services-gkeonprem/v1/2.0.0/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Anthos On-Prem API Client Library for Java
1+
# GDC Virtual API Client Library for Java
22

33

44

5-
This page contains information about getting started with the Anthos On-Prem API
5+
This page contains information about getting started with the GDC Virtual API
66
using the Google API Client Library for Java. In addition, you may be interested
77
in the following documentation:
88

9-
* Browse the [Javadoc reference for the Anthos On-Prem API][javadoc]
9+
* Browse the [Javadoc reference for the GDC Virtual API][javadoc]
1010
* Read the [Developer's Guide for the Google API Client Library for Java][google-api-client].
11-
* Interact with this API in your browser using the [APIs Explorer for the Anthos On-Prem API][api-explorer]
11+
* Interact with this API in your browser using the [APIs Explorer for the GDC Virtual API][api-explorer]
1212

1313
## Installation
1414

@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-gkeonprem</artifactId>
25-
<version>v1-rev20240228-2.0.0</version>
25+
<version>v1-rev20240814-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-gkeonprem:v1-rev20240228-2.0.0'
38+
implementation 'com.google.apis:google-api-services-gkeonprem:v1-rev20240814-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-gkeonprem/v1/2.0.0/com/google/api/services/gkeonprem/v1/GKEOnPrem.java

Lines changed: 258 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class GKEOnPrem extends com.google.api.client.googleapis.services.json.Ab
4949
com.google.api.client.googleapis.GoogleUtils.MAJOR_VERSION >= 2,
5050
"You are currently running with version %s of google-api-client. " +
5151
"You need at least version 1.31.1 of google-api-client to run version " +
52-
"2.0.0 of the Anthos On-Prem API library.", com.google.api.client.googleapis.GoogleUtils.VERSION);
52+
"2.0.0 of the GDC Virtual API library.", com.google.api.client.googleapis.GoogleUtils.VERSION);
5353
}
5454

5555
/**
@@ -675,6 +675,34 @@ public Create setParent(java.lang.String parent) {
675675
return this;
676676
}
677677

678+
/**
679+
* Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS
680+
* when the creation fails during standalone preflight checks. In that case the subsequent
681+
* create call will fail with "cluster already exists" error and hence a update cluster is
682+
* required to fix the cluster.
683+
*/
684+
@com.google.api.client.util.Key
685+
private java.lang.Boolean allowPreflightFailure;
686+
687+
/** Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS when the
688+
creation fails during standalone preflight checks. In that case the subsequent create call will
689+
fail with "cluster already exists" error and hence a update cluster is required to fix the cluster.
690+
*/
691+
public java.lang.Boolean getAllowPreflightFailure() {
692+
return allowPreflightFailure;
693+
}
694+
695+
/**
696+
* Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS
697+
* when the creation fails during standalone preflight checks. In that case the subsequent
698+
* create call will fail with "cluster already exists" error and hence a update cluster is
699+
* required to fix the cluster.
700+
*/
701+
public Create setAllowPreflightFailure(java.lang.Boolean allowPreflightFailure) {
702+
this.allowPreflightFailure = allowPreflightFailure;
703+
return this;
704+
}
705+
678706
/**
679707
* Required. User provided identifier that is used as part of the resource name; must
680708
* conform to RFC-1034 and additionally restrict to lower-cased letters. This comes out
@@ -1012,6 +1040,28 @@ public Get setName(java.lang.String name) {
10121040
return this;
10131041
}
10141042

1043+
/**
1044+
* Optional. If true, return BareMetal Admin Cluster including the one that only exists in
1045+
* RMS.
1046+
*/
1047+
@com.google.api.client.util.Key
1048+
private java.lang.Boolean allowMissing;
1049+
1050+
/** Optional. If true, return BareMetal Admin Cluster including the one that only exists in RMS.
1051+
*/
1052+
public java.lang.Boolean getAllowMissing() {
1053+
return allowMissing;
1054+
}
1055+
1056+
/**
1057+
* Optional. If true, return BareMetal Admin Cluster including the one that only exists in
1058+
* RMS.
1059+
*/
1060+
public Get setAllowMissing(java.lang.Boolean allowMissing) {
1061+
this.allowMissing = allowMissing;
1062+
return this;
1063+
}
1064+
10151065
/**
10161066
* View for bare metal admin cluster. When `BASIC` is specified, only the cluster resource
10171067
* name and membership are returned. The default/unset value `CLUSTER_VIEW_UNSPECIFIED` is
@@ -1383,6 +1433,29 @@ public List setParent(java.lang.String parent) {
13831433
return this;
13841434
}
13851435

1436+
/**
1437+
* Optional. If true, return list of BareMetal Admin Clusters including the ones that only
1438+
* exists in RMS.
1439+
*/
1440+
@com.google.api.client.util.Key
1441+
private java.lang.Boolean allowMissing;
1442+
1443+
/** Optional. If true, return list of BareMetal Admin Clusters including the ones that only exists in
1444+
RMS.
1445+
*/
1446+
public java.lang.Boolean getAllowMissing() {
1447+
return allowMissing;
1448+
}
1449+
1450+
/**
1451+
* Optional. If true, return list of BareMetal Admin Clusters including the ones that only
1452+
* exists in RMS.
1453+
*/
1454+
public List setAllowMissing(java.lang.Boolean allowMissing) {
1455+
this.allowMissing = allowMissing;
1456+
return this;
1457+
}
1458+
13861459
/**
13871460
* Requested page size. Server may return fewer items than requested. If unspecified, at
13881461
* most 50 clusters will be returned. The maximum value is 1000; values above 1000 will be
@@ -2848,6 +2921,34 @@ public Create setParent(java.lang.String parent) {
28482921
return this;
28492922
}
28502923

2924+
/**
2925+
* Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS
2926+
* when the creation fails during standalone preflight checks. In that case the subsequent
2927+
* create call will fail with "cluster already exists" error and hence a update cluster is
2928+
* required to fix the cluster.
2929+
*/
2930+
@com.google.api.client.util.Key
2931+
private java.lang.Boolean allowPreflightFailure;
2932+
2933+
/** Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS when the
2934+
creation fails during standalone preflight checks. In that case the subsequent create call will
2935+
fail with "cluster already exists" error and hence a update cluster is required to fix the cluster.
2936+
*/
2937+
public java.lang.Boolean getAllowPreflightFailure() {
2938+
return allowPreflightFailure;
2939+
}
2940+
2941+
/**
2942+
* Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS
2943+
* when the creation fails during standalone preflight checks. In that case the subsequent
2944+
* create call will fail with "cluster already exists" error and hence a update cluster is
2945+
* required to fix the cluster.
2946+
*/
2947+
public Create setAllowPreflightFailure(java.lang.Boolean allowPreflightFailure) {
2948+
this.allowPreflightFailure = allowPreflightFailure;
2949+
return this;
2950+
}
2951+
28512952
/**
28522953
* Required. User provided identifier that is used as part of the resource name; must
28532954
* conform to RFC-1034 and additionally restrict to lower-cased letters. This comes out
@@ -3435,6 +3536,26 @@ public Get setName(java.lang.String name) {
34353536
return this;
34363537
}
34373538

3539+
/**
3540+
* Optional. If true, return BareMetal Cluster including the one that only exists in RMS.
3541+
*/
3542+
@com.google.api.client.util.Key
3543+
private java.lang.Boolean allowMissing;
3544+
3545+
/** Optional. If true, return BareMetal Cluster including the one that only exists in RMS.
3546+
*/
3547+
public java.lang.Boolean getAllowMissing() {
3548+
return allowMissing;
3549+
}
3550+
3551+
/**
3552+
* Optional. If true, return BareMetal Cluster including the one that only exists in RMS.
3553+
*/
3554+
public Get setAllowMissing(java.lang.Boolean allowMissing) {
3555+
this.allowMissing = allowMissing;
3556+
return this;
3557+
}
3558+
34383559
/**
34393560
* View for bare metal user cluster. When `BASIC` is specified, only the cluster resource
34403561
* name and admin cluster membership are returned. The default/unset value
@@ -3808,6 +3929,28 @@ public List setParent(java.lang.String parent) {
38083929
return this;
38093930
}
38103931

3932+
/**
3933+
* Optional. If true, return list of BareMetal Clusters including the ones that only
3934+
* exists in RMS.
3935+
*/
3936+
@com.google.api.client.util.Key
3937+
private java.lang.Boolean allowMissing;
3938+
3939+
/** Optional. If true, return list of BareMetal Clusters including the ones that only exists in RMS.
3940+
*/
3941+
public java.lang.Boolean getAllowMissing() {
3942+
return allowMissing;
3943+
}
3944+
3945+
/**
3946+
* Optional. If true, return list of BareMetal Clusters including the ones that only
3947+
* exists in RMS.
3948+
*/
3949+
public List setAllowMissing(java.lang.Boolean allowMissing) {
3950+
this.allowMissing = allowMissing;
3951+
return this;
3952+
}
3953+
38113954
/**
38123955
* A resource filtering expression following https://google.aip.dev/160. When non-empty,
38133956
* only resource's whose attributes field matches the filter are returned.
@@ -8384,6 +8527,28 @@ public Get setName(java.lang.String name) {
83848527
return this;
83858528
}
83868529

8530+
/**
8531+
* Optional. If true, return Vmware Admin Cluster including the one that only exists in
8532+
* RMS.
8533+
*/
8534+
@com.google.api.client.util.Key
8535+
private java.lang.Boolean allowMissing;
8536+
8537+
/** Optional. If true, return Vmware Admin Cluster including the one that only exists in RMS.
8538+
*/
8539+
public java.lang.Boolean getAllowMissing() {
8540+
return allowMissing;
8541+
}
8542+
8543+
/**
8544+
* Optional. If true, return Vmware Admin Cluster including the one that only exists in
8545+
* RMS.
8546+
*/
8547+
public Get setAllowMissing(java.lang.Boolean allowMissing) {
8548+
this.allowMissing = allowMissing;
8549+
return this;
8550+
}
8551+
83878552
/**
83888553
* View for VMware admin cluster. When `BASIC` is specified, only the cluster resource
83898554
* name and membership are returned. The default/unset value `CLUSTER_VIEW_UNSPECIFIED` is
@@ -8755,6 +8920,28 @@ public List setParent(java.lang.String parent) {
87558920
return this;
87568921
}
87578922

8923+
/**
8924+
* Optional. If true, return list of Vmware Admin Clusters including the ones that only
8925+
* exists in RMS.
8926+
*/
8927+
@com.google.api.client.util.Key
8928+
private java.lang.Boolean allowMissing;
8929+
8930+
/** Optional. If true, return list of Vmware Admin Clusters including the ones that only exists in RMS.
8931+
*/
8932+
public java.lang.Boolean getAllowMissing() {
8933+
return allowMissing;
8934+
}
8935+
8936+
/**
8937+
* Optional. If true, return list of Vmware Admin Clusters including the ones that only
8938+
* exists in RMS.
8939+
*/
8940+
public List setAllowMissing(java.lang.Boolean allowMissing) {
8941+
this.allowMissing = allowMissing;
8942+
return this;
8943+
}
8944+
87588945
/**
87598946
* Requested page size. Server may return fewer items than requested. If unspecified, at
87608947
* most 50 clusters will be returned. The maximum value is 1000; values above 1000 will be
@@ -10023,6 +10210,34 @@ public Create setParent(java.lang.String parent) {
1002310210
return this;
1002410211
}
1002510212

10213+
/**
10214+
* Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS
10215+
* when the creation fails during standalone preflight checks. In that case the subsequent
10216+
* create call will fail with "cluster already exists" error and hence a update cluster is
10217+
* required to fix the cluster.
10218+
*/
10219+
@com.google.api.client.util.Key
10220+
private java.lang.Boolean allowPreflightFailure;
10221+
10222+
/** Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS when the
10223+
creation fails during standalone preflight checks. In that case the subsequent create call will
10224+
fail with "cluster already exists" error and hence a update cluster is required to fix the cluster.
10225+
*/
10226+
public java.lang.Boolean getAllowPreflightFailure() {
10227+
return allowPreflightFailure;
10228+
}
10229+
10230+
/**
10231+
* Optional. If set to true, CLM will force CCFE to persist the cluster resource in RMS
10232+
* when the creation fails during standalone preflight checks. In that case the subsequent
10233+
* create call will fail with "cluster already exists" error and hence a update cluster is
10234+
* required to fix the cluster.
10235+
*/
10236+
public Create setAllowPreflightFailure(java.lang.Boolean allowPreflightFailure) {
10237+
this.allowPreflightFailure = allowPreflightFailure;
10238+
return this;
10239+
}
10240+
1002610241
/** Validate the request without actually doing any updates. */
1002710242
@com.google.api.client.util.Key
1002810243
private java.lang.Boolean validateOnly;
@@ -10607,6 +10822,26 @@ public Get setName(java.lang.String name) {
1060710822
return this;
1060810823
}
1060910824

10825+
/**
10826+
* Optional. If true, return Vmware Cluster including the one that only exists in RMS.
10827+
*/
10828+
@com.google.api.client.util.Key
10829+
private java.lang.Boolean allowMissing;
10830+
10831+
/** Optional. If true, return Vmware Cluster including the one that only exists in RMS.
10832+
*/
10833+
public java.lang.Boolean getAllowMissing() {
10834+
return allowMissing;
10835+
}
10836+
10837+
/**
10838+
* Optional. If true, return Vmware Cluster including the one that only exists in RMS.
10839+
*/
10840+
public Get setAllowMissing(java.lang.Boolean allowMissing) {
10841+
this.allowMissing = allowMissing;
10842+
return this;
10843+
}
10844+
1061010845
/**
1061110846
* View for VMware user cluster. When `BASIC` is specified, only the cluster resource name
1061210847
* and admin cluster membership are returned. The default/unset value
@@ -10980,6 +11215,28 @@ public List setParent(java.lang.String parent) {
1098011215
return this;
1098111216
}
1098211217

11218+
/**
11219+
* Optional. If true, return list of Vmware Clusters including the ones that only exists
11220+
* in RMS.
11221+
*/
11222+
@com.google.api.client.util.Key
11223+
private java.lang.Boolean allowMissing;
11224+
11225+
/** Optional. If true, return list of Vmware Clusters including the ones that only exists in RMS.
11226+
*/
11227+
public java.lang.Boolean getAllowMissing() {
11228+
return allowMissing;
11229+
}
11230+
11231+
/**
11232+
* Optional. If true, return list of Vmware Clusters including the ones that only exists
11233+
* in RMS.
11234+
*/
11235+
public List setAllowMissing(java.lang.Boolean allowMissing) {
11236+
this.allowMissing = allowMissing;
11237+
return this;
11238+
}
11239+
1098311240
/**
1098411241
* A resource filtering expression following https://google.aip.dev/160. When non-empty,
1098511242
* only resource's whose attributes field matches the filter are returned.

clients/google-api-services-gkeonprem/v1/2.0.0/com/google/api/services/gkeonprem/v1/GKEOnPremScopes.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.google.api.services.gkeonprem.v1;
1818

1919
/**
20-
* Available OAuth 2.0 scopes for use with the Anthos On-Prem API.
20+
* Available OAuth 2.0 scopes for use with the GDC Virtual API.
2121
*
2222
* @since 1.4
2323
*/

clients/google-api-services-gkeonprem/v1/2.0.0/com/google/api/services/gkeonprem/v1/model/Authorization.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* cluster.
2222
*
2323
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
24-
* transmitted over HTTP when working with the Anthos On-Prem API. For a detailed explanation see:
24+
* transmitted over HTTP when working with the GDC Virtual API. For a detailed explanation see:
2525
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
2626
* </p>
2727
*

0 commit comments

Comments
 (0)