Skip to content

Commit 4137a62

Browse files
1 parent 249c8a1 commit 4137a62

File tree

7 files changed

+236
-6
lines changed

7 files changed

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

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+
* Instructions for AI driven test
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 GoogleFirebaseAppdistroV1alphaAiInstructions extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Describes the app to give the AI some context
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String appDescription;
39+
40+
/**
41+
* Required. Steps to be accomplished by the AI
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.util.List<GoogleFirebaseAppdistroV1alphaAiInstructionsStep> steps;
46+
47+
/**
48+
* Optional. Describes the app to give the AI some context
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getAppDescription() {
52+
return appDescription;
53+
}
54+
55+
/**
56+
* Optional. Describes the app to give the AI some context
57+
* @param appDescription appDescription or {@code null} for none
58+
*/
59+
public GoogleFirebaseAppdistroV1alphaAiInstructions setAppDescription(java.lang.String appDescription) {
60+
this.appDescription = appDescription;
61+
return this;
62+
}
63+
64+
/**
65+
* Required. Steps to be accomplished by the AI
66+
* @return value or {@code null} for none
67+
*/
68+
public java.util.List<GoogleFirebaseAppdistroV1alphaAiInstructionsStep> getSteps() {
69+
return steps;
70+
}
71+
72+
/**
73+
* Required. Steps to be accomplished by the AI
74+
* @param steps steps or {@code null} for none
75+
*/
76+
public GoogleFirebaseAppdistroV1alphaAiInstructions setSteps(java.util.List<GoogleFirebaseAppdistroV1alphaAiInstructionsStep> steps) {
77+
this.steps = steps;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleFirebaseAppdistroV1alphaAiInstructions set(String fieldName, Object value) {
83+
return (GoogleFirebaseAppdistroV1alphaAiInstructions) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleFirebaseAppdistroV1alphaAiInstructions clone() {
88+
return (GoogleFirebaseAppdistroV1alphaAiInstructions) super.clone();
89+
}
90+
91+
}
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 step to be accomplished by the AI
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 GoogleFirebaseAppdistroV1alphaAiInstructionsStep extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* An assertion to be checked by the AI
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String assertion;
39+
40+
/**
41+
* A goal to be accomplished by the AI
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String goal;
46+
47+
/**
48+
* An assertion to be checked by the AI
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getAssertion() {
52+
return assertion;
53+
}
54+
55+
/**
56+
* An assertion to be checked by the AI
57+
* @param assertion assertion or {@code null} for none
58+
*/
59+
public GoogleFirebaseAppdistroV1alphaAiInstructionsStep setAssertion(java.lang.String assertion) {
60+
this.assertion = assertion;
61+
return this;
62+
}
63+
64+
/**
65+
* A goal to be accomplished by the AI
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getGoal() {
69+
return goal;
70+
}
71+
72+
/**
73+
* A goal to be accomplished by the AI
74+
* @param goal goal or {@code null} for none
75+
*/
76+
public GoogleFirebaseAppdistroV1alphaAiInstructionsStep setGoal(java.lang.String goal) {
77+
this.goal = goal;
78+
return this;
79+
}
80+
81+
@Override
82+
public GoogleFirebaseAppdistroV1alphaAiInstructionsStep set(String fieldName, Object value) {
83+
return (GoogleFirebaseAppdistroV1alphaAiInstructionsStep) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public GoogleFirebaseAppdistroV1alphaAiInstructionsStep clone() {
88+
return (GoogleFirebaseAppdistroV1alphaAiInstructionsStep) super.clone();
89+
}
90+
91+
}

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

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

33+
/**
34+
* Optional. Input only. Instructions for AI driven test. Input only.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleFirebaseAppdistroV1alphaAiInstructions aiInstructions;
39+
3340
/**
3441
* Output only. Timestamp when the test was run.
3542
* The value may be {@code null}.
@@ -65,6 +72,23 @@ public final class GoogleFirebaseAppdistroV1alphaReleaseTest extends com.google.
6572
@com.google.api.client.util.Key
6673
private java.lang.String name;
6774

75+
/**
76+
* Optional. Input only. Instructions for AI driven test. Input only.
77+
* @return value or {@code null} for none
78+
*/
79+
public GoogleFirebaseAppdistroV1alphaAiInstructions getAiInstructions() {
80+
return aiInstructions;
81+
}
82+
83+
/**
84+
* Optional. Input only. Instructions for AI driven test. Input only.
85+
* @param aiInstructions aiInstructions or {@code null} for none
86+
*/
87+
public GoogleFirebaseAppdistroV1alphaReleaseTest setAiInstructions(GoogleFirebaseAppdistroV1alphaAiInstructions aiInstructions) {
88+
this.aiInstructions = aiInstructions;
89+
return this;
90+
}
91+
6892
/**
6993
* Output only. Timestamp when the test was run.
7094
* @return value or {@code null} for none

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

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

33+
/**
34+
* Optional. Instructions for AI driven test
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GoogleFirebaseAppdistroV1alphaAiInstructions aiInstructions;
39+
3340
/**
3441
* Optional. Login credential for automated tests
3542
* The value may be {@code null}.
3643
*/
3744
@com.google.api.client.util.Key
3845
private GoogleFirebaseAppdistroV1alphaLoginCredential loginCredential;
3946

47+
/**
48+
* Optional. Instructions for AI driven test
49+
* @return value or {@code null} for none
50+
*/
51+
public GoogleFirebaseAppdistroV1alphaAiInstructions getAiInstructions() {
52+
return aiInstructions;
53+
}
54+
55+
/**
56+
* Optional. Instructions for AI driven test
57+
* @param aiInstructions aiInstructions or {@code null} for none
58+
*/
59+
public GoogleFirebaseAppdistroV1alphaRoboCrawler setAiInstructions(GoogleFirebaseAppdistroV1alphaAiInstructions aiInstructions) {
60+
this.aiInstructions = aiInstructions;
61+
return this;
62+
}
63+
4064
/**
4165
* Optional. Login credential for automated tests
4266
* @return value or {@code null} for none

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

0 commit comments

Comments
 (0)