Skip to content

Commit 40cae9c

Browse files
1 parent 760e2d7 commit 40cae9c

File tree

14 files changed

+252
-24
lines changed

14 files changed

+252
-24
lines changed

clients/google-api-services-apphub/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-apphub</artifactId>
25-
<version>v1-rev20251001-2.0.0</version>
25+
<version>v1-rev20251028-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-apphub:v1-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apphub:v1-rev20251028-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-apphub/v1/2.0.0/com/google/api/services/apphub/v1/AppHub.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -588,22 +588,22 @@ public List setName(java.lang.String name) {
588588
}
589589

590590
/**
591-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
592-
* is primarily intended for internal usage.
591+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
592+
* documented otherwise. This is primarily for internal usage.
593593
*/
594594
@com.google.api.client.util.Key
595595
private java.util.List<java.lang.String> extraLocationTypes;
596596

597-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
598-
primarily intended for internal usage.
597+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
598+
otherwise. This is primarily for internal usage.
599599
*/
600600
public java.util.List<java.lang.String> getExtraLocationTypes() {
601601
return extraLocationTypes;
602602
}
603603

604604
/**
605-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
606-
* is primarily intended for internal usage.
605+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
606+
* documented otherwise. This is primarily for internal usage.
607607
*/
608608
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
609609
this.extraLocationTypes = extraLocationTypes;
Lines changed: 66 additions & 0 deletions
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.apphub.v1.model;
18+
19+
/**
20+
* The functional type of a service or workload.
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 App Hub 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 FunctionalType extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The functional type of a service or workload.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String type;
38+
39+
/**
40+
* Output only. The functional type of a service or workload.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getType() {
44+
return type;
45+
}
46+
47+
/**
48+
* Output only. The functional type of a service or workload.
49+
* @param type type or {@code null} for none
50+
*/
51+
public FunctionalType setType(java.lang.String type) {
52+
this.type = type;
53+
return this;
54+
}
55+
56+
@Override
57+
public FunctionalType set(String fieldName, Object value) {
58+
return (FunctionalType) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public FunctionalType clone() {
63+
return (FunctionalType) super.clone();
64+
}
65+
66+
}

clients/google-api-services-apphub/v1/2.0.0/com/google/api/services/apphub/v1/model/ServiceProperties.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ServiceProperties extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. The type of the service.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private FunctionalType functionalType;
38+
3239
/**
3340
* Output only. The service project identifier that the underlying cloud resource resides in.
3441
* The value may be {@code null}.
@@ -51,6 +58,23 @@ public final class ServiceProperties extends com.google.api.client.json.GenericJ
5158
@com.google.api.client.util.Key
5259
private java.lang.String zone;
5360

61+
/**
62+
* Output only. The type of the service.
63+
* @return value or {@code null} for none
64+
*/
65+
public FunctionalType getFunctionalType() {
66+
return functionalType;
67+
}
68+
69+
/**
70+
* Output only. The type of the service.
71+
* @param functionalType functionalType or {@code null} for none
72+
*/
73+
public ServiceProperties setFunctionalType(FunctionalType functionalType) {
74+
this.functionalType = functionalType;
75+
return this;
76+
}
77+
5478
/**
5579
* Output only. The service project identifier that the underlying cloud resource resides in.
5680
* @return value or {@code null} for none

clients/google-api-services-apphub/v1/2.0.0/com/google/api/services/apphub/v1/model/WorkloadProperties.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,13 @@
2929
@SuppressWarnings("javadoc")
3030
public final class WorkloadProperties extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. The type of the workload.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private FunctionalType functionalType;
38+
3239
/**
3340
* Output only. The service project identifier that the underlying cloud resource resides in.
3441
* Empty for non-cloud resources.
@@ -53,6 +60,23 @@ public final class WorkloadProperties extends com.google.api.client.json.Generic
5360
@com.google.api.client.util.Key
5461
private java.lang.String zone;
5562

63+
/**
64+
* Output only. The type of the workload.
65+
* @return value or {@code null} for none
66+
*/
67+
public FunctionalType getFunctionalType() {
68+
return functionalType;
69+
}
70+
71+
/**
72+
* Output only. The type of the workload.
73+
* @param functionalType functionalType or {@code null} for none
74+
*/
75+
public WorkloadProperties setFunctionalType(FunctionalType functionalType) {
76+
this.functionalType = functionalType;
77+
return this;
78+
}
79+
5680
/**
5781
* Output only. The service project identifier that the underlying cloud resource resides in.
5882
* Empty for non-cloud resources.

clients/google-api-services-apphub/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-apphub</artifactId>
11-
<version>v1-rev20251001-2.0.0</version>
12-
<name>App Hub API v1-rev20251001-2.0.0</name>
11+
<version>v1-rev20251028-2.0.0</version>
12+
<name>App Hub API v1-rev20251028-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-apphub/v1/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-apphub</artifactId>
25-
<version>v1-rev20251001-2.0.0</version>
25+
<version>v1-rev20251028-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-apphub:v1-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apphub:v1-rev20251028-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-apphub/v1alpha/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-apphub</artifactId>
25-
<version>v1alpha-rev20251001-2.0.0</version>
25+
<version>v1alpha-rev20251028-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-apphub:v1alpha-rev20251001-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apphub:v1alpha-rev20251028-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-apphub/v1alpha/2.0.0/com/google/api/services/apphub/v1alpha/AppHub.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -588,22 +588,22 @@ public List setName(java.lang.String name) {
588588
}
589589

590590
/**
591-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
592-
* is primarily intended for internal usage.
591+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
592+
* documented otherwise. This is primarily for internal usage.
593593
*/
594594
@com.google.api.client.util.Key
595595
private java.util.List<java.lang.String> extraLocationTypes;
596596

597-
/** Optional. Unless explicitly documented otherwise, don't use this unsupported field which is
598-
primarily intended for internal usage.
597+
/** Optional. Do not use this field. It is unsupported and is ignored unless explicitly documented
598+
otherwise. This is primarily for internal usage.
599599
*/
600600
public java.util.List<java.lang.String> getExtraLocationTypes() {
601601
return extraLocationTypes;
602602
}
603603

604604
/**
605-
* Optional. Unless explicitly documented otherwise, don't use this unsupported field which
606-
* is primarily intended for internal usage.
605+
* Optional. Do not use this field. It is unsupported and is ignored unless explicitly
606+
* documented otherwise. This is primarily for internal usage.
607607
*/
608608
public List setExtraLocationTypes(java.util.List<java.lang.String> extraLocationTypes) {
609609
this.extraLocationTypes = extraLocationTypes;
Lines changed: 66 additions & 0 deletions
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.apphub.v1alpha.model;
18+
19+
/**
20+
* The functional type of a service or workload.
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 App Hub 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 FunctionalType extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The functional type of a service or workload.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String type;
38+
39+
/**
40+
* Output only. The functional type of a service or workload.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getType() {
44+
return type;
45+
}
46+
47+
/**
48+
* Output only. The functional type of a service or workload.
49+
* @param type type or {@code null} for none
50+
*/
51+
public FunctionalType setType(java.lang.String type) {
52+
this.type = type;
53+
return this;
54+
}
55+
56+
@Override
57+
public FunctionalType set(String fieldName, Object value) {
58+
return (FunctionalType) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public FunctionalType clone() {
63+
return (FunctionalType) super.clone();
64+
}
65+
66+
}

0 commit comments

Comments
 (0)