UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

43 lines (42 loc) 1.57 kB
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>; }