-
Notifications
You must be signed in to change notification settings - Fork 2.9k
chore(secretmanager): Added samples for delayed destroy #10136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
durgesh-ninave-crest
wants to merge
3
commits into
GoogleCloudPlatform:main
Choose a base branch
from
durgesh-ninave-crest:secretmanager-delayed-destroy-samples
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+495
−1
Open
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
65 changes: 65 additions & 0 deletions
65
secretmanager/src/main/java/secretmanager/CreateSecretWithDelayedDestroy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package secretmanager; | ||
|
||
// [START secretmanager_create_secret_with_delayed_destroy] | ||
|
||
import com.google.cloud.secretmanager.v1.ProjectName; | ||
import com.google.cloud.secretmanager.v1.Replication; | ||
import com.google.cloud.secretmanager.v1.Secret; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceClient; | ||
import com.google.protobuf.Duration; | ||
import java.io.IOException; | ||
|
||
public class CreateSecretWithDelayedDestroy { | ||
|
||
public static void createSecretWithDelayedDestroy() throws IOException { | ||
// TODO(developer): Replace these variables before running the sample. | ||
String projectId = "your-project-id"; | ||
String secretId = "your-secret-id"; | ||
Integer versionDestroyTtl = 86400; | ||
createSecretWithDelayedDestroy(projectId, secretId, versionDestroyTtl); | ||
} | ||
|
||
// Create secret with version destroy TTL. | ||
public static void createSecretWithDelayedDestroy( | ||
String projectId, | ||
String secretId, | ||
Integer versionDestroyTtl) | ||
throws IOException { | ||
// Initialize the client that will be used to send requests. | ||
try (SecretManagerServiceClient client = SecretManagerServiceClient.create()) { | ||
// Build the parent name from the project. | ||
ProjectName projectName = ProjectName.of(projectId); | ||
|
||
// Build the secret to create. | ||
Secret secret = | ||
Secret.newBuilder() | ||
.setReplication( | ||
Replication.newBuilder() | ||
.setAutomatic(Replication.Automatic.newBuilder().build()) | ||
.build()) | ||
.setVersionDestroyTtl(Duration.newBuilder().setSeconds(versionDestroyTtl)) | ||
.build(); | ||
|
||
// Create the secret. | ||
Secret createdSecret = client.createSecret(projectName, secretId, secret); | ||
System.out.printf("Created secret with version destroy ttl %s\n", createdSecret.getName()); | ||
} | ||
} | ||
} | ||
// [END secretmanager_create_secret_with_delayed_destroy] |
62 changes: 62 additions & 0 deletions
62
secretmanager/src/main/java/secretmanager/DisableSecretDelayedDestroy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package secretmanager; | ||
|
||
// [START secretmanager_disable_secret_delayed_destroy] | ||
|
||
import com.google.cloud.secretmanager.v1.Secret; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceClient; | ||
import com.google.cloud.secretmanager.v1.SecretName; | ||
import com.google.protobuf.FieldMask; | ||
import com.google.protobuf.util.FieldMaskUtil; | ||
import java.io.IOException; | ||
|
||
public class DisableSecretDelayedDestroy { | ||
|
||
public static void disableSecretDelayedDestroy() throws IOException { | ||
// TODO(developer): Replace these variables before running the sample. | ||
String projectId = "your-project-id"; | ||
String secretId = "your-secret-id"; | ||
disableSecretDelayedDestroy(projectId, secretId); | ||
} | ||
|
||
// Disables delayed destroy for a secret. | ||
public static void disableSecretDelayedDestroy( | ||
String projectId, | ||
String secretId) | ||
throws IOException { | ||
// Initialize the client that will be used to send requests. | ||
try (SecretManagerServiceClient client = SecretManagerServiceClient.create()) { | ||
// Build the parent name from the project and secret. | ||
SecretName secretName = SecretName.of(projectId, secretId); | ||
|
||
// Build the secret to update. | ||
Secret secret = | ||
Secret.newBuilder() | ||
.setName(secretName.toString()) | ||
.build(); | ||
|
||
// Build the field mask. | ||
FieldMask fieldMask = FieldMaskUtil.fromString("version_destroy_ttl"); | ||
|
||
// Update the secret. | ||
Secret updatedSecret = client.updateSecret(secret, fieldMask); | ||
System.out.printf("Updated secret %s\n", updatedSecret.getName()); | ||
} | ||
} | ||
} | ||
// [END secretmanager_disable_secret_delayed_destroy] |
66 changes: 66 additions & 0 deletions
66
secretmanager/src/main/java/secretmanager/UpdateSecretWithDelayedDestroy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package secretmanager; | ||
|
||
// [START secretmanager_update_secret_with_delayed_destroy] | ||
|
||
import com.google.cloud.secretmanager.v1.Secret; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceClient; | ||
import com.google.cloud.secretmanager.v1.SecretName; | ||
import com.google.protobuf.Duration; | ||
import com.google.protobuf.FieldMask; | ||
import com.google.protobuf.util.FieldMaskUtil; | ||
import java.io.IOException; | ||
|
||
public class UpdateSecretWithDelayedDestroy { | ||
|
||
public static void updateSecretWithDelayedDestroy() throws IOException { | ||
// TODO(developer): Replace these variables before running the sample. | ||
String projectId = "your-project-id"; | ||
String secretId = "your-secret-id"; | ||
Integer versionDestroyTtl = 86400; | ||
updateSecretWithDelayedDestroy(projectId, secretId, versionDestroyTtl); | ||
} | ||
|
||
// Update secret with version destroy TTL. | ||
public static void updateSecretWithDelayedDestroy( | ||
String projectId, | ||
String secretId, | ||
Integer versionDestroyTtl) | ||
durgesh-ninave-crest marked this conversation as resolved.
Show resolved
Hide resolved
|
||
throws IOException { | ||
// Initialize the client that will be used to send requests. | ||
try (SecretManagerServiceClient client = SecretManagerServiceClient.create()) { | ||
// Build the parent name from the project and secret. | ||
SecretName secretName = SecretName.of(projectId, secretId); | ||
|
||
// Build the secret to update. | ||
Secret secret = | ||
Secret.newBuilder() | ||
.setName(secretName.toString()) | ||
.setVersionDestroyTtl(Duration.newBuilder().setSeconds(versionDestroyTtl)) | ||
.build(); | ||
|
||
// Build the field mask. | ||
FieldMask fieldMask = FieldMaskUtil.fromString("version_destroy_ttl"); | ||
|
||
// Update the secret. | ||
Secret updatedSecret = client.updateSecret(secret, fieldMask); | ||
System.out.printf("Updated secret %s\n", updatedSecret.getName()); | ||
} | ||
} | ||
} | ||
// [END secretmanager_update_secret_with_delayed_destroy] |
69 changes: 69 additions & 0 deletions
69
...r/src/main/java/secretmanager/regionalsamples/CreateRegionalSecretWithDelayedDestroy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package secretmanager.regionalsamples; | ||
|
||
// [START secretmanager_create_regional_secret_with_delayed_destroy] | ||
|
||
import com.google.cloud.secretmanager.v1.LocationName; | ||
import com.google.cloud.secretmanager.v1.Secret; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceClient; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceSettings; | ||
import com.google.protobuf.Duration; | ||
import java.io.IOException; | ||
|
||
public class CreateRegionalSecretWithDelayedDestroy { | ||
|
||
public static void createRegionalSecretWithDelayedDestroy() throws IOException { | ||
// TODO(developer): Replace these variables before running the sample. | ||
String projectId = "your-project-id"; | ||
String locationId = "your-location-id"; | ||
String secretId = "your-secret-id"; | ||
Integer versionDestroyTtl = 86400; | ||
createRegionalSecretWithDelayedDestroy(projectId, secretId, locationId, versionDestroyTtl); | ||
durgesh-ninave-crest marked this conversation as resolved.
Show resolved
Hide resolved
|
||
} | ||
|
||
// Create secret with version destroy TTL. | ||
public static void createRegionalSecretWithDelayedDestroy( | ||
String projectId, | ||
String locationId, | ||
String secretId, | ||
Integer versionDestroyTtl) | ||
durgesh-ninave-crest marked this conversation as resolved.
Show resolved
Hide resolved
|
||
throws IOException { | ||
// Endpoint to call the regional secret manager sever | ||
String apiEndpoint = String.format("secretmanager.%s.rep.googleapis.com:443", locationId); | ||
SecretManagerServiceSettings secretManagerServiceSettings = | ||
SecretManagerServiceSettings.newBuilder().setEndpoint(apiEndpoint).build(); | ||
|
||
// Initialize the client that will be used to send requests. | ||
try (SecretManagerServiceClient client = | ||
SecretManagerServiceClient.create(secretManagerServiceSettings)) { | ||
// Build the parent name from the project. | ||
LocationName locationName = LocationName.of(projectId, locationId); | ||
|
||
// Build the secret to create. | ||
Secret secret = | ||
Secret.newBuilder() | ||
.setVersionDestroyTtl(Duration.newBuilder().setSeconds(versionDestroyTtl)) | ||
.build(); | ||
|
||
// Create the secret. | ||
Secret createdSecret = client.createSecret(locationName, secretId, secret); | ||
System.out.printf("Created secret with version destroy ttl %s\n", createdSecret.getName()); | ||
} | ||
} | ||
} | ||
// [END secretmanager_create_regional_secret_with_delayed_destroy] |
72 changes: 72 additions & 0 deletions
72
...ager/src/main/java/secretmanager/regionalsamples/DisableRegionalSecretDelayedDestroy.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Copyright 2025 Google LLC | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package secretmanager.regionalsamples; | ||
|
||
// [START secretmanager_disable_regional_secret_delayed_destroy] | ||
|
||
import com.google.cloud.secretmanager.v1.Secret; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceClient; | ||
import com.google.cloud.secretmanager.v1.SecretManagerServiceSettings; | ||
import com.google.cloud.secretmanager.v1.SecretName; | ||
import com.google.protobuf.FieldMask; | ||
import com.google.protobuf.util.FieldMaskUtil; | ||
import java.io.IOException; | ||
|
||
public class DisableRegionalSecretDelayedDestroy { | ||
|
||
public static void disableRegionalSecretDelayedDestroy() throws IOException { | ||
// TODO(developer): Replace these variables before running the sample. | ||
String projectId = "your-project-id"; | ||
String locationId = "your-location-id"; | ||
String secretId = "your-secret-id"; | ||
disableRegionalSecretDelayedDestroy(projectId, locationId, secretId); | ||
} | ||
|
||
// Disables the secret's delayed destroy. | ||
public static void disableRegionalSecretDelayedDestroy( | ||
String projectId, | ||
String locationId, | ||
String secretId) | ||
throws IOException { | ||
// Endpoint to call the regional secret manager sever | ||
String apiEndpoint = String.format("secretmanager.%s.rep.googleapis.com:443", locationId); | ||
SecretManagerServiceSettings secretManagerServiceSettings = | ||
SecretManagerServiceSettings.newBuilder().setEndpoint(apiEndpoint).build(); | ||
|
||
// Initialize the client that will be used to send requests. | ||
try (SecretManagerServiceClient client = | ||
SecretManagerServiceClient.create(secretManagerServiceSettings)) { | ||
// Build the parent name from the project and secret. | ||
SecretName secretName = | ||
SecretName.ofProjectLocationSecretName(projectId, locationId, secretId); | ||
|
||
// Build the secret to update. | ||
Secret secret = | ||
Secret.newBuilder() | ||
.setName(secretName.toString()) | ||
.build(); | ||
|
||
// Build the field mask. | ||
FieldMask fieldMask = FieldMaskUtil.fromString("version_destroy_ttl"); | ||
|
||
// Update the secret. | ||
Secret updatedSecret = client.updateSecret(secret, fieldMask); | ||
System.out.printf("Updated secret %s\n", updatedSecret.getName()); | ||
} | ||
} | ||
} | ||
// [END secretmanager_disable_regional_secret_delayed_destroy] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.