Skip to content

Commit b7dd026

Browse files
chore: regenerate firebaseappdistribution client (#28355)
Generated in GitHub action: https://togithub.com/googleapis/googleapis/google-api-java-client-services/actions/workflows/codegen.yaml
1 parent 217eadd commit b7dd026

File tree

6 files changed

+212
-6
lines changed

6 files changed

+212
-6
lines changed

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

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

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,20 @@
3030
@SuppressWarnings("javadoc")
3131
public final class GoogleFirebaseAppdistroV1alphaDeviceInteraction extends com.google.api.client.json.GenericJson {
3232

33+
/**
34+
* Output only. A back action.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleFirebaseAppdistroV1alphaDeviceInteractionBack backAction;
39+
40+
/**
41+
* Output only. A drag and drop action.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop dragAndDrop;
46+
3347
/**
3448
* Output only. A text entry action, that enters text into a particular text field, clearing any
3549
* existing text in the field. Unlike `text_input` this action does not require any other actions
@@ -46,6 +60,13 @@ public final class GoogleFirebaseAppdistroV1alphaDeviceInteraction extends com.g
4660
@com.google.api.client.util.Key
4761
private java.lang.String keyCode;
4862

63+
/**
64+
* Output only. A long press (tap and hold) action.
65+
* The value may be {@code null}.
66+
*/
67+
@com.google.api.client.util.Key
68+
private AndroidxCrawlerOutputPoint longPress;
69+
4970
/**
5071
* Output only. The screenshot used in the context of this action. The screen may have changed
5172
* before the action was actually taken.
@@ -84,6 +105,40 @@ public final class GoogleFirebaseAppdistroV1alphaDeviceInteraction extends com.g
84105
@com.google.api.client.util.Key
85106
private GoogleFirebaseAppdistroV1alphaDeviceInteractionWait wait;
86107

108+
/**
109+
* Output only. A back action.
110+
* @return value or {@code null} for none
111+
*/
112+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionBack getBackAction() {
113+
return backAction;
114+
}
115+
116+
/**
117+
* Output only. A back action.
118+
* @param backAction backAction or {@code null} for none
119+
*/
120+
public GoogleFirebaseAppdistroV1alphaDeviceInteraction setBackAction(GoogleFirebaseAppdistroV1alphaDeviceInteractionBack backAction) {
121+
this.backAction = backAction;
122+
return this;
123+
}
124+
125+
/**
126+
* Output only. A drag and drop action.
127+
* @return value or {@code null} for none
128+
*/
129+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop getDragAndDrop() {
130+
return dragAndDrop;
131+
}
132+
133+
/**
134+
* Output only. A drag and drop action.
135+
* @param dragAndDrop dragAndDrop or {@code null} for none
136+
*/
137+
public GoogleFirebaseAppdistroV1alphaDeviceInteraction setDragAndDrop(GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop dragAndDrop) {
138+
this.dragAndDrop = dragAndDrop;
139+
return this;
140+
}
141+
87142
/**
88143
* Output only. A text entry action, that enters text into a particular text field, clearing any
89144
* existing text in the field. Unlike `text_input` this action does not require any other actions
@@ -122,6 +177,23 @@ public GoogleFirebaseAppdistroV1alphaDeviceInteraction setKeyCode(java.lang.Stri
122177
return this;
123178
}
124179

180+
/**
181+
* Output only. A long press (tap and hold) action.
182+
* @return value or {@code null} for none
183+
*/
184+
public AndroidxCrawlerOutputPoint getLongPress() {
185+
return longPress;
186+
}
187+
188+
/**
189+
* Output only. A long press (tap and hold) action.
190+
* @param longPress longPress or {@code null} for none
191+
*/
192+
public GoogleFirebaseAppdistroV1alphaDeviceInteraction setLongPress(AndroidxCrawlerOutputPoint longPress) {
193+
this.longPress = longPress;
194+
return this;
195+
}
196+
125197
/**
126198
* Output only. The screenshot used in the context of this action. The screen may have changed
127199
* before the action was actually taken.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
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+
* A back action.
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 GoogleFirebaseAppdistroV1alphaDeviceInteractionBack extends com.google.api.client.json.GenericJson {
32+
33+
@Override
34+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionBack set(String fieldName, Object value) {
35+
return (GoogleFirebaseAppdistroV1alphaDeviceInteractionBack) super.set(fieldName, value);
36+
}
37+
38+
@Override
39+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionBack clone() {
40+
return (GoogleFirebaseAppdistroV1alphaDeviceInteractionBack) super.clone();
41+
}
42+
43+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
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+
* A drag and drop action.
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 GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Output only. The end point of the drag and drop.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private AndroidxCrawlerOutputPoint end;
39+
40+
/**
41+
* Output only. The start point of the drag and drop.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private AndroidxCrawlerOutputPoint start;
46+
47+
/**
48+
* Output only. The end point of the drag and drop.
49+
* @return value or {@code null} for none
50+
*/
51+
public AndroidxCrawlerOutputPoint getEnd() {
52+
return end;
53+
}
54+
55+
/**
56+
* Output only. The end point of the drag and drop.
57+
* @param end end or {@code null} for none
58+
*/
59+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop setEnd(AndroidxCrawlerOutputPoint end) {
60+
this.end = end;
61+
return this;
62+
}
63+
64+
/**
65+
* Output only. The start point of the drag and drop.
66+
* @return value or {@code null} for none
67+
*/
68+
public AndroidxCrawlerOutputPoint getStart() {
69+
return start;
70+
}
71+
72+
/**
73+
* Output only. The start point of the drag and drop.
74+
* @param start start or {@code null} for none
75+
*/
76+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop setStart(AndroidxCrawlerOutputPoint start) {
77+
this.start = start;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop set(String fieldName, Object value) {
83+
return (GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop clone() {
88+
return (GoogleFirebaseAppdistroV1alphaDeviceInteractionDragAndDrop) super.clone();
89+
}
90+
91+
}

clients/google-api-services-firebaseappdistribution/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-firebaseappdistribution</artifactId>
11-
<version>v1alpha-rev20250808-2.0.0</version>
12-
<name>Firebase App Distribution API v1alpha-rev20250808-2.0.0</name>
11+
<version>v1alpha-rev20250811-2.0.0</version>
12+
<name>Firebase App Distribution API v1alpha-rev20250811-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)