Microsoft.AnalysisServices servers 2017-07-14

Bicep resource definition

The servers resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.AnalysisServices/servers resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.AnalysisServices/servers@2017-07-14' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  sku: {
    name: 'string'
    tier: 'string'
  }
  properties: {
    asAdministrators: {
      members: [
        'string'
      ]
    }
    backupBlobContainerUri: 'string'
    gatewayDetails: {
      gatewayResourceId: 'string'
    }
    managedMode: int
    serverMonitorMode: int
  }
}

Property values

servers

Name Description Value
name The resource name string (required)

Character limit: 3-63

Valid characters:
Lowercase letters and numbers.

Start with lowercase letter.
location Location of the Analysis Services resource. string (required)
tags Key-value pairs of additional resource provisioning properties. Dictionary of tag names and values. See Tags in templates
sku The SKU of the Analysis Services resource. ResourceSku (required)
properties Properties of the provision operation request. AnalysisServicesServerProperties

AnalysisServicesServerProperties

Name Description Value
asAdministrators A collection of AS server administrators ServerAdministrators
backupBlobContainerUri The SAS container URI to the backup container. string
gatewayDetails The gateway details configured for the AS server. GatewayDetails
managedMode The managed mode of the server (0 = not managed, 1 = managed). int
serverMonitorMode The server monitor mode for AS server int

ServerAdministrators

Name Description Value
members An array of administrator user identities. string[]

GatewayDetails

Name Description Value
gatewayResourceId Gateway resource to be associated with the server. string

ResourceSku

Name Description Value
name Name of the SKU level. string (required)
tier The name of the Azure pricing tier to which the SKU applies. 'Basic'
'Development'
'Standard'

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Create an Azure Analysis Services server using a template

Deploy to Azure
This template creates an Azure Analysis Services server.

ARM template resource definition

The servers resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.AnalysisServices/servers resource, add the following JSON to your template.

{
  "type": "Microsoft.AnalysisServices/servers",
  "apiVersion": "2017-07-14",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "sku": {
    "name": "string",
    "tier": "string"
  },
  "properties": {
    "asAdministrators": {
      "members": [ "string" ]
    },
    "backupBlobContainerUri": "string",
    "gatewayDetails": {
      "gatewayResourceId": "string"
    },
    "managedMode": "int",
    "serverMonitorMode": "int"
  }
}

Property values

servers

Name Description Value
type The resource type 'Microsoft.AnalysisServices/servers'
apiVersion The resource api version '2017-07-14'
name The resource name string (required)

Character limit: 3-63

Valid characters:
Lowercase letters and numbers.

Start with lowercase letter.
location Location of the Analysis Services resource. string (required)
tags Key-value pairs of additional resource provisioning properties. Dictionary of tag names and values. See Tags in templates
sku The SKU of the Analysis Services resource. ResourceSku (required)
properties Properties of the provision operation request. AnalysisServicesServerProperties

AnalysisServicesServerProperties

Name Description Value
asAdministrators A collection of AS server administrators ServerAdministrators
backupBlobContainerUri The SAS container URI to the backup container. string
gatewayDetails The gateway details configured for the AS server. GatewayDetails
managedMode The managed mode of the server (0 = not managed, 1 = managed). int
serverMonitorMode The server monitor mode for AS server int

ServerAdministrators

Name Description Value
members An array of administrator user identities. string[]

GatewayDetails

Name Description Value
gatewayResourceId Gateway resource to be associated with the server. string

ResourceSku

Name Description Value
name Name of the SKU level. string (required)
tier The name of the Azure pricing tier to which the SKU applies. 'Basic'
'Development'
'Standard'

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Create an Azure Analysis Services server using a template

Deploy to Azure
This template creates an Azure Analysis Services server.

Terraform (AzAPI provider) resource definition

The servers resource type can be deployed with operations that target:

  • Resource groups

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.AnalysisServices/servers resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.AnalysisServices/servers@2017-07-14"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      asAdministrators = {
        members = [
          "string"
        ]
      }
      backupBlobContainerUri = "string"
      gatewayDetails = {
        gatewayResourceId = "string"
      }
      managedMode = int
      serverMonitorMode = int
    }
    sku = {
      name = "string"
      tier = "string"
    }
  })
}

Property values

servers

Name Description Value
type The resource type "Microsoft.AnalysisServices/servers@2017-07-14"
name The resource name string (required)

Character limit: 3-63

Valid characters:
Lowercase letters and numbers.

Start with lowercase letter.
location Location of the Analysis Services resource. string (required)
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags Key-value pairs of additional resource provisioning properties. Dictionary of tag names and values.
sku The SKU of the Analysis Services resource. ResourceSku (required)
properties Properties of the provision operation request. AnalysisServicesServerProperties

AnalysisServicesServerProperties

Name Description Value
asAdministrators A collection of AS server administrators ServerAdministrators
backupBlobContainerUri The SAS container URI to the backup container. string
gatewayDetails The gateway details configured for the AS server. GatewayDetails
managedMode The managed mode of the server (0 = not managed, 1 = managed). int
serverMonitorMode The server monitor mode for AS server int

ServerAdministrators

Name Description Value
members An array of administrator user identities. string[]

GatewayDetails

Name Description Value
gatewayResourceId Gateway resource to be associated with the server. string

ResourceSku

Name Description Value
name Name of the SKU level. string (required)
tier The name of the Azure pricing tier to which the SKU applies. "Basic"
"Development"
"Standard"