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 view, list and render parameter in specified region #10051

Closed
Show file tree
Hide file tree
Changes from 2 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
116 changes: 116 additions & 0 deletions parametermanager/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<!--
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

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.
-->

<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>parametermanager</groupId>
<artifactId>parametermanager-samples</artifactId>
<packaging>jar</packaging>

<!--
The parent pom defines common style checks and testing strategies for our samples.
Removing or replacing it should not affect the execution of the samples in any way.
-->
<parent>
<groupId>com.google.cloud.samples</groupId>
<artifactId>shared-configuration</artifactId>
<version>1.2.0</version>
</parent>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>libraries-bom</artifactId>
<version>26.54.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>

<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-parametermanager</artifactId>
</dependency>

<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
<scope>provided</scope>
</dependency>

<!-- test dependencies -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
<artifactId>truth</artifactId>
<version>1.4.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-secretmanager</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-iam-policy</artifactId>
<scope>test</scope>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<configuration>
<source>11</source> <!-- depending on your project -->
<target>11</target> <!-- depending on your project -->
<annotationProcessorPaths>
<path>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.30</version>
</path>
</annotationProcessorPaths>
</configuration>
</plugin>
</plugins>
</build>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
/*
* 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
*
* 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.
*/

package parametermanager.regionalsamples;

// [START parametermanager_get_regional_param]

import com.google.cloud.parametermanager.v1.Parameter;
import com.google.cloud.parametermanager.v1.ParameterManagerClient;
import com.google.cloud.parametermanager.v1.ParameterManagerSettings;
import com.google.cloud.parametermanager.v1.ParameterName;
import java.io.IOException;

/**
* This class demonstrates how to get a regional parameter using the Parameter Manager SDK for GCP.
*/
public class GetRegionalParam {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "your-project-id";
String locationId = "your-location-id";
String parameterId = "your-parameter-id";

// Call the method to get a regional parameter.
getRegionalParam(projectId, locationId, parameterId);
}

// This is an example snippet that gets a regional parameter.
public static Parameter getRegionalParam(String projectId, String locationId, String parameterId)
throws IOException {
// Endpoint to call the regional parameter manager server
String apiEndpoint = String.format("parametermanager.%s.rep.googleapis.com:443", locationId);
ParameterManagerSettings parameterManagerSettings =
ParameterManagerSettings.newBuilder().setEndpoint(apiEndpoint).build();

// Initialize the client that will be used to send requests. This client only
// needs to be created once, and can be reused for multiple requests.
try (ParameterManagerClient client = ParameterManagerClient.create(parameterManagerSettings)) {
// Build the parameter name.
ParameterName parameterName = ParameterName.of(projectId, locationId, parameterId);

// Get the parameter.
Parameter parameter = client.getParameter(parameterName.toString());
// Find more details for the Parameter object here:
// https://cloud.google.com/secret-manager/parameter-manager/docs/reference/rest/v1/projects.locations.parameters#Parameter
System.out.printf(
"Found the regional parameter %s with format %s\n",
parameter.getName(), parameter.getFormat());

return parameter;
}
}
}
// [END parametermanager_get_regional_param]
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
/*
* 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
*
* 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.
*/

package parametermanager.regionalsamples;

// [START parametermanager_get_regional_param_version]

import com.google.cloud.parametermanager.v1.ParameterManagerClient;
import com.google.cloud.parametermanager.v1.ParameterManagerSettings;
import com.google.cloud.parametermanager.v1.ParameterVersion;
import com.google.cloud.parametermanager.v1.ParameterVersionName;
import java.io.IOException;

/**
* This class demonstrates how to get a regional parameter version using the Parameter Manager SDK
* for GCP.
*/
public class GetRegionalParamVersion {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "your-project-id";
String locationId = "your-location-id";
String parameterId = "your-parameter-id";
String versionId = "your-version-id";

// Call the method to get a regional parameter version.
getRegionalParamVersion(projectId, locationId, parameterId, versionId);
}

// This is an example snippet that gets a regional parameter version.
public static ParameterVersion getRegionalParamVersion(
String projectId, String locationId, String parameterId, String versionId)
throws IOException {
// Endpoint to call the regional parameter manager server
String apiEndpoint = String.format("parametermanager.%s.rep.googleapis.com:443", locationId);
ParameterManagerSettings parameterManagerSettings =
ParameterManagerSettings.newBuilder().setEndpoint(apiEndpoint).build();

// Initialize the client that will be used to send requests. This client only
// needs to be created once, and can be reused for multiple requests.
try (ParameterManagerClient client = ParameterManagerClient.create(parameterManagerSettings)) {
// Build the parameter version name.
ParameterVersionName parameterVersionName =
ParameterVersionName.of(projectId, locationId, parameterId, versionId);

// Get the parameter version.
ParameterVersion parameterVersion =
client.getParameterVersion(parameterVersionName.toString());
// Find more details for the Parameter Version object here:
// https://cloud.google.com/secret-manager/parameter-manager/docs/reference/rest/v1/projects.locations.parameters.versions#ParameterVersion
System.out.printf(
"Found regional parameter version %s with state %s\n",
parameterVersion.getName(), (parameterVersion.getDisabled() ? "disabled" : "enabled"));
if (!parameterVersion.getDisabled()) {
System.out.printf("Payload: %s", parameterVersion.getPayload().getData().toStringUtf8());
}
return parameterVersion;
}
}
}
// [END parametermanager_get_regional_param_version]
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
/*
* 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
*
* 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.
*/

package parametermanager.regionalsamples;

// [START parametermanager_list_regional_param_versions]

import com.google.cloud.parametermanager.v1.ListParameterVersionsRequest;
import com.google.cloud.parametermanager.v1.ParameterManagerClient;
import com.google.cloud.parametermanager.v1.ParameterManagerClient.ListParameterVersionsPagedResponse;
import com.google.cloud.parametermanager.v1.ParameterManagerSettings;
import com.google.cloud.parametermanager.v1.ParameterName;
import java.io.IOException;

/**
* Class to list parameter versions for a specified region using the Parameter Manager SDK
* for GCP.
*/
public class ListRegionalParamVersions {

public static void main(String[] args) throws IOException {
// TODO(developer): Replace these variables before running the sample.
String projectId = "your-project-id";
String locationId = "your-location-id";
String parameterId = "your-parameter-id";

// Call the method to list parameter versions regionally.
listRegionalParamVersions(projectId, locationId, parameterId);
}

// This is an example snippet that list all parameter versions regionally
public static ListParameterVersionsPagedResponse listRegionalParamVersions(
String projectId, String locationId, String parameterId) throws IOException {
// Endpoint to call the regional parameter manager server
String apiEndpoint = String.format("parametermanager.%s.rep.googleapis.com:443", locationId);
ParameterManagerSettings parameterManagerSettings =
ParameterManagerSettings.newBuilder().setEndpoint(apiEndpoint).build();

// Initialize the client that will be used to send requests. This client only needs to be
// created once,
// and can be reused for multiple requests.
try (ParameterManagerClient client = ParameterManagerClient.create(parameterManagerSettings)) {
// Build the parameter name from the project and parameter ID.
ParameterName parameterName = ParameterName.of(projectId, locationId, parameterId);

// Build the request to list parameter versions.
ListParameterVersionsRequest request =
ListParameterVersionsRequest.newBuilder().setParent(parameterName.toString()).build();

// Send the request and get the response.
ListParameterVersionsPagedResponse response = client.listParameterVersions(request);

// Iterate through all versions and print their details.
response
.iterateAll()
.forEach(
version ->
System.out.printf(
"Found regional parameter version %s with state %s\n",
version.getName(), (version.getDisabled() ? "disabled" : "enabled")));

return response;
}
}
}
// [END parametermanager_list_regional_param_versions]
Loading