Skip to content

Commit 4f0b1c3

Browse files
1 parent 9cb3e39 commit 4f0b1c3

File tree

6 files changed

+111
-6
lines changed

6 files changed

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

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

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,21 @@ public final class GoogleFirebaseAppdistroV1alphaAiStep extends com.google.api.c
4444
@com.google.api.client.util.Key
4545
private java.lang.String goal;
4646

47+
/**
48+
* Optional. Hint text containing suggestions to help the agent accomplish the goal
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.String hint;
53+
54+
/**
55+
* Optional. A description of criteria the agent should use to determine if the goal has been
56+
* successfully completed
57+
* The value may be {@code null}.
58+
*/
59+
@com.google.api.client.util.Key
60+
private java.lang.String successCriteria;
61+
4762
/**
4863
* An assertion to be checked by the AI
4964
* @return value or {@code null} for none
@@ -78,6 +93,42 @@ public GoogleFirebaseAppdistroV1alphaAiStep setGoal(java.lang.String goal) {
7893
return this;
7994
}
8095

96+
/**
97+
* Optional. Hint text containing suggestions to help the agent accomplish the goal
98+
* @return value or {@code null} for none
99+
*/
100+
public java.lang.String getHint() {
101+
return hint;
102+
}
103+
104+
/**
105+
* Optional. Hint text containing suggestions to help the agent accomplish the goal
106+
* @param hint hint or {@code null} for none
107+
*/
108+
public GoogleFirebaseAppdistroV1alphaAiStep setHint(java.lang.String hint) {
109+
this.hint = hint;
110+
return this;
111+
}
112+
113+
/**
114+
* Optional. A description of criteria the agent should use to determine if the goal has been
115+
* successfully completed
116+
* @return value or {@code null} for none
117+
*/
118+
public java.lang.String getSuccessCriteria() {
119+
return successCriteria;
120+
}
121+
122+
/**
123+
* Optional. A description of criteria the agent should use to determine if the goal has been
124+
* successfully completed
125+
* @param successCriteria successCriteria or {@code null} for none
126+
*/
127+
public GoogleFirebaseAppdistroV1alphaAiStep setSuccessCriteria(java.lang.String successCriteria) {
128+
this.successCriteria = successCriteria;
129+
return this;
130+
}
131+
81132
@Override
82133
public GoogleFirebaseAppdistroV1alphaAiStep set(String fieldName, Object value) {
83134
return (GoogleFirebaseAppdistroV1alphaAiStep) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ public final class GoogleFirebaseAppdistroV1alphaReleaseTest extends com.google.
5757
com.google.api.client.util.Data.nullOf(GoogleFirebaseAppdistroV1alphaDeviceExecution.class);
5858
}
5959

60+
/**
61+
* Optional. Display name of the release test. Required if the release test is created with
62+
* multiple goals.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String displayName;
67+
6068
/**
6169
* Optional. Input only. Login credentials for the test. Input only.
6270
* The value may be {@code null}.
@@ -130,6 +138,25 @@ public GoogleFirebaseAppdistroV1alphaReleaseTest setDeviceExecutions(java.util.L
130138
return this;
131139
}
132140

141+
/**
142+
* Optional. Display name of the release test. Required if the release test is created with
143+
* multiple goals.
144+
* @return value or {@code null} for none
145+
*/
146+
public java.lang.String getDisplayName() {
147+
return displayName;
148+
}
149+
150+
/**
151+
* Optional. Display name of the release test. Required if the release test is created with
152+
* multiple goals.
153+
* @param displayName displayName or {@code null} for none
154+
*/
155+
public GoogleFirebaseAppdistroV1alphaReleaseTest setDisplayName(java.lang.String displayName) {
156+
this.displayName = displayName;
157+
return this;
158+
}
159+
133160
/**
134161
* Optional. Input only. Login credentials for the test. Input only.
135162
* @return value or {@code null} for none

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

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

33+
/**
34+
* Optional. Display name of the AI driven test. Required if the release test is created with
35+
* multiple goals.
36+
* The value may be {@code null}.
37+
*/
38+
@com.google.api.client.util.Key
39+
private java.lang.String displayName;
40+
3341
/**
3442
* Identifier. The name of the test configuration resource. Format:
3543
* `projects/{project_number}/apps/{app_id}/testConfig`
@@ -52,6 +60,25 @@ public final class GoogleFirebaseAppdistroV1alphaTestConfig extends com.google.a
5260
@com.google.api.client.util.Key
5361
private java.util.List<GoogleFirebaseAppdistroV1alphaTestDevice> testDevices;
5462

63+
/**
64+
* Optional. Display name of the AI driven test. Required if the release test is created with
65+
* multiple goals.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getDisplayName() {
69+
return displayName;
70+
}
71+
72+
/**
73+
* Optional. Display name of the AI driven test. Required if the release test is created with
74+
* multiple goals.
75+
* @param displayName displayName or {@code null} for none
76+
*/
77+
public GoogleFirebaseAppdistroV1alphaTestConfig setDisplayName(java.lang.String displayName) {
78+
this.displayName = displayName;
79+
return this;
80+
}
81+
5582
/**
5683
* Identifier. The name of the test configuration resource. Format:
5784
* `projects/{project_number}/apps/{app_id}/testConfig`

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-rev20241018-2.0.0</version>
12-
<name>Firebase App Distribution API v1alpha-rev20241018-2.0.0</name>
11+
<version>v1alpha-rev20241101-2.0.0</version>
12+
<name>Firebase App Distribution API v1alpha-rev20241101-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-rev20241018-2.0.0</version>
25+
<version>v1alpha-rev20241101-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-rev20241018-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseappdistribution:v1alpha-rev20241101-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)