Skip to content

Commit ec10668

Browse files
1 parent 5fd8769 commit ec10668

File tree

4 files changed

+36
-6
lines changed

4 files changed

+36
-6
lines changed

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

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

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,15 @@ public final class Secret extends com.google.api.client.json.GenericJson {
6363
@com.google.api.client.util.Key
6464
private Replication replication;
6565

66+
/**
67+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
68+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
69+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.util.Map<String, java.lang.String> tags;
74+
6675
/**
6776
* Output only. The time at which the Secret was created.
6877
* @return value or {@code null} for none
@@ -141,6 +150,27 @@ public Secret setReplication(Replication replication) {
141150
return this;
142151
}
143152

153+
/**
154+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
155+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
156+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
157+
* @return value or {@code null} for none
158+
*/
159+
public java.util.Map<String, java.lang.String> getTags() {
160+
return tags;
161+
}
162+
163+
/**
164+
* Optional. Input only. Immutable. Mapping of Tag keys/values directly bound to this resource.
165+
* For example: "123/environment": "production", "123/costCenter": "marketing" Tags are used to
166+
* organize and group resources. Tags can be used to control policy evaluation for the resource.
167+
* @param tags tags or {@code null} for none
168+
*/
169+
public Secret setTags(java.util.Map<String, java.lang.String> tags) {
170+
this.tags = tags;
171+
return this;
172+
}
173+
144174
@Override
145175
public Secret set(String fieldName, Object value) {
146176
return (Secret) super.set(fieldName, value);

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

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)