@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.57 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Return the gateway status of the specified Analysis Services server instance.
*
* Uses Azure REST API version 2017-08-01.
*/
export declare function listServerGatewayStatus(args: ListServerGatewayStatusArgs, opts?: pulumi.InvokeOptions): Promise<ListServerGatewayStatusResult>;
export interface ListServerGatewayStatusArgs {
/**
* The name of the Azure Resource group of which a given Analysis Services server is part. This name must be at least 1 character in length, and no more than 90.
*/
resourceGroupName: string;
/**
* The name of the Analysis Services server.
*/
serverName: string;
}
/**
* Status of gateway is live.
*/
export interface ListServerGatewayStatusResult {
/**
* Live message of list gateway. Status: 0 - Live
*/
readonly status?: number;
}
/**
* Return the gateway status of the specified Analysis Services server instance.
*
* Uses Azure REST API version 2017-08-01.
*/
export declare function listServerGatewayStatusOutput(args: ListServerGatewayStatusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListServerGatewayStatusResult>;
export interface ListServerGatewayStatusOutputArgs {
/**
* The name of the Azure Resource group of which a given Analysis Services server is part. This name must be at least 1 character in length, and no more than 90.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the Analysis Services server.
*/
serverName: pulumi.Input<string>;
}