Skip to content

Commit 15bb2ba

Browse files
1 parent b5985c8 commit 15bb2ba

File tree

5 files changed

+42
-24
lines changed

5 files changed

+42
-24
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-rev20260109-2.0.0</version>
25+
<version>v2-rev20260317-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-rev20260109-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apikeys:v2-rev20260317-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 33 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,8 @@ public class Keys {
515515
* This request holds the parameters needed by the apikeys server. After setting any optional
516516
* parameters, call the {@link Create#execute()} method to invoke the remote operation.
517517
*
518-
* @param parent Required. The project in which the API key is created.
518+
* @param parent Required. The project in which the API key is created. The parent field must be in format of
519+
* "projects//locations/global".
519520
* @param content the {@link com.google.api.services.apikeys.v2.model.V2Key}
520521
* @return the request
521522
*/
@@ -543,7 +544,8 @@ public class Create extends ApiKeysServiceRequest<com.google.api.services.apikey
543544
* Create#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
544545
* be called to initialize this instance immediately after invoking the constructor. </p>
545546
*
546-
* @param parent Required. The project in which the API key is created.
547+
* @param parent Required. The project in which the API key is created. The parent field must be in format of
548+
* "projects//locations/global".
547549
* @param content the {@link com.google.api.services.apikeys.v2.model.V2Key}
548550
* @since 1.13
549551
*/
@@ -612,17 +614,24 @@ public Create setUploadProtocol(java.lang.String uploadProtocol) {
612614
return (Create) super.setUploadProtocol(uploadProtocol);
613615
}
614616

615-
/** Required. The project in which the API key is created. */
617+
/**
618+
* Required. The project in which the API key is created. The parent field must be in
619+
* format of "projects//locations/global".
620+
*/
616621
@com.google.api.client.util.Key
617622
private java.lang.String parent;
618623

619-
/** Required. The project in which the API key is created.
624+
/** Required. The project in which the API key is created. The parent field must be in format of
625+
"projects//locations/global".
620626
*/
621627
public java.lang.String getParent() {
622628
return parent;
623629
}
624630

625-
/** Required. The project in which the API key is created. */
631+
/**
632+
* Required. The project in which the API key is created. The parent field must be in
633+
* format of "projects//locations/global".
634+
*/
626635
public Create setParent(java.lang.String parent) {
627636
if (!getSuppressPatternChecks()) {
628637
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
@@ -1116,7 +1125,8 @@ public GetKeyString set(String parameterName, Object value) {
11161125
* This request holds the parameters needed by the apikeys server. After setting any optional
11171126
* parameters, call the {@link List#execute()} method to invoke the remote operation.
11181127
*
1119-
* @param parent Required. Lists all API keys associated with this project.
1128+
* @param parent Required. Lists all API keys associated with this project. The parent field must be in format of
1129+
* "projects//locations/global".
11201130
* @return the request
11211131
*/
11221132
public List list(java.lang.String parent) throws java.io.IOException {
@@ -1144,7 +1154,8 @@ public class List extends ApiKeysServiceRequest<com.google.api.services.apikeys.
11441154
* List#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must be
11451155
* called to initialize this instance immediately after invoking the constructor. </p>
11461156
*
1147-
* @param parent Required. Lists all API keys associated with this project.
1157+
* @param parent Required. Lists all API keys associated with this project. The parent field must be in format of
1158+
* "projects//locations/global".
11481159
* @since 1.13
11491160
*/
11501161
protected List(java.lang.String parent) {
@@ -1222,17 +1233,24 @@ public List setUploadProtocol(java.lang.String uploadProtocol) {
12221233
return (List) super.setUploadProtocol(uploadProtocol);
12231234
}
12241235

1225-
/** Required. Lists all API keys associated with this project. */
1236+
/**
1237+
* Required. Lists all API keys associated with this project. The parent field must be in
1238+
* format of "projects//locations/global".
1239+
*/
12261240
@com.google.api.client.util.Key
12271241
private java.lang.String parent;
12281242

1229-
/** Required. Lists all API keys associated with this project.
1243+
/** Required. Lists all API keys associated with this project. The parent field must be in format of
1244+
"projects//locations/global".
12301245
*/
12311246
public java.lang.String getParent() {
12321247
return parent;
12331248
}
12341249

1235-
/** Required. Lists all API keys associated with this project. */
1250+
/**
1251+
* Required. Lists all API keys associated with this project. The parent field must be in
1252+
* format of "projects//locations/global".
1253+
*/
12361254
public List setParent(java.lang.String parent) {
12371255
if (!getSuppressPatternChecks()) {
12381256
com.google.api.client.util.Preconditions.checkArgument(PARENT_PATTERN.matcher(parent).matches(),
@@ -1306,7 +1324,7 @@ public List set(String parameterName, Object value) {
13061324
* This request holds the parameters needed by the apikeys server. After setting any optional
13071325
* parameters, call the {@link Patch#execute()} method to invoke the remote operation.
13081326
*
1309-
* @param name Output only. The resource name of the key. The `name` has the form:
1327+
* @param name Identifier. The resource name of the key. The `name` has the form:
13101328
* `projects//locations/global/keys/`. For example:
13111329
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2` NOTE:
13121330
* Key is a global resource; hence the only supported value for location is `global`.
@@ -1338,7 +1356,7 @@ public class Patch extends ApiKeysServiceRequest<com.google.api.services.apikeys
13381356
* Patch#initialize(com.google.api.client.googleapis.services.AbstractGoogleClientRequest)} must
13391357
* be called to initialize this instance immediately after invoking the constructor. </p>
13401358
*
1341-
* @param name Output only. The resource name of the key. The `name` has the form:
1359+
* @param name Identifier. The resource name of the key. The `name` has the form:
13421360
* `projects//locations/global/keys/`. For example:
13431361
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2` NOTE:
13441362
* Key is a global resource; hence the only supported value for location is `global`.
@@ -1411,7 +1429,7 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
14111429
}
14121430

14131431
/**
1414-
* Output only. The resource name of the key. The `name` has the form:
1432+
* Identifier. The resource name of the key. The `name` has the form:
14151433
* `projects//locations/global/keys/`. For example:
14161434
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2`
14171435
* NOTE: Key is a global resource; hence the only supported value for location is
@@ -1420,7 +1438,7 @@ public Patch setUploadProtocol(java.lang.String uploadProtocol) {
14201438
@com.google.api.client.util.Key
14211439
private java.lang.String name;
14221440

1423-
/** Output only. The resource name of the key. The `name` has the form:
1441+
/** Identifier. The resource name of the key. The `name` has the form:
14241442
`projects//locations/global/keys/`. For example:
14251443
`projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2` NOTE: Key is a
14261444
global resource; hence the only supported value for location is `global`.
@@ -1430,7 +1448,7 @@ public java.lang.String getName() {
14301448
}
14311449

14321450
/**
1433-
* Output only. The resource name of the key. The `name` has the form:
1451+
* Identifier. The resource name of the key. The `name` has the form:
14341452
* `projects//locations/global/keys/`. For example:
14351453
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2`
14361454
* NOTE: Key is a global resource; hence the only supported value for location is

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public final class V2Key extends com.google.api.client.json.GenericJson {
7979
private java.lang.String keyString;
8080

8181
/**
82-
* Output only. The resource name of the key. The `name` has the form:
82+
* Identifier. The resource name of the key. The `name` has the form:
8383
* `projects//locations/global/keys/`. For example:
8484
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2` NOTE: Key is
8585
* a global resource; hence the only supported value for location is `global`.
@@ -234,7 +234,7 @@ public V2Key setKeyString(java.lang.String keyString) {
234234
}
235235

236236
/**
237-
* Output only. The resource name of the key. The `name` has the form:
237+
* Identifier. The resource name of the key. The `name` has the form:
238238
* `projects//locations/global/keys/`. For example:
239239
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2` NOTE: Key is
240240
* a global resource; hence the only supported value for location is `global`.
@@ -245,7 +245,7 @@ public java.lang.String getName() {
245245
}
246246

247247
/**
248-
* Output only. The resource name of the key. The `name` has the form:
248+
* Identifier. The resource name of the key. The `name` has the form:
249249
* `projects//locations/global/keys/`. For example:
250250
* `projects/123456867718/locations/global/keys/b7ff1f9f-8275-410a-94dd-3855ee9b5dd2` NOTE: Key is
251251
* a global resource; hence the only supported value for location is `global`.

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-rev20260109-2.0.0</version>
12-
<name>API Keys API v2-rev20260109-2.0.0</name>
11+
<version>v2-rev20260317-2.0.0</version>
12+
<name>API Keys API v2-rev20260317-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-rev20260109-2.0.0</version>
25+
<version>v2-rev20260317-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-rev20260109-2.0.0'
38+
implementation 'com.google.apis:google-api-services-apikeys:v2-rev20260317-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)