Skip to content

Commit 394a13d

Browse files
Update secretmanager/src/main/java/secretmanager/CreateSecretWithTags.java
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
1 parent 709d5ca commit 394a13d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

secretmanager/src/main/java/secretmanager/CreateSecretWithTags.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ public static Secret createSecretWithTags(
5252
// Build the secret to create with tags.
5353
Secret secret =
5454
Secret.newBuilder()
55-
.setReplication(
56-
Replication.newBuilder()
57-
.setAutomatic(Replication.Automatic.newBuilder().build())
58-
.build())
59-
.putTags(tagKey, tagValue)
60-
.build();
55+
.setReplication(
56+
Replication.newBuilder()
57+
.setAutomatic(Replication.Automatic.newBuilder().build())
58+
.build())
59+
.putTags(tagKey, tagValue)
60+
.build();
6161

6262
// Create the secret.
6363
Secret createdSecret = client.createSecret(projectName, secretId, secret);

0 commit comments

Comments
 (0)