Skip to content

Commit 3c9cd5a

Browse files
1 parent 37ff8f9 commit 3c9cd5a

File tree

10 files changed

+350
-12
lines changed

10 files changed

+350
-12
lines changed

clients/google-api-services-firebaseapphosting/v1/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-firebaseapphosting</artifactId>
25-
<version>v1-rev20260108-2.0.0</version>
25+
<version>v1-rev20260122-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-firebaseapphosting:v1-rev20260108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260122-2.0.0'
3939
}
4040
```
4141

Lines changed: 91 additions & 0 deletions
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.firebaseapphosting.v1.model;
18+
19+
/**
20+
* A file path pattern to match against.
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 Hosting API. For a detailed explanation
24+
* 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 Path extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The pattern to match against.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String pattern;
39+
40+
/**
41+
* Optional. The type of pattern to match against.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String type;
46+
47+
/**
48+
* Optional. The pattern to match against.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getPattern() {
52+
return pattern;
53+
}
54+
55+
/**
56+
* Optional. The pattern to match against.
57+
* @param pattern pattern or {@code null} for none
58+
*/
59+
public Path setPattern(java.lang.String pattern) {
60+
this.pattern = pattern;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. The type of pattern to match against.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getType() {
69+
return type;
70+
}
71+
72+
/**
73+
* Optional. The type of pattern to match against.
74+
* @param type type or {@code null} for none
75+
*/
76+
public Path setType(java.lang.String type) {
77+
this.type = type;
78+
return this;
79+
}
80+
81+
@Override
82+
public Path set(String fieldName, Object value) {
83+
return (Path) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public Path clone() {
88+
return (Path) super.clone();
89+
}
90+
91+
}

clients/google-api-services-firebaseapphosting/v1/2.0.0/com/google/api/services/firebaseapphosting/v1/model/RolloutPolicy.java

Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,38 @@ public final class RolloutPolicy extends com.google.api.client.json.GenericJson
5353
@com.google.api.client.util.Key
5454
private String disabledTime;
5555

56+
/**
57+
* Optional. A list of file paths patterns to exclude from triggering a rollout. Patterns in this
58+
* list take precedence over required_paths. **Note**: All paths must be in the ignored_paths in
59+
* order for the rollout to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
60+
* "foo/bar/excluded” type: GLOB }
61+
* The value may be {@code null}.
62+
*/
63+
@com.google.api.client.util.Key
64+
private java.util.List<Path> ignoredPaths;
65+
66+
static {
67+
// hack to force ProGuard to consider Path used, since otherwise it would be stripped out
68+
// see https://github.com/google/google-api-java-client/issues/543
69+
com.google.api.client.util.Data.nullOf(Path.class);
70+
}
71+
72+
/**
73+
* Optional. A list of file paths patterns that trigger a build and rollout if at least one of the
74+
* changed files in the commit are present in this list. This field is optional; the rollout
75+
* policy will default to triggering on all paths if not populated. Limited to 100 paths. Example:
76+
* “required_paths: { pattern: "foo/bar” type: GLOB }
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private java.util.List<Path> requiredPaths;
81+
82+
static {
83+
// hack to force ProGuard to consider Path used, since otherwise it would be stripped out
84+
// see https://github.com/google/google-api-java-client/issues/543
85+
com.google.api.client.util.Data.nullOf(Path.class);
86+
}
87+
5688
/**
5789
* If set, specifies a branch that triggers a new build to be started with this policy. Otherwise,
5890
* no automatic rollouts will happen.
@@ -108,6 +140,52 @@ public RolloutPolicy setDisabledTime(String disabledTime) {
108140
return this;
109141
}
110142

143+
/**
144+
* Optional. A list of file paths patterns to exclude from triggering a rollout. Patterns in this
145+
* list take precedence over required_paths. **Note**: All paths must be in the ignored_paths in
146+
* order for the rollout to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
147+
* "foo/bar/excluded” type: GLOB }
148+
* @return value or {@code null} for none
149+
*/
150+
public java.util.List<Path> getIgnoredPaths() {
151+
return ignoredPaths;
152+
}
153+
154+
/**
155+
* Optional. A list of file paths patterns to exclude from triggering a rollout. Patterns in this
156+
* list take precedence over required_paths. **Note**: All paths must be in the ignored_paths in
157+
* order for the rollout to be skipped. Limited to 100 paths. Example: ignored_paths: { pattern:
158+
* "foo/bar/excluded” type: GLOB }
159+
* @param ignoredPaths ignoredPaths or {@code null} for none
160+
*/
161+
public RolloutPolicy setIgnoredPaths(java.util.List<Path> ignoredPaths) {
162+
this.ignoredPaths = ignoredPaths;
163+
return this;
164+
}
165+
166+
/**
167+
* Optional. A list of file paths patterns that trigger a build and rollout if at least one of the
168+
* changed files in the commit are present in this list. This field is optional; the rollout
169+
* policy will default to triggering on all paths if not populated. Limited to 100 paths. Example:
170+
* “required_paths: { pattern: "foo/bar” type: GLOB }
171+
* @return value or {@code null} for none
172+
*/
173+
public java.util.List<Path> getRequiredPaths() {
174+
return requiredPaths;
175+
}
176+
177+
/**
178+
* Optional. A list of file paths patterns that trigger a build and rollout if at least one of the
179+
* changed files in the commit are present in this list. This field is optional; the rollout
180+
* policy will default to triggering on all paths if not populated. Limited to 100 paths. Example:
181+
* “required_paths: { pattern: "foo/bar” type: GLOB }
182+
* @param requiredPaths requiredPaths or {@code null} for none
183+
*/
184+
public RolloutPolicy setRequiredPaths(java.util.List<Path> requiredPaths) {
185+
this.requiredPaths = requiredPaths;
186+
return this;
187+
}
188+
111189
@Override
112190
public RolloutPolicy set(String fieldName, Object value) {
113191
return (RolloutPolicy) super.set(fieldName, value);

clients/google-api-services-firebaseapphosting/v1/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-firebaseapphosting</artifactId>
11-
<version>v1-rev20260108-2.0.0</version>
12-
<name>Firebase App Hosting API v1-rev20260108-2.0.0</name>
11+
<version>v1-rev20260122-2.0.0</version>
12+
<name>Firebase App Hosting API v1-rev20260122-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-firebaseapphosting/v1/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-firebaseapphosting</artifactId>
25-
<version>v1-rev20260108-2.0.0</version>
25+
<version>v1-rev20260122-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-firebaseapphosting:v1-rev20260108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1-rev20260122-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-firebaseapphosting/v1beta/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-firebaseapphosting</artifactId>
25-
<version>v1beta-rev20260108-2.0.0</version>
25+
<version>v1beta-rev20260122-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-firebaseapphosting:v1beta-rev20260108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebaseapphosting:v1beta-rev20260122-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.firebaseapphosting.v1beta.model;
18+
19+
/**
20+
* A file path pattern to match against.
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 Hosting API. For a detailed explanation
24+
* 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 Path extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. The pattern to match against.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.String pattern;
39+
40+
/**
41+
* Optional. The type of pattern to match against.
42+
* The value may be {@code null}.
43+
*/
44+
@com.google.api.client.util.Key
45+
private java.lang.String type;
46+
47+
/**
48+
* Optional. The pattern to match against.
49+
* @return value or {@code null} for none
50+
*/
51+
public java.lang.String getPattern() {
52+
return pattern;
53+
}
54+
55+
/**
56+
* Optional. The pattern to match against.
57+
* @param pattern pattern or {@code null} for none
58+
*/
59+
public Path setPattern(java.lang.String pattern) {
60+
this.pattern = pattern;
61+
return this;
62+
}
63+
64+
/**
65+
* Optional. The type of pattern to match against.
66+
* @return value or {@code null} for none
67+
*/
68+
public java.lang.String getType() {
69+
return type;
70+
}
71+
72+
/**
73+
* Optional. The type of pattern to match against.
74+
* @param type type or {@code null} for none
75+
*/
76+
public Path setType(java.lang.String type) {
77+
this.type = type;
78+
return this;
79+
}
80+
81+
@Override
82+
public Path set(String fieldName, Object value) {
83+
return (Path) super.set(fieldName, value);
84+
}
85+
86+
@Override
87+
public Path clone() {
88+
return (Path) super.clone();
89+
}
90+
91+
}

0 commit comments

Comments
 (0)