parametermanager/api/ParameterManager.Samples/CreateStructuredParameterVersion.cs (26 lines of code) (raw):

/* * 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. */ // [START parametermanager_create_structured_param_version] using Google.Cloud.ParameterManager.V1; using Google.Protobuf; using System.Text; public class CreateStructuredParameterVersionSample { /// <summary> /// This function creates a parameter version with a JSON payload using the Parameter Manager SDK for GCP. /// </summary> /// <param name="projectId">The ID of the project where the parameter is located.</param> /// <param name="parameterId">The ID of the parameter for which the version is to be created.</param> /// <param name="versionId">The ID of the version to be created.</param> /// <returns>The created ParameterVersion object.</returns> public ParameterVersion CreateStructuredParameterVersion( string projectId, string parameterId, string versionId) { // Create the client. ParameterManagerClient client = ParameterManagerClient.Create(); // Build the parent resource name. ParameterName parent = new ParameterName(projectId, "global", parameterId); // Convert the JSON payload to bytes. string payload = "{\"username\": \"test-user\", \"host\": \"localhost\"}"; ByteString data = ByteString.CopyFrom(payload, Encoding.UTF8); // Build the parameter version with the JSON payload. ParameterVersion parameterVersion = new ParameterVersion { Payload = new ParameterVersionPayload { Data = data } }; // Call the API to create the parameter version. ParameterVersion createdParameterVersion = client.CreateParameterVersion(parent.ToString(), parameterVersion, versionId); // Print the created parameter version name. Console.WriteLine($"Created parameter version: {createdParameterVersion.Name}"); // Return the created parameter version. return createdParameterVersion; } } // [END parametermanager_create_structured_param_version]