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

gcp.parametermanager.RegionalParameter

Explore with Pulumi AI

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

    Example Usage

    Regional Parameter Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const regional_parameter_basic = new gcp.parametermanager.RegionalParameter("regional-parameter-basic", {
        parameterId: "regional_parameter",
        location: "us-central1",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    regional_parameter_basic = gcp.parametermanager.RegionalParameter("regional-parameter-basic",
        parameter_id="regional_parameter",
        location="us-central1")
    
    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.NewRegionalParameter(ctx, "regional-parameter-basic", &parametermanager.RegionalParameterArgs{
    			ParameterId: pulumi.String("regional_parameter"),
    			Location:    pulumi.String("us-central1"),
    		})
    		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 regional_parameter_basic = new Gcp.ParameterManager.RegionalParameter("regional-parameter-basic", new()
        {
            ParameterId = "regional_parameter",
            Location = "us-central1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.parametermanager.RegionalParameter;
    import com.pulumi.gcp.parametermanager.RegionalParameterArgs;
    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 regional_parameter_basic = new RegionalParameter("regional-parameter-basic", RegionalParameterArgs.builder()
                .parameterId("regional_parameter")
                .location("us-central1")
                .build());
    
        }
    }
    
    resources:
      regional-parameter-basic:
        type: gcp:parametermanager:RegionalParameter
        properties:
          parameterId: regional_parameter
          location: us-central1
    

    Regional Parameter With Format

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const regional_parameter_with_format = new gcp.parametermanager.RegionalParameter("regional-parameter-with-format", {
        parameterId: "regional_parameter",
        location: "us-central1",
        format: "JSON",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    regional_parameter_with_format = gcp.parametermanager.RegionalParameter("regional-parameter-with-format",
        parameter_id="regional_parameter",
        location="us-central1",
        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.NewRegionalParameter(ctx, "regional-parameter-with-format", &parametermanager.RegionalParameterArgs{
    			ParameterId: pulumi.String("regional_parameter"),
    			Location:    pulumi.String("us-central1"),
    			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 regional_parameter_with_format = new Gcp.ParameterManager.RegionalParameter("regional-parameter-with-format", new()
        {
            ParameterId = "regional_parameter",
            Location = "us-central1",
            Format = "JSON",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.parametermanager.RegionalParameter;
    import com.pulumi.gcp.parametermanager.RegionalParameterArgs;
    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 regional_parameter_with_format = new RegionalParameter("regional-parameter-with-format", RegionalParameterArgs.builder()
                .parameterId("regional_parameter")
                .location("us-central1")
                .format("JSON")
                .build());
    
        }
    }
    
    resources:
      regional-parameter-with-format:
        type: gcp:parametermanager:RegionalParameter
        properties:
          parameterId: regional_parameter
          location: us-central1
          format: JSON
    

    Regional Parameter With Labels

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const regional_parameter_with_labels = new gcp.parametermanager.RegionalParameter("regional-parameter-with-labels", {
        parameterId: "regional_parameter",
        location: "us-central1",
        labels: {
            key1: "val1",
            key2: "val2",
            key3: "val3",
            key4: "val4",
            key5: "val5",
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    regional_parameter_with_labels = gcp.parametermanager.RegionalParameter("regional-parameter-with-labels",
        parameter_id="regional_parameter",
        location="us-central1",
        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.NewRegionalParameter(ctx, "regional-parameter-with-labels", &parametermanager.RegionalParameterArgs{
    			ParameterId: pulumi.String("regional_parameter"),
    			Location:    pulumi.String("us-central1"),
    			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 regional_parameter_with_labels = new Gcp.ParameterManager.RegionalParameter("regional-parameter-with-labels", new()
        {
            ParameterId = "regional_parameter",
            Location = "us-central1",
            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.RegionalParameter;
    import com.pulumi.gcp.parametermanager.RegionalParameterArgs;
    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 regional_parameter_with_labels = new RegionalParameter("regional-parameter-with-labels", RegionalParameterArgs.builder()
                .parameterId("regional_parameter")
                .location("us-central1")
                .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:
      regional-parameter-with-labels:
        type: gcp:parametermanager:RegionalParameter
        properties:
          parameterId: regional_parameter
          location: us-central1
          labels:
            key1: val1
            key2: val2
            key3: val3
            key4: val4
            key5: val5
    

    Create RegionalParameter Resource

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

    Constructor syntax

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

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

    Location string
    The location of the regional parameter. eg us-central1
    ParameterId string
    This must be unique within the project.


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

    The labels assigned to this regional 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.
    Location string
    The location of the regional parameter. eg us-central1
    ParameterId string
    This must be unique within the project.


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

    The labels assigned to this regional 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.
    location String
    The location of the regional parameter. eg us-central1
    parameterId String
    This must be unique within the project.


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

    The labels assigned to this regional 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.
    location string
    The location of the regional parameter. eg us-central1
    parameterId string
    This must be unique within the project.


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

    The labels assigned to this regional 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.
    location str
    The location of the regional parameter. eg us-central1
    parameter_id str
    This must be unique within the project.


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

    The labels assigned to this regional 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.
    location String
    The location of the regional parameter. eg us-central1
    parameterId String
    This must be unique within the project.


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

    The labels assigned to this regional 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 RegionalParameter resource produces the following output properties:

    CreateTime string
    The time at which the regional 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 regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    PolicyMembers List<RegionalParameterPolicyMember>
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    CreateTime string
    The time at which the regional 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 regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    PolicyMembers []RegionalParameterPolicyMember
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    createTime String
    The time at which the regional 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 regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    policyMembers List<RegionalParameterPolicyMember>
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    createTime string
    The time at which the regional 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 regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    policyMembers RegionalParameterPolicyMember[]
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    create_time str
    The time at which the regional 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 regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    policy_members Sequence[RegionalParameterPolicyMember]
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    createTime String
    The time at which the regional 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 regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    policyMembers List<Property Map>
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.

    Look up Existing RegionalParameter Resource

    Get an existing RegionalParameter 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?: RegionalParameterState, opts?: CustomResourceOptions): RegionalParameter
    @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,
            location: Optional[str] = None,
            name: Optional[str] = None,
            parameter_id: Optional[str] = None,
            policy_members: Optional[Sequence[RegionalParameterPolicyMemberArgs]] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            update_time: Optional[str] = None) -> RegionalParameter
    func GetRegionalParameter(ctx *Context, name string, id IDInput, state *RegionalParameterState, opts ...ResourceOption) (*RegionalParameter, error)
    public static RegionalParameter Get(string name, Input<string> id, RegionalParameterState? state, CustomResourceOptions? opts = null)
    public static RegionalParameter get(String name, Output<String> id, RegionalParameterState state, CustomResourceOptions options)
    resources:  _:    type: gcp:parametermanager:RegionalParameter    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 regional 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 regional parameter. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    Labels Dictionary<string, string>

    The labels assigned to this regional 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.

    Location string
    The location of the regional parameter. eg us-central1
    Name string
    The resource name of the regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    ParameterId string
    This must be unique within the project.


    PolicyMembers List<RegionalParameterPolicyMember>
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    CreateTime string
    The time at which the regional 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 regional parameter. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    Labels map[string]string

    The labels assigned to this regional 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.

    Location string
    The location of the regional parameter. eg us-central1
    Name string
    The resource name of the regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    ParameterId string
    This must be unique within the project.


    PolicyMembers []RegionalParameterPolicyMemberArgs
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    createTime String
    The time at which the regional 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 regional parameter. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Map<String,String>

    The labels assigned to this regional 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.

    location String
    The location of the regional parameter. eg us-central1
    name String
    The resource name of the regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameterId String
    This must be unique within the project.


    policyMembers List<RegionalParameterPolicyMember>
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    createTime string
    The time at which the regional 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 regional parameter. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels {[key: string]: string}

    The labels assigned to this regional 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.

    location string
    The location of the regional parameter. eg us-central1
    name string
    The resource name of the regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameterId string
    This must be unique within the project.


    policyMembers RegionalParameterPolicyMember[]
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    create_time str
    The time at which the regional 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 regional parameter. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Mapping[str, str]

    The labels assigned to this regional 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.

    location str
    The location of the regional parameter. eg us-central1
    name str
    The resource name of the regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameter_id str
    This must be unique within the project.


    policy_members Sequence[RegionalParameterPolicyMemberArgs]
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.
    createTime String
    The time at which the regional 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 regional parameter. Default value is UNFORMATTED. Possible values are: UNFORMATTED, YAML, JSON.
    labels Map<String>

    The labels assigned to this regional 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.

    location String
    The location of the regional parameter. eg us-central1
    name String
    The resource name of the regional Parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameterId String
    This must be unique within the project.


    policyMembers List<Property Map>
    An object containing a unique resource identity tied to the regional parameter. 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 regional Parameter was updated.

    Supporting Types

    RegionalParameterPolicyMember, RegionalParameterPolicyMemberArgs

    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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/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/{{location}}/parameters/{{uid}}

    Import

    RegionalParameter can be imported using any of these accepted formats:

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

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

    • {{location}}/{{parameter_id}}

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

    $ pulumi import gcp:parametermanager/regionalParameter:RegionalParameter default projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    
    $ pulumi import gcp:parametermanager/regionalParameter:RegionalParameter default {{project}}/{{location}}/{{parameter_id}}
    
    $ pulumi import gcp:parametermanager/regionalParameter:RegionalParameter default {{location}}/{{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