Skip to content

Commit f6d9405

Browse files
1 parent af3772f commit f6d9405

File tree

17 files changed

+1005
-71
lines changed

17 files changed

+1005
-71
lines changed

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

clients/google-api-services-appengine/v1/2.0.0/com/google/api/services/appengine/v1/Appengine.java

Lines changed: 375 additions & 7 deletions
Large diffs are not rendered by default.
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
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.v1.model;
18+
19+
/**
20+
* Request message for Versions.ExportAppImage.
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 ExportAppImageRequest extends com.google.api.client.json.GenericJson {
31+
32+
/**
33+
* Optional. The full resource name of the AR repository to export to. Format:
34+
* projects/{project}/locations/{location}/repositories/{repository} If not specified, defaults to
35+
* projects/{project}/locations/{location}/repositories/gae-standard in the same region as the
36+
* app. The default repository will be created if it does not exist.
37+
* The value may be {@code null}.
38+
*/
39+
@com.google.api.client.util.Key
40+
private java.lang.String destinationRepository;
41+
42+
/**
43+
* Optional. Optional: A service account to use for authenticating to Artifact Registry.
44+
* The value may be {@code null}.
45+
*/
46+
@com.google.api.client.util.Key
47+
private java.lang.String serviceAccount;
48+
49+
/**
50+
* Optional. The full resource name of the AR repository to export to. Format:
51+
* projects/{project}/locations/{location}/repositories/{repository} If not specified, defaults to
52+
* projects/{project}/locations/{location}/repositories/gae-standard in the same region as the
53+
* app. The default repository will be created if it does not exist.
54+
* @return value or {@code null} for none
55+
*/
56+
public java.lang.String getDestinationRepository() {
57+
return destinationRepository;
58+
}
59+
60+
/**
61+
* Optional. The full resource name of the AR repository to export to. Format:
62+
* projects/{project}/locations/{location}/repositories/{repository} If not specified, defaults to
63+
* projects/{project}/locations/{location}/repositories/gae-standard in the same region as the
64+
* app. The default repository will be created if it does not exist.
65+
* @param destinationRepository destinationRepository or {@code null} for none
66+
*/
67+
public ExportAppImageRequest setDestinationRepository(java.lang.String destinationRepository) {
68+
this.destinationRepository = destinationRepository;
69+
return this;
70+
}
71+
72+
/**
73+
* Optional. Optional: A service account to use for authenticating to Artifact Registry.
74+
* @return value or {@code null} for none
75+
*/
76+
public java.lang.String getServiceAccount() {
77+
return serviceAccount;
78+
}
79+
80+
/**
81+
* Optional. Optional: A service account to use for authenticating to Artifact Registry.
82+
* @param serviceAccount serviceAccount or {@code null} for none
83+
*/
84+
public ExportAppImageRequest setServiceAccount(java.lang.String serviceAccount) {
85+
this.serviceAccount = serviceAccount;
86+
return this;
87+
}
88+
89+
@Override
90+
public ExportAppImageRequest set(String fieldName, Object value) {
91+
return (ExportAppImageRequest) super.set(fieldName, value);
92+
}
93+
94+
@Override
95+
public ExportAppImageRequest clone() {
96+
return (ExportAppImageRequest) super.clone();
97+
}
98+
99+
}

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ 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 attempting
49-
* to list all resources across all supported locations.
48+
* ListOperationsRequest.return_partial_success and reads across collections. For example, when
49+
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
5252
@com.google.api.client.util.Key
@@ -88,8 +88,8 @@ 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 attempting
92-
* to list all resources across all supported locations.
91+
* ListOperationsRequest.return_partial_success and reads across collections. For example, when
92+
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
9595
public java.util.List<java.lang.String> getUnreachable() {
@@ -98,8 +98,8 @@ 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 attempting
102-
* to list all resources across all supported locations.
101+
* ListOperationsRequest.return_partial_success and reads across collections. For example, when
102+
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/
105105
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {

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

1515
<inceptionYear>2011</inceptionYear>

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

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

clients/google-api-services-appengine/v1alpha/2.0.0/com/google/api/services/appengine/Appengine.java

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2718,8 +2718,8 @@ public List setPageToken(java.lang.String pageToken) {
27182718
/**
27192719
* When set to true, operations that are reachable are returned as normal, and those that
27202720
* are unreachable are returned in the ListOperationsResponse.unreachable field.This can
2721-
* only be true when reading across collections e.g. when parent is set to
2722-
* "projects/example/locations/-".This field is not by default supported and will result in
2721+
* only be true when reading across collections. For example, when parent is set to
2722+
* "projects/example/locations/-".This field is not supported by default and will result in
27232723
* an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or
27242724
* product specific documentation.
27252725
*/
@@ -2728,9 +2728,9 @@ public List setPageToken(java.lang.String pageToken) {
27282728

27292729
/** When set to true, operations that are reachable are returned as normal, and those that are
27302730
unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when
2731-
reading across collections e.g. when parent is set to "projects/example/locations/-".This field is
2732-
not by default supported and will result in an UNIMPLEMENTED error if set unless explicitly
2733-
documented otherwise in service or product specific documentation.
2731+
reading across collections. For example, when parent is set to "projects/example/locations/-".This
2732+
field is not supported by default and will result in an UNIMPLEMENTED error if set unless
2733+
explicitly documented otherwise in service or product specific documentation.
27342734
*/
27352735
public java.lang.Boolean getReturnPartialSuccess() {
27362736
return returnPartialSuccess;
@@ -2739,8 +2739,8 @@ public java.lang.Boolean getReturnPartialSuccess() {
27392739
/**
27402740
* When set to true, operations that are reachable are returned as normal, and those that
27412741
* are unreachable are returned in the ListOperationsResponse.unreachable field.This can
2742-
* only be true when reading across collections e.g. when parent is set to
2743-
* "projects/example/locations/-".This field is not by default supported and will result in
2742+
* only be true when reading across collections. For example, when parent is set to
2743+
* "projects/example/locations/-".This field is not supported by default and will result in
27442744
* an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or
27452745
* product specific documentation.
27462746
*/
@@ -5829,8 +5829,8 @@ public List setPageToken(java.lang.String pageToken) {
58295829
/**
58305830
* When set to true, operations that are reachable are returned as normal, and those that
58315831
* are unreachable are returned in the ListOperationsResponse.unreachable field.This can
5832-
* only be true when reading across collections e.g. when parent is set to
5833-
* "projects/example/locations/-".This field is not by default supported and will result
5832+
* only be true when reading across collections. For example, when parent is set to
5833+
* "projects/example/locations/-".This field is not supported by default and will result
58345834
* in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or
58355835
* product specific documentation.
58365836
*/
@@ -5839,9 +5839,9 @@ public List setPageToken(java.lang.String pageToken) {
58395839

58405840
/** When set to true, operations that are reachable are returned as normal, and those that are
58415841
unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when
5842-
reading across collections e.g. when parent is set to "projects/example/locations/-".This field is
5843-
not by default supported and will result in an UNIMPLEMENTED error if set unless explicitly
5844-
documented otherwise in service or product specific documentation.
5842+
reading across collections. For example, when parent is set to "projects/example/locations/-".This
5843+
field is not supported by default and will result in an UNIMPLEMENTED error if set unless
5844+
explicitly documented otherwise in service or product specific documentation.
58455845
*/
58465846
public java.lang.Boolean getReturnPartialSuccess() {
58475847
return returnPartialSuccess;
@@ -5850,8 +5850,8 @@ public java.lang.Boolean getReturnPartialSuccess() {
58505850
/**
58515851
* When set to true, operations that are reachable are returned as normal, and those that
58525852
* are unreachable are returned in the ListOperationsResponse.unreachable field.This can
5853-
* only be true when reading across collections e.g. when parent is set to
5854-
* "projects/example/locations/-".This field is not by default supported and will result
5853+
* only be true when reading across collections. For example, when parent is set to
5854+
* "projects/example/locations/-".This field is not supported by default and will result
58555855
* in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or
58565856
* product specific documentation.
58575857
*/

clients/google-api-services-appengine/v1alpha/2.0.0/com/google/api/services/appengine/model/ListOperationsResponse.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ 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 attempting
49-
* to list all resources across all supported locations.
48+
* ListOperationsRequest.return_partial_success and reads across collections. For example, when
49+
* attempting to list all resources across all supported locations.
5050
* The value may be {@code null}.
5151
*/
5252
@com.google.api.client.util.Key
@@ -88,8 +88,8 @@ 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 attempting
92-
* to list all resources across all supported locations.
91+
* ListOperationsRequest.return_partial_success and reads across collections. For example, when
92+
* attempting to list all resources across all supported locations.
9393
* @return value or {@code null} for none
9494
*/
9595
public java.util.List<java.lang.String> getUnreachable() {
@@ -98,8 +98,8 @@ 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 attempting
102-
* to list all resources across all supported locations.
101+
* ListOperationsRequest.return_partial_success and reads across collections. For example, when
102+
* attempting to list all resources across all supported locations.
103103
* @param unreachable unreachable or {@code null} for none
104104
*/
105105
public ListOperationsResponse setUnreachable(java.util.List<java.lang.String> unreachable) {

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

1515
<inceptionYear>2011</inceptionYear>

0 commit comments

Comments
 (0)