Skip to content

Commit 493bd91

Browse files
1 parent 842fce4 commit 493bd91

29 files changed

+2037
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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-hypercomputecluster</artifactId>
25-
<version>v1-rev20260114-2.0.0</version>
25+
<version>v1-rev20260121-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-hypercomputecluster:v1-rev20260114-2.0.0'
38+
implementation 'com.google.apis:google-api-services-hypercomputecluster:v1-rev20260121-2.0.0'
3939
}
4040
```
4141

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.hypercomputecluster.v1.model;
18+
19+
/**
20+
* When set in OperationStep, indicates that cluster health check should be performed.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cluster Director API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CheckClusterHealth extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public CheckClusterHealth set(String fieldName, Object value) {
34+
return (CheckClusterHealth) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public CheckClusterHealth clone() {
39+
return (CheckClusterHealth) super.clone();
40+
}
41+
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.hypercomputecluster.v1.model;
18+
19+
/**
20+
* When set in OperationStep, indicates that a new filestore instance should be created.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cluster Director API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CreateFilestoreInstance extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Name of the Filestore instance, in the format
34+
* `projects/{project}/locations/{location}/instances/{instance}`
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String filestore;
39+
40+
/**
41+
* Output only. Name of the Filestore instance, in the format
42+
* `projects/{project}/locations/{location}/instances/{instance}`
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getFilestore() {
46+
return filestore;
47+
}
48+
49+
/**
50+
* Output only. Name of the Filestore instance, in the format
51+
* `projects/{project}/locations/{location}/instances/{instance}`
52+
* @param filestore filestore or {@code null} for none
53+
*/
54+
public CreateFilestoreInstance setFilestore(java.lang.String filestore) {
55+
this.filestore = filestore;
56+
return this;
57+
}
58+
59+
@Override
60+
public CreateFilestoreInstance set(String fieldName, Object value) {
61+
return (CreateFilestoreInstance) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public CreateFilestoreInstance clone() {
66+
return (CreateFilestoreInstance) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.hypercomputecluster.v1.model;
18+
19+
/**
20+
* When set in OperationStep, indicates that a login node should be created.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cluster Director API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CreateLoginNode extends com.google.api.client.json.GenericJson {
31+
32+
@Override
33+
public CreateLoginNode set(String fieldName, Object value) {
34+
return (CreateLoginNode) super.set(fieldName, value);
35+
}
36+
37+
@Override
38+
public CreateLoginNode clone() {
39+
return (CreateLoginNode) super.clone();
40+
}
41+
42+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.hypercomputecluster.v1.model;
18+
19+
/**
20+
* When set in OperationStep, indicates that a new lustre instance should be created.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cluster Director API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CreateLustreInstance extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Name of the Managed Lustre instance, in the format
34+
* `projects/{project}/locations/{location}/instances/{instance}`
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String lustre;
39+
40+
/**
41+
* Output only. Name of the Managed Lustre instance, in the format
42+
* `projects/{project}/locations/{location}/instances/{instance}`
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getLustre() {
46+
return lustre;
47+
}
48+
49+
/**
50+
* Output only. Name of the Managed Lustre instance, in the format
51+
* `projects/{project}/locations/{location}/instances/{instance}`
52+
* @param lustre lustre or {@code null} for none
53+
*/
54+
public CreateLustreInstance setLustre(java.lang.String lustre) {
55+
this.lustre = lustre;
56+
return this;
57+
}
58+
59+
@Override
60+
public CreateLustreInstance set(String fieldName, Object value) {
61+
return (CreateLustreInstance) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public CreateLustreInstance clone() {
66+
return (CreateLustreInstance) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.hypercomputecluster.v1.model;
18+
19+
/**
20+
* When set in OperationStep, indicates that a new network should be created.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cluster Director API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CreateNetwork extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Name of the network to create, in the format
34+
* `projects/{project}/global/networks/{network}`.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String network;
39+
40+
/**
41+
* Output only. Name of the network to create, in the format
42+
* `projects/{project}/global/networks/{network}`.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.String getNetwork() {
46+
return network;
47+
}
48+
49+
/**
50+
* Output only. Name of the network to create, in the format
51+
* `projects/{project}/global/networks/{network}`.
52+
* @param network network or {@code null} for none
53+
*/
54+
public CreateNetwork setNetwork(java.lang.String network) {
55+
this.network = network;
56+
return this;
57+
}
58+
59+
@Override
60+
public CreateNetwork set(String fieldName, Object value) {
61+
return (CreateNetwork) super.set(fieldName, value);
62+
}
63+
64+
@Override
65+
public CreateNetwork clone() {
66+
return (CreateNetwork) super.clone();
67+
}
68+
69+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
3+
* in compliance with the License. You may obtain a copy of the License at
4+
*
5+
* http://www.apache.org/licenses/LICENSE-2.0
6+
*
7+
* Unless required by applicable law or agreed to in writing, software distributed under the License
8+
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
9+
* or implied. See the License for the specific language governing permissions and limitations under
10+
* the License.
11+
*/
12+
/*
13+
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
14+
* Modify at your own risk.
15+
*/
16+
17+
package com.google.api.services.hypercomputecluster.v1.model;
18+
19+
/**
20+
* When set in OperationStep, indicates that a nodeset should be created.
21+
*
22+
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
23+
* transmitted over HTTP when working with the Cluster Director API. For a detailed explanation see:
24+
* <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>
25+
* </p>
26+
*
27+
* @author Google, Inc.
28+
*/
29+
@SuppressWarnings("javadoc")
30+
public final class CreateNodeset extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Name of the nodeset to create
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.List<java.lang.String> nodesets;
38+
39+
/**
40+
* Output only. Name of the nodeset to create
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.List<java.lang.String> getNodesets() {
44+
return nodesets;
45+
}
46+
47+
/**
48+
* Output only. Name of the nodeset to create
49+
* @param nodesets nodesets or {@code null} for none
50+
*/
51+
public CreateNodeset setNodesets(java.util.List<java.lang.String> nodesets) {
52+
this.nodesets = nodesets;
53+
return this;
54+
}
55+
56+
@Override
57+
public CreateNodeset set(String fieldName, Object value) {
58+
return (CreateNodeset) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public CreateNodeset clone() {
63+
return (CreateNodeset) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)