We recommend using Azure Native.
azure.analysisservices.Server
Explore with Pulumi AI
Manages an Analysis Services Server.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "analysis-services-server-test",
location: "West Europe",
});
const server = new azure.analysisservices.Server("server", {
name: "analysisservicesserver",
location: example.location,
resourceGroupName: example.name,
sku: "S0",
adminUsers: ["myuser@domain.tld"],
powerBiServiceEnabled: true,
ipv4FirewallRules: [{
name: "myRule1",
rangeStart: "210.117.252.0",
rangeEnd: "210.117.252.255",
}],
tags: {
abc: "123",
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="analysis-services-server-test",
location="West Europe")
server = azure.analysisservices.Server("server",
name="analysisservicesserver",
location=example.location,
resource_group_name=example.name,
sku="S0",
admin_users=["myuser@domain.tld"],
power_bi_service_enabled=True,
ipv4_firewall_rules=[{
"name": "myRule1",
"range_start": "210.117.252.0",
"range_end": "210.117.252.255",
}],
tags={
"abc": "123",
})
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/analysisservices"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("analysis-services-server-test"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = analysisservices.NewServer(ctx, "server", &analysisservices.ServerArgs{
Name: pulumi.String("analysisservicesserver"),
Location: example.Location,
ResourceGroupName: example.Name,
Sku: pulumi.String("S0"),
AdminUsers: pulumi.StringArray{
pulumi.String("myuser@domain.tld"),
},
PowerBiServiceEnabled: pulumi.Bool(true),
Ipv4FirewallRules: analysisservices.ServerIpv4FirewallRuleArray{
&analysisservices.ServerIpv4FirewallRuleArgs{
Name: pulumi.String("myRule1"),
RangeStart: pulumi.String("210.117.252.0"),
RangeEnd: pulumi.String("210.117.252.255"),
},
},
Tags: pulumi.StringMap{
"abc": pulumi.String("123"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "analysis-services-server-test",
Location = "West Europe",
});
var server = new Azure.AnalysisServices.Server("server", new()
{
Name = "analysisservicesserver",
Location = example.Location,
ResourceGroupName = example.Name,
Sku = "S0",
AdminUsers = new[]
{
"myuser@domain.tld",
},
PowerBiServiceEnabled = true,
Ipv4FirewallRules = new[]
{
new Azure.AnalysisServices.Inputs.ServerIpv4FirewallRuleArgs
{
Name = "myRule1",
RangeStart = "210.117.252.0",
RangeEnd = "210.117.252.255",
},
},
Tags =
{
{ "abc", "123" },
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.analysisservices.Server;
import com.pulumi.azure.analysisservices.ServerArgs;
import com.pulumi.azure.analysisservices.inputs.ServerIpv4FirewallRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("analysis-services-server-test")
.location("West Europe")
.build());
var server = new Server("server", ServerArgs.builder()
.name("analysisservicesserver")
.location(example.location())
.resourceGroupName(example.name())
.sku("S0")
.adminUsers("myuser@domain.tld")
.powerBiServiceEnabled(true)
.ipv4FirewallRules(ServerIpv4FirewallRuleArgs.builder()
.name("myRule1")
.rangeStart("210.117.252.0")
.rangeEnd("210.117.252.255")
.build())
.tags(Map.of("abc", 123))
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: analysis-services-server-test
location: West Europe
server:
type: azure:analysisservices:Server
properties:
name: analysisservicesserver
location: ${example.location}
resourceGroupName: ${example.name}
sku: S0
adminUsers:
- myuser@domain.tld
powerBiServiceEnabled: true
ipv4FirewallRules:
- name: myRule1
rangeStart: 210.117.252.0
rangeEnd: 210.117.252.255
tags:
abc: 123
NOTE: The server resource will automatically be started and stopped during an update if it is in
paused
state.
Create Server Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Server(name: string, args: ServerArgs, opts?: CustomResourceOptions);
@overload
def Server(resource_name: str,
args: ServerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Server(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
sku: Optional[str] = None,
admin_users: Optional[Sequence[str]] = None,
backup_blob_container_uri: Optional[str] = None,
ipv4_firewall_rules: Optional[Sequence[ServerIpv4FirewallRuleArgs]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
power_bi_service_enabled: Optional[bool] = None,
querypool_connection_mode: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewServer(ctx *Context, name string, args ServerArgs, opts ...ResourceOption) (*Server, error)
public Server(string name, ServerArgs args, CustomResourceOptions? opts = null)
public Server(String name, ServerArgs args)
public Server(String name, ServerArgs args, CustomResourceOptions options)
type: azure:analysisservices:Server
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var serverResource = new Azure.AnalysisServices.Server("serverResource", new()
{
ResourceGroupName = "string",
Sku = "string",
AdminUsers = new[]
{
"string",
},
BackupBlobContainerUri = "string",
Ipv4FirewallRules = new[]
{
new Azure.AnalysisServices.Inputs.ServerIpv4FirewallRuleArgs
{
Name = "string",
RangeEnd = "string",
RangeStart = "string",
},
},
Location = "string",
Name = "string",
PowerBiServiceEnabled = false,
QuerypoolConnectionMode = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := analysisservices.NewServer(ctx, "serverResource", &analysisservices.ServerArgs{
ResourceGroupName: pulumi.String("string"),
Sku: pulumi.String("string"),
AdminUsers: pulumi.StringArray{
pulumi.String("string"),
},
BackupBlobContainerUri: pulumi.String("string"),
Ipv4FirewallRules: analysisservices.ServerIpv4FirewallRuleArray{
&analysisservices.ServerIpv4FirewallRuleArgs{
Name: pulumi.String("string"),
RangeEnd: pulumi.String("string"),
RangeStart: pulumi.String("string"),
},
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
PowerBiServiceEnabled: pulumi.Bool(false),
QuerypoolConnectionMode: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var serverResource = new Server("serverResource", ServerArgs.builder()
.resourceGroupName("string")
.sku("string")
.adminUsers("string")
.backupBlobContainerUri("string")
.ipv4FirewallRules(ServerIpv4FirewallRuleArgs.builder()
.name("string")
.rangeEnd("string")
.rangeStart("string")
.build())
.location("string")
.name("string")
.powerBiServiceEnabled(false)
.querypoolConnectionMode("string")
.tags(Map.of("string", "string"))
.build());
server_resource = azure.analysisservices.Server("serverResource",
resource_group_name="string",
sku="string",
admin_users=["string"],
backup_blob_container_uri="string",
ipv4_firewall_rules=[{
"name": "string",
"rangeEnd": "string",
"rangeStart": "string",
}],
location="string",
name="string",
power_bi_service_enabled=False,
querypool_connection_mode="string",
tags={
"string": "string",
})
const serverResource = new azure.analysisservices.Server("serverResource", {
resourceGroupName: "string",
sku: "string",
adminUsers: ["string"],
backupBlobContainerUri: "string",
ipv4FirewallRules: [{
name: "string",
rangeEnd: "string",
rangeStart: "string",
}],
location: "string",
name: "string",
powerBiServiceEnabled: false,
querypoolConnectionMode: "string",
tags: {
string: "string",
},
});
type: azure:analysisservices:Server
properties:
adminUsers:
- string
backupBlobContainerUri: string
ipv4FirewallRules:
- name: string
rangeEnd: string
rangeStart: string
location: string
name: string
powerBiServiceEnabled: false
querypoolConnectionMode: string
resourceGroupName: string
sku: string
tags:
string: string
Server Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Server resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- Sku string
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - Admin
Users List<string> - List of email addresses of admin users.
- Backup
Blob stringContainer Uri - URI and SAS token for a blob container to store backups.
- Ipv4Firewall
Rules List<ServerIpv4Firewall Rule> - One or more
ipv4_firewall_rule
block(s) as defined below. - Location string
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- Name string
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- Power
Bi boolService Enabled - Indicates if the Power BI service is allowed to access or not.
- Querypool
Connection stringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Resource
Group stringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- Sku string
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - Admin
Users []string - List of email addresses of admin users.
- Backup
Blob stringContainer Uri - URI and SAS token for a blob container to store backups.
- Ipv4Firewall
Rules []ServerIpv4Firewall Rule Args - One or more
ipv4_firewall_rule
block(s) as defined below. - Location string
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- Name string
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- Power
Bi boolService Enabled - Indicates if the Power BI service is allowed to access or not.
- Querypool
Connection stringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - map[string]string
- A mapping of tags to assign to the resource.
- resource
Group StringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- sku String
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - admin
Users List<String> - List of email addresses of admin users.
- backup
Blob StringContainer Uri - URI and SAS token for a blob container to store backups.
- ipv4Firewall
Rules List<ServerIpv4Firewall Rule> - One or more
ipv4_firewall_rule
block(s) as defined below. - location String
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name String
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power
Bi BooleanService Enabled - Indicates if the Power BI service is allowed to access or not.
- querypool
Connection StringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - Map<String,String>
- A mapping of tags to assign to the resource.
- resource
Group stringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- sku string
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - admin
Users string[] - List of email addresses of admin users.
- backup
Blob stringContainer Uri - URI and SAS token for a blob container to store backups.
- ipv4Firewall
Rules ServerIpv4Firewall Rule[] - One or more
ipv4_firewall_rule
block(s) as defined below. - location string
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name string
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power
Bi booleanService Enabled - Indicates if the Power BI service is allowed to access or not.
- querypool
Connection stringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- resource_
group_ strname - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- sku str
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - admin_
users Sequence[str] - List of email addresses of admin users.
- backup_
blob_ strcontainer_ uri - URI and SAS token for a blob container to store backups.
- ipv4_
firewall_ Sequence[Serverrules Ipv4Firewall Rule Args] - One or more
ipv4_firewall_rule
block(s) as defined below. - location str
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name str
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power_
bi_ boolservice_ enabled - Indicates if the Power BI service is allowed to access or not.
- querypool_
connection_ strmode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- resource
Group StringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- sku String
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - admin
Users List<String> - List of email addresses of admin users.
- backup
Blob StringContainer Uri - URI and SAS token for a blob container to store backups.
- ipv4Firewall
Rules List<Property Map> - One or more
ipv4_firewall_rule
block(s) as defined below. - location String
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name String
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power
Bi BooleanService Enabled - Indicates if the Power BI service is allowed to access or not.
- querypool
Connection StringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the Server resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Server
Full stringName - The full name of the Analysis Services Server.
- Id string
- The provider-assigned unique ID for this managed resource.
- Server
Full stringName - The full name of the Analysis Services Server.
- id String
- The provider-assigned unique ID for this managed resource.
- server
Full StringName - The full name of the Analysis Services Server.
- id string
- The provider-assigned unique ID for this managed resource.
- server
Full stringName - The full name of the Analysis Services Server.
- id str
- The provider-assigned unique ID for this managed resource.
- server_
full_ strname - The full name of the Analysis Services Server.
- id String
- The provider-assigned unique ID for this managed resource.
- server
Full StringName - The full name of the Analysis Services Server.
Look up Existing Server Resource
Get an existing Server resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ServerState, opts?: CustomResourceOptions): Server
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_users: Optional[Sequence[str]] = None,
backup_blob_container_uri: Optional[str] = None,
ipv4_firewall_rules: Optional[Sequence[ServerIpv4FirewallRuleArgs]] = None,
location: Optional[str] = None,
name: Optional[str] = None,
power_bi_service_enabled: Optional[bool] = None,
querypool_connection_mode: Optional[str] = None,
resource_group_name: Optional[str] = None,
server_full_name: Optional[str] = None,
sku: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> Server
func GetServer(ctx *Context, name string, id IDInput, state *ServerState, opts ...ResourceOption) (*Server, error)
public static Server Get(string name, Input<string> id, ServerState? state, CustomResourceOptions? opts = null)
public static Server get(String name, Output<String> id, ServerState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Admin
Users List<string> - List of email addresses of admin users.
- Backup
Blob stringContainer Uri - URI and SAS token for a blob container to store backups.
- Ipv4Firewall
Rules List<ServerIpv4Firewall Rule> - One or more
ipv4_firewall_rule
block(s) as defined below. - Location string
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- Name string
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- Power
Bi boolService Enabled - Indicates if the Power BI service is allowed to access or not.
- Querypool
Connection stringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - Resource
Group stringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- Server
Full stringName - The full name of the Analysis Services Server.
- Sku string
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Admin
Users []string - List of email addresses of admin users.
- Backup
Blob stringContainer Uri - URI and SAS token for a blob container to store backups.
- Ipv4Firewall
Rules []ServerIpv4Firewall Rule Args - One or more
ipv4_firewall_rule
block(s) as defined below. - Location string
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- Name string
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- Power
Bi boolService Enabled - Indicates if the Power BI service is allowed to access or not.
- Querypool
Connection stringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - Resource
Group stringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- Server
Full stringName - The full name of the Analysis Services Server.
- Sku string
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - map[string]string
- A mapping of tags to assign to the resource.
- admin
Users List<String> - List of email addresses of admin users.
- backup
Blob StringContainer Uri - URI and SAS token for a blob container to store backups.
- ipv4Firewall
Rules List<ServerIpv4Firewall Rule> - One or more
ipv4_firewall_rule
block(s) as defined below. - location String
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name String
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power
Bi BooleanService Enabled - Indicates if the Power BI service is allowed to access or not.
- querypool
Connection StringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - resource
Group StringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- server
Full StringName - The full name of the Analysis Services Server.
- sku String
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - Map<String,String>
- A mapping of tags to assign to the resource.
- admin
Users string[] - List of email addresses of admin users.
- backup
Blob stringContainer Uri - URI and SAS token for a blob container to store backups.
- ipv4Firewall
Rules ServerIpv4Firewall Rule[] - One or more
ipv4_firewall_rule
block(s) as defined below. - location string
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name string
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power
Bi booleanService Enabled - Indicates if the Power BI service is allowed to access or not.
- querypool
Connection stringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - resource
Group stringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- server
Full stringName - The full name of the Analysis Services Server.
- sku string
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- admin_
users Sequence[str] - List of email addresses of admin users.
- backup_
blob_ strcontainer_ uri - URI and SAS token for a blob container to store backups.
- ipv4_
firewall_ Sequence[Serverrules Ipv4Firewall Rule Args] - One or more
ipv4_firewall_rule
block(s) as defined below. - location str
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name str
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power_
bi_ boolservice_ enabled - Indicates if the Power BI service is allowed to access or not.
- querypool_
connection_ strmode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - resource_
group_ strname - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- server_
full_ strname - The full name of the Analysis Services Server.
- sku str
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- admin
Users List<String> - List of email addresses of admin users.
- backup
Blob StringContainer Uri - URI and SAS token for a blob container to store backups.
- ipv4Firewall
Rules List<Property Map> - One or more
ipv4_firewall_rule
block(s) as defined below. - location String
- The Azure location where the Analysis Services Server exists. Changing this forces a new resource to be created.
- name String
- The name of the Analysis Services Server. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
- power
Bi BooleanService Enabled - Indicates if the Power BI service is allowed to access or not.
- querypool
Connection StringMode - Controls how the read-write server is used in the query pool. If this value is set to
All
then read-write servers are also used for queries. Otherwise withReadOnly
these servers do not participate in query operations. Defaults toAll
. - resource
Group StringName - The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
- server
Full StringName - The full name of the Analysis Services Server.
- sku String
- SKU for the Analysis Services Server. Possible values are:
D1
,B1
,B2
,S0
,S1
,S2
,S4
,S8
,S9
,S8v2
andS9v2
. - Map<String>
- A mapping of tags to assign to the resource.
Supporting Types
ServerIpv4FirewallRule, ServerIpv4FirewallRuleArgs
- Name string
- Specifies the name of the firewall rule.
- Range
End string - End of the firewall rule range as IPv4 address.
- Range
Start string - Start of the firewall rule range as IPv4 address.
- Name string
- Specifies the name of the firewall rule.
- Range
End string - End of the firewall rule range as IPv4 address.
- Range
Start string - Start of the firewall rule range as IPv4 address.
- name String
- Specifies the name of the firewall rule.
- range
End String - End of the firewall rule range as IPv4 address.
- range
Start String - Start of the firewall rule range as IPv4 address.
- name string
- Specifies the name of the firewall rule.
- range
End string - End of the firewall rule range as IPv4 address.
- range
Start string - Start of the firewall rule range as IPv4 address.
- name str
- Specifies the name of the firewall rule.
- range_
end str - End of the firewall rule range as IPv4 address.
- range_
start str - Start of the firewall rule range as IPv4 address.
- name String
- Specifies the name of the firewall rule.
- range
End String - End of the firewall rule range as IPv4 address.
- range
Start String - Start of the firewall rule range as IPv4 address.
Import
Analysis Services Server can be imported using the resource id
, e.g.
$ pulumi import azure:analysisservices/server:Server server /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resourcegroup1/providers/Microsoft.AnalysisServices/servers/server1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.