Skip to content

Commit c65af04

Browse files
1 parent 2d6a1cc commit c65af04

File tree

14 files changed

+468
-12
lines changed

14 files changed

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

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+
* Additional metadata for 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 ExtendedMetadata extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The metadata contents.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.util.Map<String, java.lang.Object> metadataStruct;
38+
39+
/**
40+
* Output only. The metadata contents.
41+
* @return value or {@code null} for none
42+
*/
43+
public java.util.Map<String, java.lang.Object> getMetadataStruct() {
44+
return metadataStruct;
45+
}
46+
47+
/**
48+
* Output only. The metadata contents.
49+
* @param metadataStruct metadataStruct or {@code null} for none
50+
*/
51+
public ExtendedMetadata setMetadataStruct(java.util.Map<String, java.lang.Object> metadataStruct) {
52+
this.metadataStruct = metadataStruct;
53+
return this;
54+
}
55+
56+
@Override
57+
public ExtendedMetadata set(String fieldName, Object value) {
58+
return (ExtendedMetadata) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public ExtendedMetadata clone() {
63+
return (ExtendedMetadata) super.clone();
64+
}
65+
66+
}
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 registration type of a service.
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 RegistrationType extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. The registration type of a service.
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 registration type of a service.
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 registration type of a service.
49+
* @param type type or {@code null} for none
50+
*/
51+
public RegistrationType setType(java.lang.String type) {
52+
this.type = type;
53+
return this;
54+
}
55+
56+
@Override
57+
public RegistrationType set(String fieldName, Object value) {
58+
return (RegistrationType) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public RegistrationType clone() {
63+
return (RegistrationType) 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: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,21 @@
2929
@SuppressWarnings("javadoc")
3030
public final class ServiceProperties extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Output only. Additional metadata specific to the resource type. The key is a string that
34+
* identifies the type of metadata and the value is the metadata contents specific to that type.
35+
* Key format: `apphub.googleapis.com/{metadataType}`
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.Map<String, ExtendedMetadata> extendedMetadata;
40+
41+
static {
42+
// hack to force ProGuard to consider ExtendedMetadata used, since otherwise it would be stripped out
43+
// see https://github.com/google/google-api-java-client/issues/543
44+
com.google.api.client.util.Data.nullOf(ExtendedMetadata.class);
45+
}
46+
3247
/**
3348
* Output only. The type of the service.
3449
* The value may be {@code null}.
@@ -50,6 +65,13 @@ public final class ServiceProperties extends com.google.api.client.json.GenericJ
5065
@com.google.api.client.util.Key
5166
private java.lang.String location;
5267

68+
/**
69+
* Output only. The registration type of the service.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private RegistrationType registrationType;
74+
5375
/**
5476
* Output only. The location that the underlying resource resides in if it is zonal, for example,
5577
* us-west1-a).
@@ -58,6 +80,27 @@ public final class ServiceProperties extends com.google.api.client.json.GenericJ
5880
@com.google.api.client.util.Key
5981
private java.lang.String zone;
6082

83+
/**
84+
* Output only. Additional metadata specific to the resource type. The key is a string that
85+
* identifies the type of metadata and the value is the metadata contents specific to that type.
86+
* Key format: `apphub.googleapis.com/{metadataType}`
87+
* @return value or {@code null} for none
88+
*/
89+
public java.util.Map<String, ExtendedMetadata> getExtendedMetadata() {
90+
return extendedMetadata;
91+
}
92+
93+
/**
94+
* Output only. Additional metadata specific to the resource type. The key is a string that
95+
* identifies the type of metadata and the value is the metadata contents specific to that type.
96+
* Key format: `apphub.googleapis.com/{metadataType}`
97+
* @param extendedMetadata extendedMetadata or {@code null} for none
98+
*/
99+
public ServiceProperties setExtendedMetadata(java.util.Map<String, ExtendedMetadata> extendedMetadata) {
100+
this.extendedMetadata = extendedMetadata;
101+
return this;
102+
}
103+
61104
/**
62105
* Output only. The type of the service.
63106
* @return value or {@code null} for none
@@ -109,6 +152,23 @@ public ServiceProperties setLocation(java.lang.String location) {
109152
return this;
110153
}
111154

155+
/**
156+
* Output only. The registration type of the service.
157+
* @return value or {@code null} for none
158+
*/
159+
public RegistrationType getRegistrationType() {
160+
return registrationType;
161+
}
162+
163+
/**
164+
* Output only. The registration type of the service.
165+
* @param registrationType registrationType or {@code null} for none
166+
*/
167+
public ServiceProperties setRegistrationType(RegistrationType registrationType) {
168+
this.registrationType = registrationType;
169+
return this;
170+
}
171+
112172
/**
113173
* Output only. The location that the underlying resource resides in if it is zonal, for example,
114174
* us-west1-a).

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

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

32+
/**
33+
* Output only. Additional metadata specific to the resource type. The key is a string that
34+
* identifies the type of metadata and the value is the metadata contents specific to that type.
35+
* Key format: `apphub.googleapis.com/{metadataType}`
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.Map<String, ExtendedMetadata> extendedMetadata;
40+
41+
static {
42+
// hack to force ProGuard to consider ExtendedMetadata used, since otherwise it would be stripped out
43+
// see https://github.com/google/google-api-java-client/issues/543
44+
com.google.api.client.util.Data.nullOf(ExtendedMetadata.class);
45+
}
46+
3247
/**
3348
* Output only. The type of the workload.
3449
* The value may be {@code null}.
@@ -60,6 +75,27 @@ public final class WorkloadProperties extends com.google.api.client.json.Generic
6075
@com.google.api.client.util.Key
6176
private java.lang.String zone;
6277

78+
/**
79+
* Output only. Additional metadata specific to the resource type. The key is a string that
80+
* identifies the type of metadata and the value is the metadata contents specific to that type.
81+
* Key format: `apphub.googleapis.com/{metadataType}`
82+
* @return value or {@code null} for none
83+
*/
84+
public java.util.Map<String, ExtendedMetadata> getExtendedMetadata() {
85+
return extendedMetadata;
86+
}
87+
88+
/**
89+
* Output only. Additional metadata specific to the resource type. The key is a string that
90+
* identifies the type of metadata and the value is the metadata contents specific to that type.
91+
* Key format: `apphub.googleapis.com/{metadataType}`
92+
* @param extendedMetadata extendedMetadata or {@code null} for none
93+
*/
94+
public WorkloadProperties setExtendedMetadata(java.util.Map<String, ExtendedMetadata> extendedMetadata) {
95+
this.extendedMetadata = extendedMetadata;
96+
return this;
97+
}
98+
6399
/**
64100
* Output only. The type of the workload.
65101
* @return value or {@code null} for none

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-rev20251028-2.0.0</version>
12-
<name>App Hub API v1-rev20251028-2.0.0</name>
11+
<version>v1-rev20251110-2.0.0</version>
12+
<name>App Hub API v1-rev20251110-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-rev20251028-2.0.0</version>
25+
<version>v1-rev20251110-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-rev20251028-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apphub:v1-rev20251110-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-rev20251028-2.0.0</version>
25+
<version>v1alpha-rev20251110-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-rev20251028-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apphub:v1alpha-rev20251110-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)