@kengachu-pulumi/azure-native-web
Version:
Pulumi Azure Native package for web
79 lines (78 loc) • 1.94 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as types from "./types";
/**
* Gets a specific gateway under a subscription and in a specific resource group
*
* Uses Azure REST API version 2016-06-01.
*/
export declare function getConnectionGateway(args: GetConnectionGatewayArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectionGatewayResult>;
export interface GetConnectionGatewayArgs {
/**
* The connection gateway name
*/
connectionGatewayName: string;
/**
* The resource group
*/
resourceGroupName: string;
/**
* Subscription Id
*/
subscriptionId?: string;
}
/**
* The gateway definition
*/
export interface GetConnectionGatewayResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Resource ETag
*/
readonly etag?: string;
/**
* Resource id
*/
readonly id: string;
/**
* Resource location
*/
readonly location?: string;
/**
* Resource name
*/
readonly name: string;
readonly properties: types.outputs.ConnectionGatewayDefinitionResponseProperties;
/**
* Resource tags
*/
readonly tags?: {
[key: string]: string;
};
/**
* Resource type
*/
readonly type: string;
}
/**
* Gets a specific gateway under a subscription and in a specific resource group
*
* Uses Azure REST API version 2016-06-01.
*/
export declare function getConnectionGatewayOutput(args: GetConnectionGatewayOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectionGatewayResult>;
export interface GetConnectionGatewayOutputArgs {
/**
* The connection gateway name
*/
connectionGatewayName: pulumi.Input<string>;
/**
* The resource group
*/
resourceGroupName: pulumi.Input<string>;
/**
* Subscription Id
*/
subscriptionId?: pulumi.Input<string>;
}