@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.8 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets a Global parameter
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function getGlobalParameter(args: GetGlobalParameterArgs, opts?: pulumi.InvokeOptions): Promise<GetGlobalParameterResult>;
export interface GetGlobalParameterArgs {
/**
* The factory name.
*/
factoryName: string;
/**
* The global parameter name.
*/
globalParameterName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
}
/**
* Global parameters resource type.
*/
export interface GetGlobalParameterResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Etag identifies change in the resource.
*/
readonly etag: string;
/**
* The resource identifier.
*/
readonly id: string;
/**
* The resource name.
*/
readonly name: string;
/**
* Properties of the global parameter.
*/
readonly properties: {
[key: string]: outputs.datafactory.GlobalParameterSpecificationResponse;
};
/**
* The resource type.
*/
readonly type: string;
}
/**
* Gets a Global parameter
*
* Uses Azure REST API version 2018-06-01.
*/
export declare function getGlobalParameterOutput(args: GetGlobalParameterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetGlobalParameterResult>;
export interface GetGlobalParameterOutputArgs {
/**
* The factory name.
*/
factoryName: pulumi.Input<string>;
/**
* The global parameter name.
*/
globalParameterName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
}