Skip to content

Commit f286a63

Browse files
1 parent 1c4efb1 commit f286a63

File tree

10 files changed

+1146
-24
lines changed

10 files changed

+1146
-24
lines changed

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

clients/google-api-services-firebasedataconnect/v1/2.0.0/com/google/api/services/firebasedataconnect/v1/FirebaseDataConnect.java

Lines changed: 449 additions & 6 deletions
Large diffs are not rendered by default.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
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.firebasedataconnect.v1.model;
18+
19+
/**
20+
* The Impersonate request to Firebase Data Connect.
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 Data Connect 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 ImpersonateRequest extends com.google.api.client.json.GenericJson {
32+
33+
/**
34+
* Optional. Additional GraphQL request information.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private GraphqlRequestExtensions extensions;
39+
40+
/**
41+
* Required. The name of the GraphQL operation name. Required because all Connector operations
42+
* must be named. See https://graphql.org/learn/queries/#operation-name.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String operationName;
47+
48+
/**
49+
* Optional. Values for GraphQL variables provided in this request.
50+
* The value may be {@code null}.
51+
*/
52+
@com.google.api.client.util.Key
53+
private java.util.Map<String, java.lang.Object> variables;
54+
55+
/**
56+
* Optional. Additional GraphQL request information.
57+
* @return value or {@code null} for none
58+
*/
59+
public GraphqlRequestExtensions getExtensions() {
60+
return extensions;
61+
}
62+
63+
/**
64+
* Optional. Additional GraphQL request information.
65+
* @param extensions extensions or {@code null} for none
66+
*/
67+
public ImpersonateRequest setExtensions(GraphqlRequestExtensions extensions) {
68+
this.extensions = extensions;
69+
return this;
70+
}
71+
72+
/**
73+
* Required. The name of the GraphQL operation name. Required because all Connector operations
74+
* must be named. See https://graphql.org/learn/queries/#operation-name.
75+
* @return value or {@code null} for none
76+
*/
77+
public java.lang.String getOperationName() {
78+
return operationName;
79+
}
80+
81+
/**
82+
* Required. The name of the GraphQL operation name. Required because all Connector operations
83+
* must be named. See https://graphql.org/learn/queries/#operation-name.
84+
* @param operationName operationName or {@code null} for none
85+
*/
86+
public ImpersonateRequest setOperationName(java.lang.String operationName) {
87+
this.operationName = operationName;
88+
return this;
89+
}
90+
91+
/**
92+
* Optional. Values for GraphQL variables provided in this request.
93+
* @return value or {@code null} for none
94+
*/
95+
public java.util.Map<String, java.lang.Object> getVariables() {
96+
return variables;
97+
}
98+
99+
/**
100+
* Optional. Values for GraphQL variables provided in this request.
101+
* @param variables variables or {@code null} for none
102+
*/
103+
public ImpersonateRequest setVariables(java.util.Map<String, java.lang.Object> variables) {
104+
this.variables = variables;
105+
return this;
106+
}
107+
108+
@Override
109+
public ImpersonateRequest set(String fieldName, Object value) {
110+
return (ImpersonateRequest) super.set(fieldName, value);
111+
}
112+
113+
@Override
114+
public ImpersonateRequest clone() {
115+
return (ImpersonateRequest) super.clone();
116+
}
117+
118+
}

clients/google-api-services-firebasedataconnect/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-firebasedataconnect</artifactId>
11-
<version>v1-rev20250824-2.0.0</version>
12-
<name>Firebase Data Connect API v1-rev20250824-2.0.0</name>
11+
<version>v1-rev20250907-2.0.0</version>
12+
<name>Firebase Data Connect API v1-rev20250907-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-firebasedataconnect/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-firebasedataconnect</artifactId>
25-
<version>v1beta-rev20250824-2.0.0</version>
25+
<version>v1beta-rev20250907-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-firebasedataconnect:v1beta-rev20250824-2.0.0'
38+
implementation 'com.google.apis:google-api-services-firebasedataconnect:v1beta-rev20250907-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)