Skip to content
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

feat(parametermanager): Added samples to create list render parameter and version in specific region #4013

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Conversation

vatsal-vora-crestdata
Copy link

Description

Created samples for creating, listing and rendering parameter and parameter version in specific region

Added Sample List:

  1. parameter-structured-data
  2. parameter-unstructured-data
  3. add-parameter-version (structured, unstructured)
  4. create-parameter-secret-reference
  5. list-all-parameters
  6. view-parameter-details
  7. list-all-parameters-versions
  8. view-parameter-version-details
  9. render-secret-parameter-version

Checklist

  • I have followed guidelines from CONTRIBUTING.MD and Samples Style Guide
  • Tests pass: npm test (see Testing)
  • Lint pass: npm run lint (see Style)
  • These samples need a new API enabled in testing projects to pass (let us know which ones) - This requires Parameter manager API to be enabled
  • These samples need a new/updated env vars in testing projects set to pass (let us know which ones) - This requires GCLOUD_LOCATION to be set otherwise it will use us-central1
  • This pull request is from a branch created directly off of GoogleCloudPlatform/nodejs-docs-samples. Not a fork.
  • This sample adds a new sample directory, and I updated the CODEOWNERS file with the codeowners for this sample
  • This sample adds a new sample directory, and I created GitHub Actions workflow for this sample
  • This sample adds a new Product API, and I updated the Blunderbuss issue/PR auto-assigner with the codeowners for this sample
  • Please merge this PR for me once it is approved

@vatsal-vora-crestdata vatsal-vora-crestdata requested review from a team as code owners March 5, 2025 09:52
Copy link

snippet-bot bot commented Mar 5, 2025

Here is the summary of changes.

You are about to add 10 region tags.

This comment is generated by snippet-bot.
If you find problems with this result, please file an issue at:
https://github.com/googleapis/repo-automation-bots/issues.
To update this comment, add snippet-bot:force-run label or use the checkbox below:

  • Refresh this comment

@product-auto-label product-auto-label bot added the samples Issues that are directly related to samples. label Mar 5, 2025
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello @vatsal-vora-crestdata, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

Summary of Changes

This pull request adds samples for creating, listing, and rendering parameters and parameter versions in a specific region using the Google Cloud Parameter Manager. It includes samples for structured and unstructured data, referencing secrets, and managing parameter versions.

Highlights

  • New Samples: Introduces 10 new samples demonstrating various Parameter Manager functionalities, including creating parameters with structured and unstructured data, adding parameter versions, referencing secrets, listing parameters and versions, viewing details, and rendering parameter versions.
  • Regional Focus: All samples are designed to operate within a specific region, showcasing how to interact with the Parameter Manager service in a regional context.
  • Workflow Integration: Adds the 'parametermanager' directory to the workflows configuration, ensuring automated testing and validation of the new samples.

Changelog

Click here to see the changelog
  • .github/workflows/utils/workflows.json
    • Added 'parametermanager' to the list of directories to be included in the CI workflow.
  • parametermanager/package.json
    • Created a new package.json file for the Parameter Manager samples, defining dependencies such as '@google-cloud/parametermanager', '@google-cloud/secret-manager', 'c8', 'chai', 'mocha', and 'uuid'.
    • Configured test scripts and engine requirements (Node >=20).
  • parametermanager/regional_samples/createRegionalParam.js
    • Created a sample for creating a regional parameter with unstructured data.
    • Demonstrates how to instantiate a ParameterManagerClient with a regional endpoint.
  • parametermanager/regional_samples/createRegionalParamVersion.js
    • Created a sample for creating a new version of an existing parameter with an unformatted string payload.
    • Shows how to construct a parameter version with a data payload.
  • parametermanager/regional_samples/createRegionalParamVersionWithSecret.js
    • Created a sample for creating a new version of an existing parameter with a JSON payload that includes a reference to a secret.
    • Illustrates how to reference secrets within parameter versions.
  • parametermanager/regional_samples/createStructuredRegionalParam.js
    • Created a sample for creating a regional parameter with a specified format type (JSON).
    • Demonstrates how to set the format of a parameter during creation.
  • parametermanager/regional_samples/createStructuredRegionalParamVersion.js
    • Created a sample for creating a new version of an existing parameter with a JSON payload.
    • Shows how to store structured data in a parameter version.
  • parametermanager/regional_samples/getRegionalParam.js
    • Created a sample for retrieving a parameter from a specified region.
    • Demonstrates how to construct the fully qualified parameter name and retrieve parameter details.
  • parametermanager/regional_samples/getRegionalParamVersion.js
    • Created a sample for retrieving the details of a specific version of a parameter.
    • Shows how to retrieve the payload data of a parameter version.
  • parametermanager/regional_samples/listRegionalParamVersions.js
    • Created a sample for listing all versions of an existing parameter in a specific region.
    • Demonstrates how to use listParameterVersionsAsync to handle pagination.
  • parametermanager/regional_samples/listRegionalParams.js
    • Created a sample for listing all parameters in a specified region.
    • Demonstrates how to use listParametersAsync to handle pagination.
  • parametermanager/regional_samples/renderRegionalParamVersion.js
    • Created a sample for rendering a specific version of a parameter, resolving any secret references.
    • Illustrates how to retrieve and display the rendered payload.
  • parametermanager/test/.eslintrc.yml
    • Added eslint configuration file for the test directory.
  • parametermanager/test/parametermanager.test.js
    • Created a test suite for the Parameter Manager samples, covering various scenarios such as creating parameters and versions, listing parameters and versions, retrieving parameter details, and rendering parameter versions.
    • Includes tests for both structured and unstructured data, as well as secret references.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.


In realms of code, where parameters reside,
A manager's task, with precision to confide.
Creating, listing, versions in array,
In regions specific, come what may.
Secrets entwined, a delicate art,
Rendering payloads, playing its part.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

@product-auto-label product-auto-label bot added the api: workflows Issues related to the Workflows API. label Mar 5, 2025
Copy link
Contributor

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

The pull request introduces samples for creating, listing, and rendering parameters and parameter versions in a specific region using the Google Cloud Parameter Manager. The samples cover various scenarios, including structured and unstructured data, secret references, and version management. Overall, the code is well-structured and easy to follow. However, there are a few areas that could be improved, such as error handling and copyright year.

Summary of Findings

  • Copyright Year: The copyright year in the license headers is set to 2025. Please confirm that this is the correct year.
  • Missing Error Handling: The code lacks proper error handling. The catch block only logs the error to the console, which is insufficient for production code. Consider adding more robust error handling, such as retries, circuit breakers, or detailed logging.
  • TODO Comments: The code contains TODO comments that should be addressed before merging. Specifically, the placeholder comments for the project, location, and parameter IDs should be removed or replaced with actual values or configuration.

Merge Readiness

The pull request is not yet ready for merging. The copyright year and TODO comments should be addressed, and more robust error handling should be implemented. I am unable to approve this pull request, and recommend that others review and approve this code before merging.


// This sample demonstrates how to create a regional parameter with structured (JSON) data.
const args = process.argv.slice(2);
main(...args).catch(console.error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The catch block only logs the error to the console. Consider adding more robust error handling, such as retries, circuit breakers, or detailed logging.


// Parse command line arguments
const args = process.argv.slice(2);
main(...args).catch(console.error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The catch block only logs the error to the console. Consider adding more robust error handling, such as retries, circuit breakers, or detailed logging.


// This sample demonstrates how to create a regional parameter with unstructured data.
const args = process.argv.slice(2);
main(...args).catch(console.error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The catch block only logs the error to the console. Consider adding more robust error handling, such as retries, circuit breakers, or detailed logging.

}

const args = process.argv.slice(2);
main(...args).catch(console.error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The catch block only logs the error to the console. Consider adding more robust error handling, such as retries, circuit breakers, or detailed logging.

}

const args = process.argv.slice(2);
main(...args).catch(console.error);
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The catch block only logs the error to the console. Consider adding more robust error handling, such as retries, circuit breakers, or detailed logging.

@@ -0,0 +1,89 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Please confirm that this is the correct year.

Comment on lines +35 to +40
* TODO(developer): Uncomment these variables before running the sample.
*/
// const projectId = 'YOUR_PROJECT_ID';
// const locationId = 'us-central1';
// const parameterId = 'YOUR_PARAMETER_ID';
// const parameterVersionId = 'YOUR_PARAMETER_VERSION_ID';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These TODO comments should be addressed before merging. Consider replacing them with actual values or configuration.

Comment on lines +33 to +37
* TODO(developer): Uncomment these variables before running the sample.
*/
// const projectId = 'YOUR_PROJECT_ID';
// const locationId = 'YOUR_LOCATION_ID';
// const parameterId = 'YOUR_PARAMETER_ID';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

These TODO comments should be addressed before merging. Consider replacing them with actual values or configuration.

@@ -0,0 +1,17 @@
# Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Please confirm that this is the correct year.

@@ -0,0 +1,263 @@
// Copyright 2025 Google LLC
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The copyright year is set to 2025. Please confirm that this is the correct year.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: workflows Issues related to the Workflows API. samples Issues that are directly related to samples.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant