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

gcp.parametermanager.getRegionalParameters

Explore with Pulumi AI

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

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const regional_parameters = gcp.parametermanager.getRegionalParameters({
        location: "us-central1",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    regional_parameters = gcp.parametermanager.get_regional_parameters(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.GetRegionalParameters(ctx, &parametermanager.GetRegionalParametersArgs{
    			Location: "us-central1",
    		}, nil)
    		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_parameters = Gcp.ParameterManager.GetRegionalParameters.Invoke(new()
        {
            Location = "us-central1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.parametermanager.ParametermanagerFunctions;
    import com.pulumi.gcp.parametermanager.inputs.GetRegionalParametersArgs;
    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) {
            final var regional-parameters = ParametermanagerFunctions.getRegionalParameters(GetRegionalParametersArgs.builder()
                .location("us-central1")
                .build());
    
        }
    }
    
    variables:
      regional-parameters:
        fn::invoke:
          function: gcp:parametermanager:getRegionalParameters
          arguments:
            location: us-central1
    

    Using getRegionalParameters

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getRegionalParameters(args: GetRegionalParametersArgs, opts?: InvokeOptions): Promise<GetRegionalParametersResult>
    function getRegionalParametersOutput(args: GetRegionalParametersOutputArgs, opts?: InvokeOptions): Output<GetRegionalParametersResult>
    def get_regional_parameters(filter: Optional[str] = None,
                                location: Optional[str] = None,
                                project: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetRegionalParametersResult
    def get_regional_parameters_output(filter: Optional[pulumi.Input[str]] = None,
                                location: Optional[pulumi.Input[str]] = None,
                                project: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetRegionalParametersResult]
    func GetRegionalParameters(ctx *Context, args *GetRegionalParametersArgs, opts ...InvokeOption) (*GetRegionalParametersResult, error)
    func GetRegionalParametersOutput(ctx *Context, args *GetRegionalParametersOutputArgs, opts ...InvokeOption) GetRegionalParametersResultOutput

    > Note: This function is named GetRegionalParameters in the Go SDK.

    public static class GetRegionalParameters 
    {
        public static Task<GetRegionalParametersResult> InvokeAsync(GetRegionalParametersArgs args, InvokeOptions? opts = null)
        public static Output<GetRegionalParametersResult> Invoke(GetRegionalParametersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRegionalParametersResult> getRegionalParameters(GetRegionalParametersArgs args, InvokeOptions options)
    public static Output<GetRegionalParametersResult> getRegionalParameters(GetRegionalParametersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcp:parametermanager/getRegionalParameters:getRegionalParameters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Location string
    The location of regional parameter.
    Filter string
    Filter string, adhering to the rules in List-operation filtering. List only parameters matching the filter. If filter is empty, all regional parameters are listed.
    Project string
    The ID of the project.
    Location string
    The location of regional parameter.
    Filter string
    Filter string, adhering to the rules in List-operation filtering. List only parameters matching the filter. If filter is empty, all regional parameters are listed.
    Project string
    The ID of the project.
    location String
    The location of regional parameter.
    filter String
    Filter string, adhering to the rules in List-operation filtering. List only parameters matching the filter. If filter is empty, all regional parameters are listed.
    project String
    The ID of the project.
    location string
    The location of regional parameter.
    filter string
    Filter string, adhering to the rules in List-operation filtering. List only parameters matching the filter. If filter is empty, all regional parameters are listed.
    project string
    The ID of the project.
    location str
    The location of regional parameter.
    filter str
    Filter string, adhering to the rules in List-operation filtering. List only parameters matching the filter. If filter is empty, all regional parameters are listed.
    project str
    The ID of the project.
    location String
    The location of regional parameter.
    filter String
    Filter string, adhering to the rules in List-operation filtering. List only parameters matching the filter. If filter is empty, all regional parameters are listed.
    project String
    The ID of the project.

    getRegionalParameters Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Parameters List<GetRegionalParametersParameter>
    A list of regional parameters matching the filter. Structure is defined below.
    Project string
    The ID of the project in which the resource belongs.
    Filter string
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    Parameters []GetRegionalParametersParameter
    A list of regional parameters matching the filter. Structure is defined below.
    Project string
    The ID of the project in which the resource belongs.
    Filter string
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    parameters List<GetRegionalParametersParameter>
    A list of regional parameters matching the filter. Structure is defined below.
    project String
    The ID of the project in which the resource belongs.
    filter String
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    parameters GetRegionalParametersParameter[]
    A list of regional parameters matching the filter. Structure is defined below.
    project string
    The ID of the project in which the resource belongs.
    filter string
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    parameters Sequence[GetRegionalParametersParameter]
    A list of regional parameters matching the filter. Structure is defined below.
    project str
    The ID of the project in which the resource belongs.
    filter str
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    parameters List<Property Map>
    A list of regional parameters matching the filter. Structure is defined below.
    project String
    The ID of the project in which the resource belongs.
    filter String

    Supporting Types

    GetRegionalParametersParameter

    CreateTime string
    The time at which the regional parameter was created.
    EffectiveLabels Dictionary<string, string>
    Format string
    The format type of the regional parameter.
    Labels Dictionary<string, string>
    The labels assigned to the regional parameter.
    Location string
    The location of regional parameter.
    Name string
    The resource name of the regional parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    ParameterId string
    The unique name of the resource.
    PolicyMembers List<GetRegionalParametersParameterPolicyMember>
    An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
    Project string
    The ID of the project.
    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
    Format string
    The format type of the regional parameter.
    Labels map[string]string
    The labels assigned to the regional parameter.
    Location string
    The location of regional parameter.
    Name string
    The resource name of the regional parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    ParameterId string
    The unique name of the resource.
    PolicyMembers []GetRegionalParametersParameterPolicyMember
    An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
    Project string
    The ID of the project.
    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>
    format String
    The format type of the regional parameter.
    labels Map<String,String>
    The labels assigned to the regional parameter.
    location String
    The location of regional parameter.
    name String
    The resource name of the regional parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameterId String
    The unique name of the resource.
    policyMembers List<GetRegionalParametersParameterPolicyMember>
    An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
    project String
    The ID of the project.
    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}
    format string
    The format type of the regional parameter.
    labels {[key: string]: string}
    The labels assigned to the regional parameter.
    location string
    The location of regional parameter.
    name string
    The resource name of the regional parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameterId string
    The unique name of the resource.
    policyMembers GetRegionalParametersParameterPolicyMember[]
    An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
    project string
    The ID of the project.
    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]
    format str
    The format type of the regional parameter.
    labels Mapping[str, str]
    The labels assigned to the regional parameter.
    location str
    The location of regional parameter.
    name str
    The resource name of the regional parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameter_id str
    The unique name of the resource.
    policy_members Sequence[GetRegionalParametersParameterPolicyMember]
    An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
    project str
    The ID of the project.
    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>
    format String
    The format type of the regional parameter.
    labels Map<String>
    The labels assigned to the regional parameter.
    location String
    The location of regional parameter.
    name String
    The resource name of the regional parameter. Format: projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}
    parameterId String
    The unique name of the resource.
    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.
    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.

    GetRegionalParametersParameterPolicyMember

    IamPolicyNamePrincipal string
    AM 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
    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
    AM 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
    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
    AM 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
    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
    AM 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
    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
    AM 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
    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
    AM 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
    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}}

    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