Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions clients/google-api-services-appengine/v1/2.0.0/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-appengine</artifactId>
<version>v1-rev20260429-2.0.0</version>
<version>v1-rev20260717-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-appengine:v1-rev20260429-2.0.0'
implementation 'com.google.apis:google-api-services-appengine:v1-rev20260717-2.0.0'
}
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ public final class Version extends com.google.api.client.json.GenericJson {
@com.google.api.client.util.Key
private java.lang.Boolean appEngineApis;

/**
* List of specific App Engine Bundled Services that are enabled for this Version.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<java.lang.String> appEngineBundledServices;

/**
* Automatic scaling is based on request rate, response latencies, and other application metrics.
* Instances are dynamically created and destroyed as needed in order to handle traffic.
Expand Down Expand Up @@ -415,6 +422,23 @@ public Version setAppEngineApis(java.lang.Boolean appEngineApis) {
return this;
}

/**
* List of specific App Engine Bundled Services that are enabled for this Version.
* @return value or {@code null} for none
*/
public java.util.List<java.lang.String> getAppEngineBundledServices() {
return appEngineBundledServices;
}

/**
* List of specific App Engine Bundled Services that are enabled for this Version.
* @param appEngineBundledServices appEngineBundledServices or {@code null} for none
*/
public Version setAppEngineBundledServices(java.util.List<java.lang.String> appEngineBundledServices) {
this.appEngineBundledServices = appEngineBundledServices;
return this;
}

/**
* Automatic scaling is based on request rate, response latencies, and other application metrics.
* Instances are dynamically created and destroyed as needed in order to handle traffic.
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-appengine/v1/2.0.0/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<groupId>com.google.apis</groupId>
<artifactId>google-api-services-appengine</artifactId>
<version>v1-rev20260429-2.0.0</version>
<name>App Engine Admin API v1-rev20260429-2.0.0</name>
<version>v1-rev20260717-2.0.0</version>
<name>App Engine Admin API v1-rev20260717-2.0.0</name>
<packaging>jar</packaging>

<inceptionYear>2011</inceptionYear>
Expand Down
4 changes: 2 additions & 2 deletions clients/google-api-services-appengine/v1/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-appengine</artifactId>
<version>v1-rev20260429-2.0.0</version>
<version>v1-rev20260717-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-appengine:v1-rev20260429-2.0.0'
implementation 'com.google.apis:google-api-services-appengine:v1-rev20260717-2.0.0'
}
```

Expand Down
Loading