Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion parametermanager/src/render_param_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
*
* @param string $projectId The Google Cloud Project ID (e.g. 'my-project')
* @param string $parameterId The Parameter ID (e.g. 'my-param')
* @param string $versionId The Version ID (e.g. 'my-param-version')
* @param string $versionId The Version ID (e.g. 'my-param-version' or 'latest')
*/
function render_param_version(string $projectId, string $parameterId, string $versionId): void
{
Expand Down
2 changes: 1 addition & 1 deletion parametermanager/src/render_regional_param_version.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
* @param string $projectId The Google Cloud Project ID (e.g. 'my-project')
* @param string $locationId The Parameter Location (e.g. 'us-central1')
* @param string $parameterId The Parameter ID (e.g. 'my-param')
* @param string $versionId The Version ID (e.g. 'my-param-version')
* @param string $versionId The Version ID (e.g. 'my-param-version' or 'latest')
*/
function render_regional_param_version(string $projectId, string $locationId, string $parameterId, string $versionId): void
{
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/create_regional_secret_with_topic.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function create_regional_secret_with_topic(string $projectId, string $locationId
'topics' => [new Topic(['name' => $topicName])],
]);

// Build the request.
// Build the request.
$request = CreateSecretRequest::build($parent, $secretId, $secret);

// Create the secret.
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/create_secret_with_expiration.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

/**
* Create a secret with expiration TTL.
*
*
* @param string $projectId Your Google Cloud Project ID (e.g. 'my-project')
* @param string $secretId Your secret ID (e.g. 'my-secret')
*/
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/create_secret_with_topic.php
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function create_secret_with_topic(string $projectId, string $secretId, string $t
'topics' => [new Topic(['name' => $topicName])],
]);

// Build the request.
// Build the request.
$request = CreateSecretRequest::build($parent, $secretId, $secret);

// Create the secret.
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/delete_regional_secret_rotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function delete_regional_secret_rotation(string $projectId, string $locationId,
]);

$fieldMask = new FieldMask();
$fieldMask->setPaths(['rotation','topics']);
$fieldMask->setPaths(['rotation', 'topics']);

$request = new UpdateSecretRequest();
$request->setSecret($secret);
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/delete_secret_rotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function delete_secret_rotation(string $projectId, string $secretId): void
]);

$fieldMask = new FieldMask();
$fieldMask->setPaths(['rotation','topics']);
$fieldMask->setPaths(['rotation', 'topics']);

$request = new UpdateSecretRequest();
$request->setSecret($secret);
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/update_regional_secret_rotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function update_regional_secret_rotation(string $projectId, string $locationId,
]);

$fieldMask = new FieldMask();
$fieldMask->setPaths(['rotation','topics']);
$fieldMask->setPaths(['rotation', 'topics']);

$request = new UpdateSecretRequest();
$request->setSecret($secret);
Expand Down
2 changes: 1 addition & 1 deletion secretmanager/src/update_secret_rotation.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function update_secret_rotation(string $projectId, string $secretId, string $top
]);

$fieldMask = new FieldMask();
$fieldMask->setPaths(['rotation','topics']);
$fieldMask->setPaths(['rotation', 'topics']);

$request = new UpdateSecretRequest();
$request->setSecret($secret);
Expand Down
Loading