gcp.parametermanager.ParameterVersion
Explore with Pulumi AI
Example Usage
Parameter Version Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const parameter_basic = new gcp.parametermanager.Parameter("parameter-basic", {parameterId: "parameter"});
const parameter_version_basic = new gcp.parametermanager.ParameterVersion("parameter-version-basic", {
parameter: parameter_basic.id,
parameterVersionId: "parameter_version",
parameterData: "app-parameter-version-data",
});
import pulumi
import pulumi_gcp as gcp
parameter_basic = gcp.parametermanager.Parameter("parameter-basic", parameter_id="parameter")
parameter_version_basic = gcp.parametermanager.ParameterVersion("parameter-version-basic",
parameter=parameter_basic.id,
parameter_version_id="parameter_version",
parameter_data="app-parameter-version-data")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/parametermanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
parameter_basic, err := parametermanager.NewParameter(ctx, "parameter-basic", ¶metermanager.ParameterArgs{
ParameterId: pulumi.String("parameter"),
})
if err != nil {
return err
}
_, err = parametermanager.NewParameterVersion(ctx, "parameter-version-basic", ¶metermanager.ParameterVersionArgs{
Parameter: parameter_basic.ID(),
ParameterVersionId: pulumi.String("parameter_version"),
ParameterData: pulumi.String("app-parameter-version-data"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var parameter_basic = new Gcp.ParameterManager.Parameter("parameter-basic", new()
{
ParameterId = "parameter",
});
var parameter_version_basic = new Gcp.ParameterManager.ParameterVersion("parameter-version-basic", new()
{
Parameter = parameter_basic.Id,
ParameterVersionId = "parameter_version",
ParameterData = "app-parameter-version-data",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.parametermanager.Parameter;
import com.pulumi.gcp.parametermanager.ParameterArgs;
import com.pulumi.gcp.parametermanager.ParameterVersion;
import com.pulumi.gcp.parametermanager.ParameterVersionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var parameter_basic = new Parameter("parameter-basic", ParameterArgs.builder()
.parameterId("parameter")
.build());
var parameter_version_basic = new ParameterVersion("parameter-version-basic", ParameterVersionArgs.builder()
.parameter(parameter_basic.id())
.parameterVersionId("parameter_version")
.parameterData("app-parameter-version-data")
.build());
}
}
resources:
parameter-basic:
type: gcp:parametermanager:Parameter
properties:
parameterId: parameter
parameter-version-basic:
type: gcp:parametermanager:ParameterVersion
properties:
parameter: ${["parameter-basic"].id}
parameterVersionId: parameter_version
parameterData: app-parameter-version-data
Parameter Version With Json Format
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const parameter_basic = new gcp.parametermanager.Parameter("parameter-basic", {
parameterId: "parameter",
format: "JSON",
});
const parameter_version_with_json_format = new gcp.parametermanager.ParameterVersion("parameter-version-with-json-format", {
parameter: parameter_basic.id,
parameterVersionId: "parameter_version",
parameterData: JSON.stringify({
key1: "val1",
key2: "val2",
}),
});
import pulumi
import json
import pulumi_gcp as gcp
parameter_basic = gcp.parametermanager.Parameter("parameter-basic",
parameter_id="parameter",
format="JSON")
parameter_version_with_json_format = gcp.parametermanager.ParameterVersion("parameter-version-with-json-format",
parameter=parameter_basic.id,
parameter_version_id="parameter_version",
parameter_data=json.dumps({
"key1": "val1",
"key2": "val2",
}))
package main
import (
"encoding/json"
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/parametermanager"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
parameter_basic, err := parametermanager.NewParameter(ctx, "parameter-basic", ¶metermanager.ParameterArgs{
ParameterId: pulumi.String("parameter"),
Format: pulumi.String("JSON"),
})
if err != nil {
return err
}
tmpJSON0, err := json.Marshal(map[string]interface{}{
"key1": "val1",
"key2": "val2",
})
if err != nil {
return err
}
json0 := string(tmpJSON0)
_, err = parametermanager.NewParameterVersion(ctx, "parameter-version-with-json-format", ¶metermanager.ParameterVersionArgs{
Parameter: parameter_basic.ID(),
ParameterVersionId: pulumi.String("parameter_version"),
ParameterData: pulumi.String(json0),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using System.Text.Json;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var parameter_basic = new Gcp.ParameterManager.Parameter("parameter-basic", new()
{
ParameterId = "parameter",
Format = "JSON",
});
var parameter_version_with_json_format = new Gcp.ParameterManager.ParameterVersion("parameter-version-with-json-format", new()
{
Parameter = parameter_basic.Id,
ParameterVersionId = "parameter_version",
ParameterData = JsonSerializer.Serialize(new Dictionary<string, object?>
{
["key1"] = "val1",
["key2"] = "val2",
}),
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.parametermanager.Parameter;
import com.pulumi.gcp.parametermanager.ParameterArgs;
import com.pulumi.gcp.parametermanager.ParameterVersion;
import com.pulumi.gcp.parametermanager.ParameterVersionArgs;
import static com.pulumi.codegen.internal.Serialization.*;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var parameter_basic = new Parameter("parameter-basic", ParameterArgs.builder()
.parameterId("parameter")
.format("JSON")
.build());
var parameter_version_with_json_format = new ParameterVersion("parameter-version-with-json-format", ParameterVersionArgs.builder()
.parameter(parameter_basic.id())
.parameterVersionId("parameter_version")
.parameterData(serializeJson(
jsonObject(
jsonProperty("key1", "val1"),
jsonProperty("key2", "val2")
)))
.build());
}
}
resources:
parameter-basic:
type: gcp:parametermanager:Parameter
properties:
parameterId: parameter
format: JSON
parameter-version-with-json-format:
type: gcp:parametermanager:ParameterVersion
properties:
parameter: ${["parameter-basic"].id}
parameterVersionId: parameter_version
parameterData:
fn::toJSON:
key1: val1
key2: val2
Import
ParameterVersion can be imported using any of these accepted formats:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
When using the pulumi import
command, ParameterVersion can be imported using one of the formats above. For example:
$ pulumi import gcp:parametermanager/parameterVersion:ParameterVersion default projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
Create ParameterVersion Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ParameterVersion(name: string, args: ParameterVersionArgs, opts?: CustomResourceOptions);
@overload
def ParameterVersion(resource_name: str,
args: ParameterVersionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ParameterVersion(resource_name: str,
opts: Optional[ResourceOptions] = None,
parameter: Optional[str] = None,
parameter_data: Optional[str] = None,
parameter_version_id: Optional[str] = None,
disabled: Optional[bool] = None)
func NewParameterVersion(ctx *Context, name string, args ParameterVersionArgs, opts ...ResourceOption) (*ParameterVersion, error)
public ParameterVersion(string name, ParameterVersionArgs args, CustomResourceOptions? opts = null)
public ParameterVersion(String name, ParameterVersionArgs args)
public ParameterVersion(String name, ParameterVersionArgs args, CustomResourceOptions options)
type: gcp:parametermanager:ParameterVersion
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ParameterVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ParameterVersionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ParameterVersionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ParameterVersionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ParameterVersionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var parameterVersionResource = new Gcp.ParameterManager.ParameterVersion("parameterVersionResource", new()
{
Parameter = "string",
ParameterData = "string",
ParameterVersionId = "string",
Disabled = false,
});
example, err := parametermanager.NewParameterVersion(ctx, "parameterVersionResource", ¶metermanager.ParameterVersionArgs{
Parameter: pulumi.String("string"),
ParameterData: pulumi.String("string"),
ParameterVersionId: pulumi.String("string"),
Disabled: pulumi.Bool(false),
})
var parameterVersionResource = new ParameterVersion("parameterVersionResource", ParameterVersionArgs.builder()
.parameter("string")
.parameterData("string")
.parameterVersionId("string")
.disabled(false)
.build());
parameter_version_resource = gcp.parametermanager.ParameterVersion("parameterVersionResource",
parameter="string",
parameter_data="string",
parameter_version_id="string",
disabled=False)
const parameterVersionResource = new gcp.parametermanager.ParameterVersion("parameterVersionResource", {
parameter: "string",
parameterData: "string",
parameterVersionId: "string",
disabled: false,
});
type: gcp:parametermanager:ParameterVersion
properties:
disabled: false
parameter: string
parameterData: string
parameterVersionId: string
ParameterVersion Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ParameterVersion resource accepts the following input properties:
- Parameter string
- Parameter Manager Parameter resource.
- Parameter
Data string - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- Parameter
Version stringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- Disabled bool
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- Parameter string
- Parameter Manager Parameter resource.
- Parameter
Data string - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- Parameter
Version stringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- Disabled bool
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- parameter String
- Parameter Manager Parameter resource.
- parameter
Data String - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter
Version StringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- disabled Boolean
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- parameter string
- Parameter Manager Parameter resource.
- parameter
Data string - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter
Version stringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- disabled boolean
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- parameter str
- Parameter Manager Parameter resource.
- parameter_
data str - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter_
version_ strid - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- disabled bool
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- parameter String
- Parameter Manager Parameter resource.
- parameter
Data String - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter
Version StringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- disabled Boolean
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
Outputs
All input properties are implicitly available as output properties. Additionally, the ParameterVersion resource produces the following output properties:
- Create
Time string - The time at which the Parameter Version was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- Update
Time string - The time at which the Parameter Version was updated.
- Create
Time string - The time at which the Parameter Version was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- Update
Time string - The time at which the Parameter Version was updated.
- create
Time String - The time at which the Parameter Version was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- update
Time String - The time at which the Parameter Version was updated.
- create
Time string - The time at which the Parameter Version was created.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- update
Time string - The time at which the Parameter Version was updated.
- create_
time str - The time at which the Parameter Version was created.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- update_
time str - The time at which the Parameter Version was updated.
- create
Time String - The time at which the Parameter Version was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- update
Time String - The time at which the Parameter Version was updated.
Look up Existing ParameterVersion Resource
Get an existing ParameterVersion resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ParameterVersionState, opts?: CustomResourceOptions): ParameterVersion
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
disabled: Optional[bool] = None,
name: Optional[str] = None,
parameter: Optional[str] = None,
parameter_data: Optional[str] = None,
parameter_version_id: Optional[str] = None,
update_time: Optional[str] = None) -> ParameterVersion
func GetParameterVersion(ctx *Context, name string, id IDInput, state *ParameterVersionState, opts ...ResourceOption) (*ParameterVersion, error)
public static ParameterVersion Get(string name, Input<string> id, ParameterVersionState? state, CustomResourceOptions? opts = null)
public static ParameterVersion get(String name, Output<String> id, ParameterVersionState state, CustomResourceOptions options)
resources: _: type: gcp:parametermanager:ParameterVersion get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - The time at which the Parameter Version was created.
- Disabled bool
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- Name string
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- Parameter string
- Parameter Manager Parameter resource.
- Parameter
Data string - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- Parameter
Version stringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- Update
Time string - The time at which the Parameter Version was updated.
- Create
Time string - The time at which the Parameter Version was created.
- Disabled bool
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- Name string
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- Parameter string
- Parameter Manager Parameter resource.
- Parameter
Data string - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- Parameter
Version stringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- Update
Time string - The time at which the Parameter Version was updated.
- create
Time String - The time at which the Parameter Version was created.
- disabled Boolean
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- name String
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- parameter String
- Parameter Manager Parameter resource.
- parameter
Data String - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter
Version StringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- update
Time String - The time at which the Parameter Version was updated.
- create
Time string - The time at which the Parameter Version was created.
- disabled boolean
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- name string
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- parameter string
- Parameter Manager Parameter resource.
- parameter
Data string - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter
Version stringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- update
Time string - The time at which the Parameter Version was updated.
- create_
time str - The time at which the Parameter Version was created.
- disabled bool
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- name str
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- parameter str
- Parameter Manager Parameter resource.
- parameter_
data str - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter_
version_ strid - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- update_
time str - The time at which the Parameter Version was updated.
- create
Time String - The time at which the Parameter Version was created.
- disabled Boolean
- The current state of Parameter Version. This field is only applicable for updating Parameter Version.
- name String
- The resource name of the Parameter Version. Format:
projects/{{project}}/locations/global/parameters/{{parameter_id}}/versions/{{parameter_version_id}}
- parameter String
- Parameter Manager Parameter resource.
- parameter
Data String - The Parameter data. Note: This property is sensitive and will not be displayed in the plan.
- parameter
Version StringId - Version ID of the Parameter Version Resource. This must be unique within the Parameter.
- update
Time String - The time at which the Parameter Version was updated.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.