Skip to content

Commit 8c63c73

Browse files
1 parent fffa9cb commit 8c63c73

File tree

8 files changed

+72
-12
lines changed

8 files changed

+72
-12
lines changed

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

clients/google-api-services-secretmanager/v1/2.0.0/com/google/api/services/secretmanager/v1/model/Secret.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ public final class Secret extends com.google.api.client.json.GenericJson {
108108
@com.google.api.client.util.Key
109109
private Rotation rotation;
110110

111+
/**
112+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
113+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
114+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
115+
* The value may be {@code null}.
116+
*/
117+
@com.google.api.client.util.Key
118+
private java.util.Map<String, java.lang.String> tags;
119+
111120
/**
112121
* Optional. A list of up to 10 Pub/Sub topics to which messages are published when control plane
113122
* operations are called on the secret or its versions.
@@ -328,6 +337,27 @@ public Secret setRotation(Rotation rotation) {
328337
return this;
329338
}
330339

340+
/**
341+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
342+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
343+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
344+
* @return value or {@code null} for none
345+
*/
346+
public java.util.Map<String, java.lang.String> getTags() {
347+
return tags;
348+
}
349+
350+
/**
351+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
352+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
353+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
354+
* @param tags tags or {@code null} for none
355+
*/
356+
public Secret setTags(java.util.Map<String, java.lang.String> tags) {
357+
this.tags = tags;
358+
return this;
359+
}
360+
331361
/**
332362
* Optional. A list of up to 10 Pub/Sub topics to which messages are published when control plane
333363
* operations are called on the secret or its versions.

clients/google-api-services-secretmanager/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-secretmanager</artifactId>
11-
<version>v1-rev20250324-2.0.0</version>
12-
<name>Secret Manager API v1-rev20250324-2.0.0</name>
11+
<version>v1-rev20250624-2.0.0</version>
12+
<name>Secret Manager API v1-rev20250624-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

clients/google-api-services-secretmanager/v1beta2/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-secretmanager</artifactId>
25-
<version>v1beta2-rev20250324-2.0.0</version>
25+
<version>v1beta2-rev20250624-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-secretmanager:v1beta2-rev20250324-2.0.0'
38+
implementation 'com.google.apis:google-api-services-secretmanager:v1beta2-rev20250624-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-secretmanager/v1beta2/2.0.0/com/google/api/services/secretmanager/v1beta2/model/Secret.java

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,15 @@ public final class Secret extends com.google.api.client.json.GenericJson {
108108
@com.google.api.client.util.Key
109109
private Rotation rotation;
110110

111+
/**
112+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
113+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
114+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
115+
* The value may be {@code null}.
116+
*/
117+
@com.google.api.client.util.Key
118+
private java.util.Map<String, java.lang.String> tags;
119+
111120
/**
112121
* Optional. A list of up to 10 Pub/Sub topics to which messages are published when control plane
113122
* operations are called on the secret or its versions.
@@ -328,6 +337,27 @@ public Secret setRotation(Rotation rotation) {
328337
return this;
329338
}
330339

340+
/**
341+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
342+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
343+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
344+
* @return value or {@code null} for none
345+
*/
346+
public java.util.Map<String, java.lang.String> getTags() {
347+
return tags;
348+
}
349+
350+
/**
351+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
352+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
353+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
354+
* @param tags tags or {@code null} for none
355+
*/
356+
public Secret setTags(java.util.Map<String, java.lang.String> tags) {
357+
this.tags = tags;
358+
return this;
359+
}
360+
331361
/**
332362
* Optional. A list of up to 10 Pub/Sub topics to which messages are published when control plane
333363
* operations are called on the secret or its versions.

clients/google-api-services-secretmanager/v1beta2/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-secretmanager</artifactId>
11-
<version>v1beta2-rev20250324-2.0.0</version>
12-
<name>Secret Manager API v1beta2-rev20250324-2.0.0</name>
11+
<version>v1beta2-rev20250624-2.0.0</version>
12+
<name>Secret Manager API v1beta2-rev20250624-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-secretmanager/v1beta2/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-secretmanager</artifactId>
25-
<version>v1beta2-rev20250324-2.0.0</version>
25+
<version>v1beta2-rev20250624-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-secretmanager:v1beta2-rev20250324-2.0.0'
38+
implementation 'com.google.apis:google-api-services-secretmanager:v1beta2-rev20250624-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)