Skip to content

Commit dfd3912

Browse files
1 parent 1aac0dd commit dfd3912

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

clients/google-api-services-apikeys/v2/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-apikeys</artifactId>
25-
<version>v2-rev20240811-2.0.0</version>
25+
<version>v2-rev20241016-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-apikeys:v2-rev20240811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apikeys:v2-rev20241016-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-apikeys/v2/2.0.0/com/google/api/services/apikeys/v2/model/V2Key.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@ public final class V2Key extends com.google.api.client.json.GenericJson {
9595
@com.google.api.client.util.Key
9696
private V2Restrictions restrictions;
9797

98+
/**
99+
* Optional. The email address of [the service account](https://cloud.google.com/iam/docs/service-
100+
* accounts) the key is bound to.
101+
* The value may be {@code null}.
102+
*/
103+
@com.google.api.client.util.Key
104+
private java.lang.String serviceAccountEmail;
105+
98106
/**
99107
* Output only. Unique id in UUID4 format.
100108
* The value may be {@code null}.
@@ -265,6 +273,25 @@ public V2Key setRestrictions(V2Restrictions restrictions) {
265273
return this;
266274
}
267275

276+
/**
277+
* Optional. The email address of [the service account](https://cloud.google.com/iam/docs/service-
278+
* accounts) the key is bound to.
279+
* @return value or {@code null} for none
280+
*/
281+
public java.lang.String getServiceAccountEmail() {
282+
return serviceAccountEmail;
283+
}
284+
285+
/**
286+
* Optional. The email address of [the service account](https://cloud.google.com/iam/docs/service-
287+
* accounts) the key is bound to.
288+
* @param serviceAccountEmail serviceAccountEmail or {@code null} for none
289+
*/
290+
public V2Key setServiceAccountEmail(java.lang.String serviceAccountEmail) {
291+
this.serviceAccountEmail = serviceAccountEmail;
292+
return this;
293+
}
294+
268295
/**
269296
* Output only. Unique id in UUID4 format.
270297
* @return value or {@code null} for none

clients/google-api-services-apikeys/v2/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-apikeys</artifactId>
11-
<version>v2-rev20240811-2.0.0</version>
12-
<name>API Keys API v2-rev20240811-2.0.0</name>
11+
<version>v2-rev20241016-2.0.0</version>
12+
<name>API Keys API v2-rev20241016-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-apikeys/v2/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-apikeys</artifactId>
25-
<version>v2-rev20240811-2.0.0</version>
25+
<version>v2-rev20241016-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-apikeys:v2-rev20240811-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apikeys:v2-rev20241016-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)