1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. parametermanager
  5. Parameter
Google Cloud v8.22.0 published on Thursday, Mar 13, 2025 by Pulumi

gcp.parametermanager.Parameter

Explore with Pulumi AI

gcp logo
Google Cloud v8.22.0 published on Thursday, Mar 13, 2025 by Pulumi

    Example Usage

    Parameter Config Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const parameter_basic = new gcp.parametermanager.Parameter("parameter-basic", {parameterId: "parameter"});
    
    import pulumi
    import pulumi_gcp as gcp
    
    parameter_basic = gcp.parametermanager.Parameter("parameter-basic", parameter_id="parameter")
    
    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 {
    		_, err := parametermanager.NewParameter(ctx, "parameter-basic", &parametermanager.ParameterArgs{
    			ParameterId: pulumi.String("parameter"),
    		})
    		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",
        });
    
    });
    
    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 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());
    
        }
    }
    
    resources:
      parameter-basic:
        type: gcp:parametermanager:Parameter
        properties:
          parameterId: parameter
    

    Parameter With Format

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const parameter_with_format = new gcp.parametermanager.Parameter("parameter-with-format", {
        parameterId: "parameter",
        format: "JSON",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    parameter_with_format = gcp.parametermanager.Parameter("parameter-with-format",
        parameter_id="parameter",
        format="JSON")
    
    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 {
    		_, err := parametermanager.NewParameter(ctx, "parameter-with-format", &parametermanager.ParameterArgs{
    			ParameterId: pulumi.String("parameter"),
    			Format:      pulumi.String("JSON"),
    		})
    		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_with_format = new Gcp.ParameterManager.Parameter("parameter-with-format", new()
        {
            ParameterId = "parameter",
            Format = "JSON",
        });
    
    });
    
    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 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_with_format = new Parameter("parameter-with-format", ParameterArgs.builder()
                .parameterId("parameter")
                .format("JSON")
                .build());
    
        }
    }
    
    resources:
      parameter-with-format:
        type: gcp:parametermanager:Parameter
        properties:
          parameterId: parameter
          format: JSON
    

    Parameter With Labels

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const parameter_with_labels = new gcp.parametermanager.Parameter("parameter-with-labels", {
        parameterId: "parameter",
        labels: {
            key1: "val1",
            key2: "val2",
            key3: "val3",
            key4: "val4",
            key5: "val5",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    parameter_with_labels = gcp.parametermanager.Parameter("parameter-with-labels",
        parameter_id="parameter",
        labels={
            "key1": "val1",
            "key2": "val2",
            "key3": "val3",
            "key4": "val4",
            "key5": "val5",
        })
    
    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 {
    		_, err := parametermanager.NewParameter(ctx, "parameter-with-labels", &parametermanager.ParameterArgs{
    			ParameterId: pulumi.String("parameter"),
    			Labels: pulumi.StringMap{
    				"key1": pulumi.String("val1"),
    				"key2": pulumi.String("val2"),
    				"key3": pulumi.String("val3"),
    				"key4": pulumi.String("val4"),
    				"key5": pulumi.String("val5"),
    			},
    		})
    		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_with_labels = new Gcp.ParameterManager.Parameter("parameter-with-labels", new()
        {
            ParameterId = "parameter",
            Labels = 
            {
                { "key1", "val1" },
                { "key2", "val2" },
                { "key3", "val3" },
                { "key4", "val4" },
                { "key5", "val5" },
            },
        });
    
    });
    
    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 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_with_labels = new Parameter("parameter-with-labels", ParameterArgs.builder()
                .parameterId("parameter")
                .labels(Map.ofEntries(
                    Map.entry("key1", "val1"),
                    Map.entry("key2", "val2"),
                    Map.entry("key3", "val3"),
                    Map.entry("key4", "val4"),
                    Map.entry("key5", "val5")
                ))
                .build());
    
        }
    }
    
    resources:
      parameter-with-labels:
        type: gcp:parametermanager:Parameter
        properties:
          parameterId: parameter
          labels:
            key1: val1
            key2: val2
            key3: val3
            key4: val4
            key5: val5
    

    Create Parameter Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Parameter(name: string, args: ParameterArgs, opts?: CustomResourceOptions);
    @overload
    def Parameter(resource_name: str,
                  args: ParameterArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def Parameter(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  parameter_id: Optional[str] = None,
                  format: Optional[str] = None,
                  labels: Optional[Mapping[str, str]] = None,
                  project: Optional[str] = None)
    func NewParameter(ctx *Context, name string, args ParameterArgs, opts ...ResourceOption) (*Parameter, error)
    public Parameter(string name, ParameterArgs args, CustomResourceOptions? opts = null)
    public Parameter(String name, ParameterArgs args)
    public Parameter(String name, ParameterArgs args, CustomResourceOptions options)
    
    type: gcp:parametermanager:Parameter
    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 ParameterArgs
    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 ParameterArgs
    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 ParameterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ParameterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ParameterArgs
    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 parameterResource = new Gcp.ParameterManager.Parameter("parameterResource", new()
    {
        ParameterId = "string",
        Format = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Project = "string",
    });
    
    example, err := parametermanager.NewParameter(ctx, "parameterResource", &parametermanager.ParameterArgs{
    	ParameterId: pulumi.String("string"),
    	Format:      pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Project: pulumi.String("string"),
    })
    
    var parameterResource = new Parameter("parameterResource", ParameterArgs.builder()
        .parameterId("string")
        .format("string")
        .labels(Map.of("string", "string"))
        .project("string")
        .build());
    
    parameter_resource = gcp.parametermanager.Parameter("parameterResource",
        parameter_id="string",
        format="string",
        labels={
            "string": "string",
        },
        project="string")
    
    const parameterResource = new gcp.parametermanager.Parameter("parameterResource", {
        parameterId: "string",
        format: "string",
        labels: {
            string: "string",
        },
        project: "string",
    });
    
    type: gcp:parametermanager:Parameter
    properties:
        format: string
        labels:
            string: string
        parameterId: string
        project: string
    

    Parameter 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 Parameter resource accepts the following input properties:

    ParameterId string
    This must be unique within the project.


    Format string
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    Labels Dictionary<string, string>

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    ParameterId string
    This must be unique within the project.


    Format string
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    Labels map[string]string

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    parameterId String
    This must be unique within the project.


    format String
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Map<String,String>

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    parameterId string
    This must be unique within the project.


    format string
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels {[key: string]: string}

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    parameter_id str
    This must be unique within the project.


    format str
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Mapping[str, str]

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    parameterId String
    This must be unique within the project.


    format String
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Map<String>

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Parameter resource produces the following output properties:

    CreateTime string
    The time at which the Parameter was created.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    PolicyMembers List<ParameterPolicyMember>
    Policy member strings of a Google Cloud resource. Structure is documented below.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    UpdateTime string
    The time at which the Parameter was updated.
    CreateTime string
    The time at which the Parameter was created.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    PolicyMembers []ParameterPolicyMember
    Policy member strings of a Google Cloud resource. Structure is documented below.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    UpdateTime string
    The time at which the Parameter was updated.
    createTime String
    The time at which the Parameter was created.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    policyMembers List<ParameterPolicyMember>
    Policy member strings of a Google Cloud resource. Structure is documented below.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime String
    The time at which the Parameter was updated.
    createTime string
    The time at which the Parameter was created.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    policyMembers ParameterPolicyMember[]
    Policy member strings of a Google Cloud resource. Structure is documented below.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime string
    The time at which the Parameter was updated.
    create_time str
    The time at which the Parameter was created.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    policy_members Sequence[ParameterPolicyMember]
    Policy member strings of a Google Cloud resource. Structure is documented below.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    update_time str
    The time at which the Parameter was updated.
    createTime String
    The time at which the Parameter was created.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    policyMembers List<Property Map>
    Policy member strings of a Google Cloud resource. Structure is documented below.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime String
    The time at which the Parameter was updated.

    Look up Existing Parameter Resource

    Get an existing Parameter 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?: ParameterState, opts?: CustomResourceOptions): Parameter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            format: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            parameter_id: Optional[str] = None,
            policy_members: Optional[Sequence[ParameterPolicyMemberArgs]] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            update_time: Optional[str] = None) -> Parameter
    func GetParameter(ctx *Context, name string, id IDInput, state *ParameterState, opts ...ResourceOption) (*Parameter, error)
    public static Parameter Get(string name, Input<string> id, ParameterState? state, CustomResourceOptions? opts = null)
    public static Parameter get(String name, Output<String> id, ParameterState state, CustomResourceOptions options)
    resources:  _:    type: gcp:parametermanager:Parameter    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.
    The following state arguments are supported:
    CreateTime string
    The time at which the Parameter was created.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Format string
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    Labels Dictionary<string, string>

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    ParameterId string
    This must be unique within the project.


    PolicyMembers List<ParameterPolicyMember>
    Policy member strings of a Google Cloud resource. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    UpdateTime string
    The time at which the Parameter was updated.
    CreateTime string
    The time at which the Parameter was created.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Format string
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    Labels map[string]string

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    ParameterId string
    This must be unique within the project.


    PolicyMembers []ParameterPolicyMemberArgs
    Policy member strings of a Google Cloud resource. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    UpdateTime string
    The time at which the Parameter was updated.
    createTime String
    The time at which the Parameter was created.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    format String
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Map<String,String>

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    parameterId String
    This must be unique within the project.


    policyMembers List<ParameterPolicyMember>
    Policy member strings of a Google Cloud resource. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime String
    The time at which the Parameter was updated.
    createTime string
    The time at which the Parameter was created.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    format string
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels {[key: string]: string}

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name string
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    parameterId string
    This must be unique within the project.


    policyMembers ParameterPolicyMember[]
    Policy member strings of a Google Cloud resource. Structure is documented below.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime string
    The time at which the Parameter was updated.
    create_time str
    The time at which the Parameter was created.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    format str
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Mapping[str, str]

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name str
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    parameter_id str
    This must be unique within the project.


    policy_members Sequence[ParameterPolicyMemberArgs]
    Policy member strings of a Google Cloud resource. Structure is documented below.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    update_time str
    The time at which the Parameter was updated.
    createTime String
    The time at which the Parameter was created.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    format String
    The format type of the parameter resource. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Map<String>

    The labels assigned to this Parameter. Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}][\p{Ll}\p{Lo}\p{N}-]{0,62} Label values must be between 0 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes, and must conform to the following PCRE regular expression: [\p{Ll}\p{Lo}\p{N}-]{0,63} No more than 64 labels can be assigned to a given resource. An object containing a list of "key": value pairs. Example: { "name": "wrench", "mass": "1.3kg", "count": "3" }.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The resource name of the Parameter. Format: projects/{{project}}/locations/global/parameters/{{parameter_id}}
    parameterId String
    This must be unique within the project.


    policyMembers List<Property Map>
    Policy member strings of a Google Cloud resource. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    updateTime String
    The time at which the Parameter was updated.

    Supporting Types

    ParameterPolicyMember, ParameterPolicyMemberArgs

    IamPolicyNamePrincipal string
    (Output) IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}
    IamPolicyUidPrincipal string
    (Output) IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier. If a resource is deleted and recreated with the same name, the binding will not be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}
    IamPolicyNamePrincipal string
    (Output) IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}
    IamPolicyUidPrincipal string
    (Output) IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier. If a resource is deleted and recreated with the same name, the binding will not be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}
    iamPolicyNamePrincipal String
    (Output) IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}
    iamPolicyUidPrincipal String
    (Output) IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier. If a resource is deleted and recreated with the same name, the binding will not be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}
    iamPolicyNamePrincipal string
    (Output) IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}
    iamPolicyUidPrincipal string
    (Output) IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier. If a resource is deleted and recreated with the same name, the binding will not be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}
    iam_policy_name_principal str
    (Output) IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}
    iam_policy_uid_principal str
    (Output) IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier. If a resource is deleted and recreated with the same name, the binding will not be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}
    iamPolicyNamePrincipal String
    (Output) IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}
    iamPolicyUidPrincipal String
    (Output) IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier. If a resource is deleted and recreated with the same name, the binding will not be applicable to the new resource. Format: principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}

    Import

    Parameter can be imported using any of these accepted formats:

    • projects/{{project}}/locations/global/parameters/{{parameter_id}}

    • {{project}}/{{parameter_id}}

    • {{parameter_id}}

    When using the pulumi import command, Parameter can be imported using one of the formats above. For example:

    $ pulumi import gcp:parametermanager/parameter:Parameter default projects/{{project}}/locations/global/parameters/{{parameter_id}}
    
    $ pulumi import gcp:parametermanager/parameter:Parameter default {{project}}/{{parameter_id}}
    
    $ pulumi import gcp:parametermanager/parameter:Parameter default {{parameter_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.
    gcp logo
    Google Cloud v8.22.0 published on Thursday, Mar 13, 2025 by Pulumi