Skip to main content

servers_gateway_status

Creates, updates, deletes, gets or lists a servers_gateway_status resource.

Overview

Nameservers_gateway_status
TypeResource
Idazure.analysis_services.servers_gateway_status

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
statusinteger (int32)Live message of list gateway. Status: 0 - Live

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, serverName, subscriptionIdReturn the gateway status of the specified Analysis Services server instance.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
resourceGroupNamestringThe 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.
serverNamestringThe name of the Analysis Services server.
subscriptionIdstringA unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Return the gateway status of the specified Analysis Services server instance.

SELECT
status
FROM azure.analysis_services.servers_gateway_status
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND serverName = '{{ serverName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;