import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to list the Parameter Manager Regional Parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const regional_parameters = gcp.parametermanager.getRegionalParameters({ * location: "us-central1", * }); * ``` */ export declare function getRegionalParameters(args: GetRegionalParametersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRegionalParameters. */ export interface GetRegionalParametersArgs { /** * 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. */ filter?: string; /** * The location of regional parameter. */ location: string; /** * The ID of the project. */ project?: string; } /** * A collection of values returned by getRegionalParameters. */ export interface GetRegionalParametersResult { readonly filter?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly location: string; /** * A list of regional parameters matching the filter. Structure is defined below. */ readonly parameters: outputs.parametermanager.GetRegionalParametersParameter[]; /** * The ID of the project in which the resource belongs. */ readonly project: string; } /** * Use this data source to list the Parameter Manager Regional Parameters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const regional_parameters = gcp.parametermanager.getRegionalParameters({ * location: "us-central1", * }); * ``` */ export declare function getRegionalParametersOutput(args: GetRegionalParametersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRegionalParameters. */ export interface GetRegionalParametersOutputArgs { /** * 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. */ filter?: pulumi.Input; /** * The location of regional parameter. */ location: pulumi.Input; /** * The ID of the project. */ project?: pulumi.Input; }