-
Notifications
You must be signed in to change notification settings - Fork 1k
feat(storagecontrol): add samples for managed folders #2016
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 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
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,61 @@ | ||
| <?php | ||
| /** | ||
| * Copyright 2024 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. | ||
| */ | ||
|
|
||
| /** | ||
| * For instructions on how to run the full sample: | ||
| * | ||
| * @see https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/storagecontrol/README.md | ||
| */ | ||
|
|
||
| namespace Google\Cloud\Samples\StorageControl; | ||
|
|
||
| # [START storage_control_managed_folder_create] | ||
| use Google\Cloud\Storage\Control\V2\Client\StorageControlClient; | ||
| use Google\Cloud\Storage\Control\V2\CreateManagedFolderRequest; | ||
| use Google\Cloud\Storage\Control\V2\ManagedFolder; | ||
|
|
||
| /** | ||
| * Create a new folder in an existing bucket. | ||
| * | ||
| * @param string $bucketName The name of your Cloud Storage bucket. | ||
| * (e.g. 'my-bucket') | ||
| * @param string $managedFolderId The name of your folder inside the bucket. | ||
| * (e.g. 'my-folder') | ||
| */ | ||
| function managed_folder_create(string $bucketName, string $managedFolderId): void | ||
| { | ||
| $storageControlClient = new StorageControlClient(); | ||
|
|
||
| // Set project to "_" to signify global bucket | ||
| $formattedName = $storageControlClient->bucketName('_', $bucketName); | ||
|
|
||
| // $request = new CreateManagedFolderRequest([ | ||
| // 'parent' => $formattedName, | ||
| // 'managedFolder' => new ManagedFolder(), | ||
| // 'managedFolderId' => $managedFolderId, | ||
| // ]); | ||
| $request = CreateManagedFolderRequest::build($formattedName, new ManagedFolder(), $managedFolderId); | ||
|
|
||
| $managedFolder = $storageControlClient->createManagedFolder($request); | ||
|
|
||
| printf('Performed createManagedFolder request for %s', $managedFolder->getName()); | ||
| } | ||
| # [END storage_control_managed_folder_create] | ||
|
|
||
| // The following 2 lines are only needed to run the samples | ||
| require_once __DIR__ . '/../../testing/sample_helpers.php'; | ||
| \Google\Cloud\Samples\execute_sample(__FILE__, __NAMESPACE__, $argv); | ||
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,55 @@ | ||
| <?php | ||
| /** | ||
| * Copyright 2024 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. | ||
| */ | ||
|
|
||
| /** | ||
| * For instructions on how to run the full sample: | ||
| * | ||
| * @see https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/storagecontrol/README.md | ||
| */ | ||
|
|
||
| namespace Google\Cloud\Samples\StorageControl; | ||
|
|
||
| # [START storage_control_managed_folder_delete] | ||
| use Google\Cloud\Storage\Control\V2\Client\StorageControlClient; | ||
| use Google\Cloud\Storage\Control\V2\DeleteManagedFolderRequest; | ||
|
|
||
| /** | ||
| * Delete a folder in an existing bucket. | ||
| * | ||
| * @param string $bucketName The name of your Cloud Storage bucket. | ||
| * (e.g. 'my-bucket') | ||
| * @param string $managedFolderId The id of your folder inside the bucket. | ||
| * (e.g. 'my-folder') | ||
| */ | ||
| function managed_folder_delete(string $bucketName, string $managedFolderId): void | ||
| { | ||
| $storageControlClient = new StorageControlClient(); | ||
|
|
||
| // Set project to "_" to signify global bucket | ||
| $formattedName = $storageControlClient->managedFolderName('_', $bucketName, $managedFolderId); | ||
|
|
||
| $request = DeleteManagedFolderRequest::build($formattedName); | ||
|
|
||
| $storageControlClient->deleteManagedFolder($request); | ||
|
|
||
| printf('Deleted Managed Folder %s', $managedFolderId); | ||
| } | ||
| # [END storage_control_managed_folder_delete] | ||
|
|
||
| // The following 2 lines are only needed to run the samples | ||
| require_once __DIR__ . '/../../testing/sample_helpers.php'; | ||
| \Google\Cloud\Samples\execute_sample(__FILE__, __NAMESPACE__, $argv); |
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,57 @@ | ||
| <?php | ||
| /** | ||
| * Copyright 2024 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. | ||
| */ | ||
|
|
||
| /** | ||
| * For instructions on how to run the full sample: | ||
| * | ||
| * @see https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/storagecontrol/README.md | ||
| */ | ||
|
|
||
| namespace Google\Cloud\Samples\StorageControl; | ||
|
|
||
| # [START storage_control_managed_folder_get] | ||
| use Google\Cloud\Storage\Control\V2\Client\StorageControlClient; | ||
| use Google\Cloud\Storage\Control\V2\GetManagedFolderRequest; | ||
|
|
||
| /** | ||
| * Get a folder in an existing bucket. | ||
| * | ||
| * @param string $bucketName The name of your Cloud Storage bucket. | ||
| * (e.g. 'my-bucket') | ||
| * @param string $managedFolderId The name of your folder inside the bucket. | ||
| * (e.g. 'my-folder') | ||
| */ | ||
| function managed_folder_get(string $bucketName, string $managedFolderId): void | ||
| { | ||
| $storageControlClient = new StorageControlClient(); | ||
|
|
||
| // Set project to "_" to signify global bucket | ||
| $formattedName = $storageControlClient->managedFolderName('_', $bucketName, $managedFolderId); | ||
|
|
||
| $request = new GetManagedFolderRequest([ | ||
| 'name' => $formattedName, | ||
| ]); | ||
|
|
||
| $managedFolder = $storageControlClient->getManagedFolder($request); | ||
|
|
||
| printf('Got Managed Folder %s', $managedFolder->getName()); | ||
| } | ||
| # [END storage_control_managed_folder_get] | ||
|
|
||
| // The following 2 lines are only needed to run the samples | ||
| require_once __DIR__ . '/../../testing/sample_helpers.php'; | ||
| \Google\Cloud\Samples\execute_sample(__FILE__, __NAMESPACE__, $argv); |
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,57 @@ | ||
| <?php | ||
| /** | ||
| * Copyright 2024 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. | ||
| */ | ||
|
|
||
| /** | ||
| * For instructions on how to run the full sample: | ||
| * | ||
| * @see https://github.com/GoogleCloudPlatform/php-docs-samples/tree/main/storagecontrol/README.md | ||
| */ | ||
|
|
||
| namespace Google\Cloud\Samples\StorageControl; | ||
|
|
||
| # [START storage_control_managed_folder_list] | ||
| use Google\Cloud\Storage\Control\V2\Client\StorageControlClient; | ||
| use Google\Cloud\Storage\Control\V2\ListManagedFoldersRequest; | ||
|
|
||
| /** | ||
| * List folders in an existing bucket. | ||
| * | ||
| * @param string $bucketName The name of your Cloud Storage bucket. | ||
| * (e.g. 'my-bucket') | ||
| */ | ||
| function managed_folders_list(string $bucketName): void | ||
| { | ||
| $storageControlClient = new StorageControlClient(); | ||
|
|
||
| // Set project to "_" to signify global bucket | ||
| $formattedName = $storageControlClient->bucketName('_', $bucketName); | ||
|
|
||
| $request = new ListManagedFoldersRequest([ | ||
| 'parent' => $formattedName, | ||
| ]); | ||
|
|
||
| $folders = $storageControlClient->listManagedFolders($request); | ||
|
|
||
| foreach ($folders as $folder) { | ||
| printf('%s bucket has managed folder %s' . PHP_EOL, $bucketName, $folder->getName()); | ||
| } | ||
| } | ||
| # [END storage_control_managed_folder_list] | ||
|
|
||
| // The following 2 lines are only needed to run the samples | ||
| require_once __DIR__ . '/../../testing/sample_helpers.php'; | ||
| \Google\Cloud\Samples\execute_sample(__FILE__, __NAMESPACE__, $argv); |
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe this comment was not intentional, but I'm ok with it either way