Skip to content

Commit aa91f84

Browse files
1 parent 519ad67 commit aa91f84

File tree

6 files changed

+219
-8
lines changed

6 files changed

+219
-8
lines changed

clients/google-api-services-firebaseappdistribution/v1/2.0.0/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
<windowtitle>Firebase App Distribution API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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

clients/google-api-services-firebaseappdistribution/v1alpha/2.0.0/com/google/api/services/firebaseappdistribution/v1alpha/FirebaseAppDistribution.java

Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2699,6 +2699,147 @@ public TestCases testCases() {
26992699
*/
27002700
public class TestCases {
27012701

2702+
/**
2703+
* Delete test cases.
2704+
*
2705+
* Create a request for the method "testCases.batchDelete".
2706+
*
2707+
* This request holds the parameters needed by the firebaseappdistribution server. After setting
2708+
* any optional parameters, call the {@link BatchDelete#execute()} method to invoke the remote
2709+
* operation.
2710+
*
2711+
* @param parent Required. The parent resource where these test cases will be deleted. Format:
2712+
* `projects/{project_number}/apps/{app_id}`
2713+
* @param content the {@link com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest}
2714+
* @return the request
2715+
*/
2716+
public BatchDelete batchDelete(java.lang.String parent, com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest content) throws java.io.IOException {
2717+
BatchDelete result = new BatchDelete(parent, content);
2718+
initialize(result);
2719+
return result;
2720+
}
2721+
2722+
public class BatchDelete extends FirebaseAppDistributionRequest<com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleProtobufEmpty> {
2723+
2724+
private static final String REST_PATH = "v1alpha/{+parent}/testCases:batchDelete";
2725+
2726+
private final java.util.regex.Pattern PARENT_PATTERN =
2727+
java.util.regex.Pattern.compile("^projects/[^/]+/apps/[^/]+$");
2728+
2729+
/**
2730+
* Delete test cases.
2731+
*
2732+
* Create a request for the method "testCases.batchDelete".
2733+
*
2734+
* This request holds the parameters needed by the the firebaseappdistribution server. After
2735+
* setting any optional parameters, call the {@link BatchDelete#execute()} method to invoke the
2736+
* remote operation. <p> {@link
2737+
* BatchDelete#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)}
2738+
* must be called to initialize this instance immediately after invoking the constructor. </p>
2739+
*
2740+
* @param parent Required. The parent resource where these test cases will be deleted. Format:
2741+
* `projects/{project_number}/apps/{app_id}`
2742+
* @param content the {@link com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest}
2743+
* @since 1.13
2744+
*/
2745+
protected BatchDelete(java.lang.String parent, com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest content) {
2746+
super(FirebaseAppDistribution.this, "POST", REST_PATH, content, com.google.api.services.firebaseappdistribution.v1alpha.model.GoogleProtobufEmpty.class);
2747+
this.parent = com.google.api.client.util.Preconditions.checkNotNull(parent, "Required parameter parent must be specified.");
2748+
if (!getSuppressPatternChecks()) {
2749+
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
2750+
"Parameter parent must conform to the pattern " +
2751+
"^projects/[^/]+/apps/[^/]+$");
2752+
}
2753+
}
2754+
2755+
@Override
2756+
public BatchDelete set$Xgafv(java.lang.String $Xgafv) {
2757+
return (BatchDelete) super.set$Xgafv($Xgafv);
2758+
}
2759+
2760+
@Override
2761+
public BatchDelete setAccessToken(java.lang.String accessToken) {
2762+
return (BatchDelete) super.setAccessToken(accessToken);
2763+
}
2764+
2765+
@Override
2766+
public BatchDelete setAlt(java.lang.String alt) {
2767+
return (BatchDelete) super.setAlt(alt);
2768+
}
2769+
2770+
@Override
2771+
public BatchDelete setCallback(java.lang.String callback) {
2772+
return (BatchDelete) super.setCallback(callback);
2773+
}
2774+
2775+
@Override
2776+
public BatchDelete setFields(java.lang.String fields) {
2777+
return (BatchDelete) super.setFields(fields);
2778+
}
2779+
2780+
@Override
2781+
public BatchDelete setKey(java.lang.String key) {
2782+
return (BatchDelete) super.setKey(key);
2783+
}
2784+
2785+
@Override
2786+
public BatchDelete setOauthToken(java.lang.String oauthToken) {
2787+
return (BatchDelete) super.setOauthToken(oauthToken);
2788+
}
2789+
2790+
@Override
2791+
public BatchDelete setPrettyPrint(java.lang.Boolean prettyPrint) {
2792+
return (BatchDelete) super.setPrettyPrint(prettyPrint);
2793+
}
2794+
2795+
@Override
2796+
public BatchDelete setQuotaUser(java.lang.String quotaUser) {
2797+
return (BatchDelete) super.setQuotaUser(quotaUser);
2798+
}
2799+
2800+
@Override
2801+
public BatchDelete setUploadType(java.lang.String uploadType) {
2802+
return (BatchDelete) super.setUploadType(uploadType);
2803+
}
2804+
2805+
@Override
2806+
public BatchDelete setUploadProtocol(java.lang.String uploadProtocol) {
2807+
return (BatchDelete) super.setUploadProtocol(uploadProtocol);
2808+
}
2809+
2810+
/**
2811+
* Required. The parent resource where these test cases will be deleted. Format:
2812+
* `projects/{project_number}/apps/{app_id}`
2813+
*/
2814+
@com.google.api.client.util.Key
2815+
private java.lang.String parent;
2816+
2817+
/** Required. The parent resource where these test cases will be deleted. Format:
2818+
`projects/{project_number}/apps/{app_id}`
2819+
*/
2820+
public java.lang.String getParent() {
2821+
return parent;
2822+
}
2823+
2824+
/**
2825+
* Required. The parent resource where these test cases will be deleted. Format:
2826+
* `projects/{project_number}/apps/{app_id}`
2827+
*/
2828+
public BatchDelete setParent(java.lang.String parent) {
2829+
if (!getSuppressPatternChecks()) {
2830+
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
2831+
"Parameter parent must conform to the pattern " +
2832+
"^projects/[^/]+/apps/[^/]+$");
2833+
}
2834+
this.parent = parent;
2835+
return this;
2836+
}
2837+
2838+
@Override
2839+
public BatchDelete set(String parameterName, Object value) {
2840+
return (BatchDelete) super.set(parameterName, value);
2841+
}
2842+
}
27022843
/**
27032844
* Create a new test case.
27042845
*
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
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.firebaseappdistribution.v1alpha.model;
18+
19+
/**
20+
* The request message for `DeleteTestCase`.
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 Firebase App Distribution API. For a detailed
24+
* explanation see:
25+
* <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>
26+
* </p>
27+
*
28+
* @author Google, Inc.
29+
*/
30+
@SuppressWarnings("javadoc")
31+
public final class GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Required. The name of the test cases to delete. A maximum number of 1000 test cases can be
35+
* deleted in one batch Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}`
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.util.List<java.lang.String> names;
40+
41+
/**
42+
* Required. The name of the test cases to delete. A maximum number of 1000 test cases can be
43+
* deleted in one batch Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}`
44+
* @return value or {@code null} for none
45+
*/
46+
public java.util.List<java.lang.String> getNames() {
47+
return names;
48+
}
49+
50+
/**
51+
* Required. The name of the test cases to delete. A maximum number of 1000 test cases can be
52+
* deleted in one batch Format: `projects/{project_number}/apps/{app_id}/testCases/{test_case_id}`
53+
* @param names names or {@code null} for none
54+
*/
55+
public GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest setNames(java.util.List<java.lang.String> names) {
56+
this.names = names;
57+
return this;
58+
}
59+
60+
@Override
61+
public GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest set(String fieldName, Object value) {
62+
return (GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest) super.set(fieldName, value);
63+
}
64+
65+
@Override
66+
public GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest clone() {
67+
return (GoogleFirebaseAppdistroV1alphaBatchDeleteTestCasesRequest) super.clone();
68+
}
69+
70+
}

clients/google-api-services-firebaseappdistribution/v1alpha/2.0.0/pom.xml

Lines changed: 3 additions & 3 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-firebaseappdistribution</artifactId>
11-
<version>v1alpha-rev20250219-2.0.0</version>
12-
<name>Firebase App Distribution API v1alpha-rev20250219-2.0.0</name>
11+
<version>v1alpha-rev20250303-2.0.0</version>
12+
<name>Firebase App Distribution API v1alpha-rev20250303-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>
@@ -90,7 +90,7 @@
9090
<windowtitle>Firebase App Distribution API ${project.version}</windowtitle>
9191
<links>
9292
<link>http://docs.oracle.com/javase/7/docs/api</link>
93-
<link>https://googleapis.dev/java/google-http-client/1.46.1/</link>
93+
<link>https://googleapis.dev/java/google-http-client/1.46.3/</link>
9494
<link>https://googleapis.dev/java/google-oauth-client/1.38.0/</link>
9595
<link>https://googleapis.dev/java/google-api-client/2.7.2/</link>
9696
</links>

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

0 commit comments

Comments
 (0)