From 93fdcf71fd3dfbfeee7fda111833e758272cef69 Mon Sep 17 00:00:00 2001 From: durgesh-ninave-crest Date: Fri, 11 Jul 2025 10:49:32 +0530 Subject: [PATCH] fix(secretmanager): update tag for create regional secret with tags sample --- secretmanager/src/create_regional_secret_with_tags.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/secretmanager/src/create_regional_secret_with_tags.php b/secretmanager/src/create_regional_secret_with_tags.php index 519e8b84f..d56d55177 100644 --- a/secretmanager/src/create_regional_secret_with_tags.php +++ b/secretmanager/src/create_regional_secret_with_tags.php @@ -25,7 +25,7 @@ namespace Google\Cloud\Samples\SecretManager; -// [START secretmanager_regional_create_secret_with_tags] +// [START secretmanager_create_regional_secret_with_tags] // Import the Secret Manager client library. use Google\Cloud\SecretManager\V1\CreateSecretRequest; use Google\Cloud\SecretManager\V1\Secret; @@ -64,7 +64,7 @@ function create_regional_secret_with_tags(string $projectId, string $locationId, // Print the new secret name. printf('Created secret %s with tag', $newSecret->getName()); } -// [END secretmanager_regional_create_secret_with_tags] +// [END secretmanager_create_regional_secret_with_tags] // The following 2 lines are only needed to execute the samples on the CLI require_once __DIR__ . '/../../testing/sample_helpers.php';