-
Notifications
You must be signed in to change notification settings - Fork 2k
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 global samples to create list render parameter and version #4012
Open
vatsal-vora-crestdata
wants to merge
9
commits into
GoogleCloudPlatform:main
Choose a base branch
from
vatsal-vora-crestdata:parametermanager-global-samples-create-list-render
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.
Open
Changes from 4 commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
bb6bc1f
feat(parametermanager): Added samples for create list and render para…
vatsal-vora-crestdata 9bd8d1c
feat(parametermanager): Added samples for create list and render para…
vatsal-vora-crestdata fb77682
Merge branch 'parametermanager-global-samples-create-list-render' of …
vatsal-vora-crestdata e289298
feat(parametermanager): rebased branch and made changes to file path
vatsal-vora-crestdata e47a4fb
docs(parametermanager): Updated README file
vatsal-vora-crestdata fa8aa23
chor(parametermanager): updated workflow file
vatsal-vora-crestdata 9e29cee
chor(parametermanager): update copyright year
vatsal-vora-crestdata 6807526
Merge branch 'main' into parametermanager-global-samples-create-list-…
vatsal-vora-crestdata e8e9b89
Merge branch 'main' into parametermanager-global-samples-create-list-…
vatsal-vora-crestdata 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 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,52 @@ | ||
# Copyright 2023 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. | ||
|
||
name: parameter-manager | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'parameter-manager/**' | ||
- '.github/workflows/parameter-manager.yaml' | ||
pull_request: | ||
types: | ||
- opened | ||
- reopened | ||
- synchronize | ||
- labeled | ||
paths: | ||
- 'parameter-manager/**' | ||
- '.github/workflows/parameter-manager.yaml' | ||
schedule: | ||
- cron: '0 0 * * 0' | ||
jobs: | ||
test: | ||
# Ref: https://github.com/google-github-actions/auth#usage | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
if: github.event.action != 'labeled' || github.event.label.name == 'actions:force-run' | ||
uses: ./.github/workflows/test.yaml | ||
with: | ||
name: 'parameter-manager' | ||
path: 'parameter-manager' | ||
flakybot: | ||
# Ref: https://github.com/google-github-actions/auth#usage | ||
permissions: | ||
contents: 'read' | ||
id-token: 'write' | ||
if: github.event_name == 'schedule' && always() # always() submits logs even if tests fail | ||
uses: ./.github/workflows/flakybot.yaml | ||
needs: [test] |
This file contains 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
This file contains 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,53 @@ | ||
// 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 | ||
// | ||
// https://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. | ||
|
||
'use strict'; | ||
|
||
/** | ||
* Creates a global parameter using the Parameter Manager SDK. | ||
* | ||
* @param {string} projectId - The Google Cloud project ID where the parameter is to be created. | ||
* @param {string} parameterId - The ID of the parameter to create. This ID must be unique within the project. | ||
*/ | ||
async function main(projectId = 'my-project', parameterId = 'my-parameter') { | ||
// [START parametermanager_create_param] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// const projectId = 'YOUR_PROJECT_ID'; | ||
// const parameterId = 'YOUR_PARAMETER_ID'; | ||
|
||
// Imports the Parameter Manager library | ||
const {ParameterManagerClient} = require('@google-cloud/parametermanager'); | ||
|
||
// Instantiates a client | ||
const client = new ParameterManagerClient(); | ||
|
||
async function createParam() { | ||
const parent = client.locationPath(projectId, 'global'); | ||
const request = { | ||
parent: parent, | ||
parameterId: parameterId, | ||
}; | ||
|
||
const [parameter] = await client.createParameter(request); | ||
console.log(`Created parameter: ${parameter.name}`); | ||
} | ||
|
||
await createParam(); | ||
// [END parametermanager_create_param] | ||
} | ||
|
||
const args = process.argv.slice(2); | ||
main(...args).catch(console.error); |
This file contains 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,75 @@ | ||
// Copyright 2025 Google LLC | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
// | ||
// 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 | ||
// | ||
// https://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. | ||
|
||
'use strict'; | ||
|
||
/** | ||
* Creates a parameter version globally for unstructured data. | ||
* | ||
* @param {string} projectId - The Google Cloud project ID where the parameter is to be created | ||
* @param {string} parameterId - The ID of the parameter for which the version is to be created. | ||
* @param {string} parameterVersionId - The ID of the parameter version to be created. | ||
* @param {string} payload - The unformatted string payload to be stored in the new parameter version. | ||
*/ | ||
async function main( | ||
projectId = 'my-project', | ||
parameterId = 'my-parameter', | ||
parameterVersionId = 'v1', | ||
payload = 'This is unstructured data' | ||
glasnt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
) { | ||
// [START parametermanager_create_param_version] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// const projectId = 'YOUR_PROJECT_ID'; | ||
// const parameterId = 'YOUR_PARAMETER_ID'; | ||
// const parameterVersionId = 'YOUR_PARAMETER_VERSION_ID'; | ||
// const payload = 'This is unstructured data'; | ||
|
||
// Imports the Parameter Manager library | ||
const {ParameterManagerClient} = require('@google-cloud/parametermanager'); | ||
|
||
// Instantiates a client | ||
const client = new ParameterManagerClient(); | ||
|
||
async function createParamVersion() { | ||
// Construct the parent resource name | ||
const parent = client.parameterPath(projectId, 'global', parameterId); | ||
|
||
// Construct the parameter version | ||
const parameterVersion = { | ||
payload: { | ||
data: Buffer.from(payload, 'utf8'), | ||
}, | ||
}; | ||
|
||
// Construct the request | ||
const request = { | ||
parent: parent, | ||
parameterVersionId: parameterVersionId, | ||
parameterVersion: parameterVersion, | ||
}; | ||
|
||
// Create the parameter version | ||
const [response] = await client.createParameterVersion(request); | ||
console.log(`Created parameter version: ${response.name}`); | ||
} | ||
|
||
await createParamVersion(); | ||
// [END parametermanager_create_param_version] | ||
} | ||
|
||
// Parse command line arguments | ||
const args = process.argv.slice(2); | ||
main(...args).catch(console.error); |
This file contains 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,85 @@ | ||
// Copyright 2025 Google LLC | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
// | ||
// 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 | ||
// | ||
// https://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. | ||
|
||
'use strict'; | ||
|
||
/** | ||
* Creates a new version of an existing parameter in the global location | ||
* of the specified project using the Google Cloud Parameter Manager SDK. | ||
* The payload is specified as a JSON string and includes a reference to a secret. | ||
* | ||
* @param {string} projectId - The Google Cloud project ID where the parameter is located. | ||
* @param {string} parameterId - The ID of the parameter for which the version is to be created. | ||
* @param {string} parameterVersionId - The ID of the parameter version to be created. | ||
* @param {string} secretId - The ID of the secret to be referenced. | ||
*/ | ||
async function main( | ||
projectId = 'my-project', | ||
parameterId = 'my-parameter', | ||
parameterVersionId = 'v1', | ||
secretId = 'projects/my-project/secrets/application-secret/version/latest' | ||
glasnt marked this conversation as resolved.
Show resolved
Hide resolved
|
||
) { | ||
// [START parametermanager_create_param_version_with_secret] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// const projectId = 'YOUR_PROJECT_ID'; | ||
// const parameterId = 'YOUR_PARAMETER_ID'; | ||
// const parameterVersionId = 'YOUR_PARAMETER_VERSION_ID'; | ||
// const secretId = 'YOUR_SECRET_ID'; // For example projects/my-project/secrets/application-secret/version/latest | ||
|
||
// Imports the Parameter Manager library | ||
const {ParameterManagerClient} = require('@google-cloud/parametermanager'); | ||
|
||
// Instantiates a client | ||
const client = new ParameterManagerClient(); | ||
|
||
async function createParamVersionWithSecret() { | ||
// Construct the parent resource name | ||
const parent = client.parameterPath(projectId, 'global', parameterId); | ||
|
||
// Construct the JSON data with secret references | ||
const jsonData = { | ||
db_user: 'test_user', | ||
db_password: `__REF__(//secretmanager.googleapis.com/${secretId})`, | ||
}; | ||
|
||
// Construct the parameter version | ||
const parameterVersion = { | ||
payload: { | ||
data: Buffer.from(JSON.stringify(jsonData), 'utf8'), | ||
}, | ||
}; | ||
|
||
// Construct the request | ||
const request = { | ||
parent: parent, | ||
parameterVersionId: parameterVersionId, | ||
parameterVersion: parameterVersion, | ||
}; | ||
|
||
// Create the parameter version | ||
const [response] = await client.createParameterVersion(request); | ||
console.log( | ||
`Created parameter version with secret references: ${response.name}` | ||
); | ||
} | ||
|
||
await createParamVersionWithSecret(); | ||
// [END parametermanager_create_param_version_with_secret] | ||
} | ||
|
||
// Parse command line arguments | ||
const args = process.argv.slice(2); | ||
main(...args).catch(console.error); |
This file contains 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 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
// | ||
// 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 | ||
// | ||
// https://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. | ||
|
||
'use strict'; | ||
|
||
const {protos} = require('@google-cloud/parametermanager'); | ||
|
||
/** | ||
* Creates a parameter in the global location of the specified | ||
* project with specified format using the Google Cloud Parameter Manager SDK. | ||
* | ||
* @param {string} projectId - The Google Cloud project ID where the parameter is to be created. | ||
* @param {string} parameterId - The ID of the parameter to create. This ID must be unique within the project. | ||
* @param {string} formatType - The format type of the parameter (UNFORMATTED, YAML, JSON). | ||
*/ | ||
async function main( | ||
projectId = 'my-project', | ||
parameterId = 'my-json-parameter', | ||
formatType = protos.google.cloud.parametermanager.v1.ParameterFormat.JSON | ||
) { | ||
// [START parametermanager_create_structured_param] | ||
/** | ||
* TODO(developer): Uncomment these variables before running the sample. | ||
*/ | ||
// const {protos} = require('@google-cloud/parametermanager'); | ||
// const projectId = 'YOUR_PROJECT_ID'; | ||
// const parameterId = 'YOUR_PARAMETER_ID'; | ||
// const formatType = protos.google.cloud.parametermanager.v1.ParameterFormat.JSON; | ||
|
||
// Imports the Parameter Manager library | ||
const {ParameterManagerClient} = require('@google-cloud/parametermanager'); | ||
|
||
// Instantiates a client | ||
const client = new ParameterManagerClient(); | ||
|
||
async function createStructuredParam() { | ||
const parent = client.locationPath(projectId, 'global'); | ||
const request = { | ||
parent: parent, | ||
parameterId: parameterId, | ||
parameter: { | ||
format: formatType, | ||
}, | ||
}; | ||
|
||
const [parameter] = await client.createParameter(request); | ||
console.log( | ||
`Created parameter ${parameter.name} with format ${parameter.format}` | ||
); | ||
} | ||
|
||
await createStructuredParam(); | ||
// [END parametermanager_create_structured_param] | ||
} | ||
|
||
// This sample demonstrates how to create a parameter for structured data of JSON type. | ||
const args = process.argv.slice(2); | ||
main(...args).catch(console.error); |
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.
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.
The copyright year is set to 2025. Please confirm if this is the correct year, or if it should be updated to the current year.