Skip to content

Commit fb18bcc

Browse files
1 parent 2d6e461 commit fb18bcc

File tree

18 files changed

+1336
-38
lines changed

18 files changed

+1336
-38
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-rev20251110-2.0.0</version>
25+
<version>v1-rev20251114-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-rev20251110-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apphub:v1-rev20251114-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: 371 additions & 10 deletions
Large diffs are not rendered by default.
Lines changed: 168 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,168 @@
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+
* Application management boundary.
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 Boundary extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Create time.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private String createTime;
38+
39+
/**
40+
* Optional. The resource name of the CRM node being attached to the boundary. Format:
41+
* `projects/{project-number}` or `projects/{project-id}`
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String crmNode;
46+
47+
/**
48+
* Identifier. The resource name of the boundary. Format:
49+
* "projects/{project}/locations/{location}/boundary"
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.lang.String name;
54+
55+
/**
56+
* Output only. Boundary type.
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String type;
61+
62+
/**
63+
* Output only. Update time.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private String updateTime;
68+
69+
/**
70+
* Output only. Create time.
71+
* @return value or {@code null} for none
72+
*/
73+
public String getCreateTime() {
74+
return createTime;
75+
}
76+
77+
/**
78+
* Output only. Create time.
79+
* @param createTime createTime or {@code null} for none
80+
*/
81+
public Boundary setCreateTime(String createTime) {
82+
this.createTime = createTime;
83+
return this;
84+
}
85+
86+
/**
87+
* Optional. The resource name of the CRM node being attached to the boundary. Format:
88+
* `projects/{project-number}` or `projects/{project-id}`
89+
* @return value or {@code null} for none
90+
*/
91+
public java.lang.String getCrmNode() {
92+
return crmNode;
93+
}
94+
95+
/**
96+
* Optional. The resource name of the CRM node being attached to the boundary. Format:
97+
* `projects/{project-number}` or `projects/{project-id}`
98+
* @param crmNode crmNode or {@code null} for none
99+
*/
100+
public Boundary setCrmNode(java.lang.String crmNode) {
101+
this.crmNode = crmNode;
102+
return this;
103+
}
104+
105+
/**
106+
* Identifier. The resource name of the boundary. Format:
107+
* "projects/{project}/locations/{location}/boundary"
108+
* @return value or {@code null} for none
109+
*/
110+
public java.lang.String getName() {
111+
return name;
112+
}
113+
114+
/**
115+
* Identifier. The resource name of the boundary. Format:
116+
* "projects/{project}/locations/{location}/boundary"
117+
* @param name name or {@code null} for none
118+
*/
119+
public Boundary setName(java.lang.String name) {
120+
this.name = name;
121+
return this;
122+
}
123+
124+
/**
125+
* Output only. Boundary type.
126+
* @return value or {@code null} for none
127+
*/
128+
public java.lang.String getType() {
129+
return type;
130+
}
131+
132+
/**
133+
* Output only. Boundary type.
134+
* @param type type or {@code null} for none
135+
*/
136+
public Boundary setType(java.lang.String type) {
137+
this.type = type;
138+
return this;
139+
}
140+
141+
/**
142+
* Output only. Update time.
143+
* @return value or {@code null} for none
144+
*/
145+
public String getUpdateTime() {
146+
return updateTime;
147+
}
148+
149+
/**
150+
* Output only. Update time.
151+
* @param updateTime updateTime or {@code null} for none
152+
*/
153+
public Boundary setUpdateTime(String updateTime) {
154+
this.updateTime = updateTime;
155+
return this;
156+
}
157+
158+
@Override
159+
public Boundary set(String fieldName, Object value) {
160+
return (Boundary) super.set(fieldName, value);
161+
}
162+
163+
@Override
164+
public Boundary clone() {
165+
return (Boundary) super.clone();
166+
}
167+
168+
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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 identity associated with 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 Identity extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Output only. Principal of the identity. Supported formats: * `sa://my-
34+
* sa@xxxx.iam.gserviceaccount.com` for GCP Service Account * `principal://POOL_ID.global.PROJECT_
35+
* NUMBER.workload.id.goog/ns/NAMESPACE_ID/sa/MANAGED_IDENTITY_ID` for Managed Workload Identity
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String principal;
40+
41+
/**
42+
* Output only. Principal of the identity. Supported formats: * `sa://my-
43+
* sa@xxxx.iam.gserviceaccount.com` for GCP Service Account * `principal://POOL_ID.global.PROJECT_
44+
* NUMBER.workload.id.goog/ns/NAMESPACE_ID/sa/MANAGED_IDENTITY_ID` for Managed Workload Identity
45+
* @return value or {@code null} for none
46+
*/
47+
public java.lang.String getPrincipal() {
48+
return principal;
49+
}
50+
51+
/**
52+
* Output only. Principal of the identity. Supported formats: * `sa://my-
53+
* sa@xxxx.iam.gserviceaccount.com` for GCP Service Account * `principal://POOL_ID.global.PROJECT_
54+
* NUMBER.workload.id.goog/ns/NAMESPACE_ID/sa/MANAGED_IDENTITY_ID` for Managed Workload Identity
55+
* @param principal principal or {@code null} for none
56+
*/
57+
public Identity setPrincipal(java.lang.String principal) {
58+
this.principal = principal;
59+
return this;
60+
}
61+
62+
@Override
63+
public Identity set(String fieldName, Object value) {
64+
return (Identity) super.set(fieldName, value);
65+
}
66+
67+
@Override
68+
public Identity clone() {
69+
return (Identity) super.clone();
70+
}
71+
72+
}

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public final class ListOperationsResponse extends com.google.api.client.json.Gen
4545

4646
/**
4747
* Unordered list. Unreachable resources. Populated when the request sets
48-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
48+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
4949
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
@@ -88,7 +88,7 @@ public ListOperationsResponse setOperations(java.util.List<Operation> operations
8888

8989
/**
9090
* Unordered list. Unreachable resources. Populated when the request sets
91-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
91+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
9292
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
@@ -98,7 +98,7 @@ public java.util.List<java.lang.String> getUnreachable() {
9898

9999
/**
100100
* Unordered list. Unreachable resources. Populated when the request sets
101-
* `ListOperationsRequest.return_partial_success` and reads across collections e.g. when
101+
* `ListOperationsRequest.return_partial_success` and reads across collections. For example, when
102102
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/

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
@@ -58,6 +58,13 @@ public final class ServiceProperties extends com.google.api.client.json.GenericJ
5858
@com.google.api.client.util.Key
5959
private java.lang.String gcpProject;
6060

61+
/**
62+
* Output only. The identity associated with the service.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private Identity identity;
67+
6168
/**
6269
* Output only. The location that the underlying resource resides in, for example, us-west1.
6370
* The value may be {@code null}.
@@ -135,6 +142,23 @@ public ServiceProperties setGcpProject(java.lang.String gcpProject) {
135142
return this;
136143
}
137144

145+
/**
146+
* Output only. The identity associated with the service.
147+
* @return value or {@code null} for none
148+
*/
149+
public Identity getIdentity() {
150+
return identity;
151+
}
152+
153+
/**
154+
* Output only. The identity associated with the service.
155+
* @param identity identity or {@code null} for none
156+
*/
157+
public ServiceProperties setIdentity(Identity identity) {
158+
this.identity = identity;
159+
return this;
160+
}
161+
138162
/**
139163
* Output only. The location that the underlying resource resides in, for example, us-west1.
140164
* @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
@@ -59,6 +59,13 @@ public final class WorkloadProperties extends com.google.api.client.json.Generic
5959
@com.google.api.client.util.Key
6060
private java.lang.String gcpProject;
6161

62+
/**
63+
* Output only. The identity associated with the workload.
64+
* The value may be {@code null}.
65+
*/
66+
@com.google.api.client.util.Key
67+
private Identity identity;
68+
6269
/**
6370
* Output only. The location that the underlying compute resource resides in (for example, us-
6471
* west1).
@@ -132,6 +139,23 @@ public WorkloadProperties setGcpProject(java.lang.String gcpProject) {
132139
return this;
133140
}
134141

142+
/**
143+
* Output only. The identity associated with the workload.
144+
* @return value or {@code null} for none
145+
*/
146+
public Identity getIdentity() {
147+
return identity;
148+
}
149+
150+
/**
151+
* Output only. The identity associated with the workload.
152+
* @param identity identity or {@code null} for none
153+
*/
154+
public WorkloadProperties setIdentity(Identity identity) {
155+
this.identity = identity;
156+
return this;
157+
}
158+
135159
/**
136160
* Output only. The location that the underlying compute resource resides in (for example, us-
137161
* west1).

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

0 commit comments

Comments
 (0)