Skip to content

Commit 8b8a791

Browse files
1 parent 8256b99 commit 8b8a791

File tree

7 files changed

+303
-6
lines changed

7 files changed

+303
-6
lines changed

clients/google-api-services-appengine/v1beta/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-appengine</artifactId>
25-
<version>v1beta-rev20250930-2.0.0</version>
25+
<version>v1beta-rev20251005-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-appengine:v1beta-rev20250930-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appengine:v1beta-rev20251005-2.0.0'
3939
}
4040
```
4141

Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
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.appengine.model;
18+
19+
/**
20+
* Subnetwork key message.
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 Engine Admin 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 SubnetworkKey extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Project id (name not number) of the project that hosts the network
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String hostProjectId;
38+
39+
/**
40+
* Short name of the subnetwork. e.g. SUBNET instead of
41+
* projects/{PROJECT_NAME}/regions/{REGION}/subnetworks/{SUBNET}
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String subnet;
46+
47+
/**
48+
* Project id (name not number) of the project that hosts the network
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getHostProjectId() {
52+
return hostProjectId;
53+
}
54+
55+
/**
56+
* Project id (name not number) of the project that hosts the network
57+
* @param hostProjectId hostProjectId or {@code null} for none
58+
*/
59+
public SubnetworkKey setHostProjectId(java.lang.String hostProjectId) {
60+
this.hostProjectId = hostProjectId;
61+
return this;
62+
}
63+
64+
/**
65+
* Short name of the subnetwork. e.g. SUBNET instead of
66+
* projects/{PROJECT_NAME}/regions/{REGION}/subnetworks/{SUBNET}
67+
* @return value or {@code null} for none
68+
*/
69+
public java.lang.String getSubnet() {
70+
return subnet;
71+
}
72+
73+
/**
74+
* Short name of the subnetwork. e.g. SUBNET instead of
75+
* projects/{PROJECT_NAME}/regions/{REGION}/subnetworks/{SUBNET}
76+
* @param subnet subnet or {@code null} for none
77+
*/
78+
public SubnetworkKey setSubnet(java.lang.String subnet) {
79+
this.subnet = subnet;
80+
return this;
81+
}
82+
83+
@Override
84+
public SubnetworkKey set(String fieldName, Object value) {
85+
return (SubnetworkKey) super.set(fieldName, value);
86+
}
87+
88+
@Override
89+
public SubnetworkKey clone() {
90+
return (SubnetworkKey) super.clone();
91+
}
92+
93+
}

clients/google-api-services-appengine/v1beta/2.0.0/com/google/api/services/appengine/model/Version.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,13 @@ public final class Version extends com.google.api.client.json.GenericJson {
371371
@com.google.api.client.util.Key
372372
private VpcAccessConnector vpcAccessConnector;
373373

374+
/**
375+
* Enables VPC egress connectivity for standard apps.
376+
* The value may be {@code null}.
377+
*/
378+
@com.google.api.client.util.Key
379+
private VpcEgress vpcEgress;
380+
374381
/**
375382
* The Google Compute Engine zones that are supported by this version in the App Engine flexible
376383
* environment. Deprecated.
@@ -1148,6 +1155,23 @@ public Version setVpcAccessConnector(VpcAccessConnector vpcAccessConnector) {
11481155
return this;
11491156
}
11501157

1158+
/**
1159+
* Enables VPC egress connectivity for standard apps.
1160+
* @return value or {@code null} for none
1161+
*/
1162+
public VpcEgress getVpcEgress() {
1163+
return vpcEgress;
1164+
}
1165+
1166+
/**
1167+
* Enables VPC egress connectivity for standard apps.
1168+
* @param vpcEgress vpcEgress or {@code null} for none
1169+
*/
1170+
public Version setVpcEgress(VpcEgress vpcEgress) {
1171+
this.vpcEgress = vpcEgress;
1172+
return this;
1173+
}
1174+
11511175
/**
11521176
* The Google Compute Engine zones that are supported by this version in the App Engine flexible
11531177
* environment. Deprecated.
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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.appengine.model;
18+
19+
/**
20+
* Vpc Egress configuration.
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 Engine Admin 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 VpcEgress extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* The egress setting for the subnetwork, controlling what traffic is diverted through it.
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String egressSetting;
38+
39+
/**
40+
* The network tags to apply to the instance.
41+
* The value may be {@code null}.
42+
*/
43+
@com.google.api.client.util.Key
44+
private java.util.List<VpcNetworkTag> networkTags;
45+
46+
/**
47+
* The subnetwork key.
48+
* The value may be {@code null}.
49+
*/
50+
@com.google.api.client.util.Key
51+
private SubnetworkKey subnetworkKey;
52+
53+
/**
54+
* The egress setting for the subnetwork, controlling what traffic is diverted through it.
55+
* @return value or {@code null} for none
56+
*/
57+
public java.lang.String getEgressSetting() {
58+
return egressSetting;
59+
}
60+
61+
/**
62+
* The egress setting for the subnetwork, controlling what traffic is diverted through it.
63+
* @param egressSetting egressSetting or {@code null} for none
64+
*/
65+
public VpcEgress setEgressSetting(java.lang.String egressSetting) {
66+
this.egressSetting = egressSetting;
67+
return this;
68+
}
69+
70+
/**
71+
* The network tags to apply to the instance.
72+
* @return value or {@code null} for none
73+
*/
74+
public java.util.List<VpcNetworkTag> getNetworkTags() {
75+
return networkTags;
76+
}
77+
78+
/**
79+
* The network tags to apply to the instance.
80+
* @param networkTags networkTags or {@code null} for none
81+
*/
82+
public VpcEgress setNetworkTags(java.util.List<VpcNetworkTag> networkTags) {
83+
this.networkTags = networkTags;
84+
return this;
85+
}
86+
87+
/**
88+
* The subnetwork key.
89+
* @return value or {@code null} for none
90+
*/
91+
public SubnetworkKey getSubnetworkKey() {
92+
return subnetworkKey;
93+
}
94+
95+
/**
96+
* The subnetwork key.
97+
* @param subnetworkKey subnetworkKey or {@code null} for none
98+
*/
99+
public VpcEgress setSubnetworkKey(SubnetworkKey subnetworkKey) {
100+
this.subnetworkKey = subnetworkKey;
101+
return this;
102+
}
103+
104+
@Override
105+
public VpcEgress set(String fieldName, Object value) {
106+
return (VpcEgress) super.set(fieldName, value);
107+
}
108+
109+
@Override
110+
public VpcEgress clone() {
111+
return (VpcEgress) super.clone();
112+
}
113+
114+
}
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.appengine.model;
18+
19+
/**
20+
* Network tag message.
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 Engine Admin 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 VpcNetworkTag extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* value for the tag name
34+
* The value may be {@code null}.
35+
*/
36+
@com.google.api.client.util.Key
37+
private java.lang.String value;
38+
39+
/**
40+
* value for the tag name
41+
* @return value or {@code null} for none
42+
*/
43+
public java.lang.String getValue() {
44+
return value;
45+
}
46+
47+
/**
48+
* value for the tag name
49+
* @param value value or {@code null} for none
50+
*/
51+
public VpcNetworkTag setValue(java.lang.String value) {
52+
this.value = value;
53+
return this;
54+
}
55+
56+
@Override
57+
public VpcNetworkTag set(String fieldName, Object value) {
58+
return (VpcNetworkTag) super.set(fieldName, value);
59+
}
60+
61+
@Override
62+
public VpcNetworkTag clone() {
63+
return (VpcNetworkTag) super.clone();
64+
}
65+
66+
}

clients/google-api-services-appengine/v1beta/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-appengine</artifactId>
11-
<version>v1beta-rev20250930-2.0.0</version>
12-
<name>App Engine Admin API v1beta-rev20250930-2.0.0</name>
11+
<version>v1beta-rev20251005-2.0.0</version>
12+
<name>App Engine Admin API v1beta-rev20251005-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-appengine/v1beta/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-appengine</artifactId>
25-
<version>v1beta-rev20250930-2.0.0</version>
25+
<version>v1beta-rev20251005-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-appengine:v1beta-rev20250930-2.0.0'
38+
implementation 'com.google.apis:google-api-services-appengine:v1beta-rev20251005-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)