1. Packages
  2. Azure Classic
  3. API Docs
  4. analysisservices
  5. Server

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.analysisservices.Server

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    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"],
        enablePowerBiService: 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"],
        enable_power_bi_service=True,
        ipv4_firewall_rules=[azure.analysisservices.ServerIpv4FirewallRuleArgs(
            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/v5/go/azure/analysisservices"
    	"github.com/pulumi/pulumi-azure/sdk/v5/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"),
    			},
    			EnablePowerBiService: 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",
            },
            EnablePowerBiService = 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")
                .enablePowerBiService(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
          enablePowerBiService: 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,
               enable_power_bi_service: Optional[bool] = None,
               ipv4_firewall_rules: Optional[Sequence[ServerIpv4FirewallRuleArgs]] = None,
               location: Optional[str] = None,
               name: Optional[str] = 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.

    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",
        EnablePowerBiService = false,
        Ipv4FirewallRules = new[]
        {
            new Azure.AnalysisServices.Inputs.ServerIpv4FirewallRuleArgs
            {
                Name = "string",
                RangeEnd = "string",
                RangeStart = "string",
            },
        },
        Location = "string",
        Name = "string",
        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"),
    	EnablePowerBiService:   pulumi.Bool(false),
    	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"),
    	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")
        .enablePowerBiService(false)
        .ipv4FirewallRules(ServerIpv4FirewallRuleArgs.builder()
            .name("string")
            .rangeEnd("string")
            .rangeStart("string")
            .build())
        .location("string")
        .name("string")
        .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",
        enable_power_bi_service=False,
        ipv4_firewall_rules=[azure.analysisservices.ServerIpv4FirewallRuleArgs(
            name="string",
            range_end="string",
            range_start="string",
        )],
        location="string",
        name="string",
        querypool_connection_mode="string",
        tags={
            "string": "string",
        })
    
    const serverResource = new azure.analysisservices.Server("serverResource", {
        resourceGroupName: "string",
        sku: "string",
        adminUsers: ["string"],
        backupBlobContainerUri: "string",
        enablePowerBiService: false,
        ipv4FirewallRules: [{
            name: "string",
            rangeEnd: "string",
            rangeStart: "string",
        }],
        location: "string",
        name: "string",
        querypoolConnectionMode: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure:analysisservices:Server
    properties:
        adminUsers:
            - string
        backupBlobContainerUri: string
        enablePowerBiService: false
        ipv4FirewallRules:
            - name: string
              rangeEnd: string
              rangeStart: string
        location: string
        name: string
        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:

    ResourceGroupName string
    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 and S9v2.
    AdminUsers List<string>
    List of email addresses of admin users.
    BackupBlobContainerUri string
    URI and SAS token for a blob container to store backups.
    EnablePowerBiService bool
    Indicates if the Power BI service is allowed to access or not.
    Ipv4FirewallRules List<ServerIpv4FirewallRule>
    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
    Specifies the name of the firewall rule.
    QuerypoolConnectionMode string
    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 with ReadOnly these servers do not participate in query operations.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    ResourceGroupName string
    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 and S9v2.
    AdminUsers []string
    List of email addresses of admin users.
    BackupBlobContainerUri string
    URI and SAS token for a blob container to store backups.
    EnablePowerBiService bool
    Indicates if the Power BI service is allowed to access or not.
    Ipv4FirewallRules []ServerIpv4FirewallRuleArgs
    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
    Specifies the name of the firewall rule.
    QuerypoolConnectionMode string
    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 with ReadOnly these servers do not participate in query operations.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    resourceGroupName String
    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 and S9v2.
    adminUsers List<String>
    List of email addresses of admin users.
    backupBlobContainerUri String
    URI and SAS token for a blob container to store backups.
    enablePowerBiService Boolean
    Indicates if the Power BI service is allowed to access or not.
    ipv4FirewallRules List<ServerIpv4FirewallRule>
    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
    Specifies the name of the firewall rule.
    querypoolConnectionMode String
    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 with ReadOnly these servers do not participate in query operations.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    resourceGroupName string
    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 and S9v2.
    adminUsers string[]
    List of email addresses of admin users.
    backupBlobContainerUri string
    URI and SAS token for a blob container to store backups.
    enablePowerBiService boolean
    Indicates if the Power BI service is allowed to access or not.
    ipv4FirewallRules ServerIpv4FirewallRule[]
    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
    Specifies the name of the firewall rule.
    querypoolConnectionMode string
    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 with ReadOnly these servers do not participate in query operations.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    resource_group_name str
    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 and S9v2.
    admin_users Sequence[str]
    List of email addresses of admin users.
    backup_blob_container_uri str
    URI and SAS token for a blob container to store backups.
    enable_power_bi_service bool
    Indicates if the Power BI service is allowed to access or not.
    ipv4_firewall_rules Sequence[ServerIpv4FirewallRuleArgs]
    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
    Specifies the name of the firewall rule.
    querypool_connection_mode str
    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 with ReadOnly these servers do not participate in query operations.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    resourceGroupName String
    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 and S9v2.
    adminUsers List<String>
    List of email addresses of admin users.
    backupBlobContainerUri String
    URI and SAS token for a blob container to store backups.
    enablePowerBiService Boolean
    Indicates if the Power BI service is allowed to access or not.
    ipv4FirewallRules 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
    Specifies the name of the firewall rule.
    querypoolConnectionMode String
    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 with ReadOnly these servers do not participate in query operations.
    tags 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.
    ServerFullName string
    The full name of the Analysis Services Server.
    Id string
    The provider-assigned unique ID for this managed resource.
    ServerFullName string
    The full name of the Analysis Services Server.
    id String
    The provider-assigned unique ID for this managed resource.
    serverFullName String
    The full name of the Analysis Services Server.
    id string
    The provider-assigned unique ID for this managed resource.
    serverFullName string
    The full name of the Analysis Services Server.
    id str
    The provider-assigned unique ID for this managed resource.
    server_full_name str
    The full name of the Analysis Services Server.
    id String
    The provider-assigned unique ID for this managed resource.
    serverFullName String
    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,
            enable_power_bi_service: Optional[bool] = None,
            ipv4_firewall_rules: Optional[Sequence[ServerIpv4FirewallRuleArgs]] = None,
            location: Optional[str] = None,
            name: Optional[str] = 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.
    The following state arguments are supported:
    AdminUsers List<string>
    List of email addresses of admin users.
    BackupBlobContainerUri string
    URI and SAS token for a blob container to store backups.
    EnablePowerBiService bool
    Indicates if the Power BI service is allowed to access or not.
    Ipv4FirewallRules List<ServerIpv4FirewallRule>
    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
    Specifies the name of the firewall rule.
    QuerypoolConnectionMode string
    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 with ReadOnly these servers do not participate in query operations.
    ResourceGroupName string
    The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
    ServerFullName string
    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 and S9v2.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    AdminUsers []string
    List of email addresses of admin users.
    BackupBlobContainerUri string
    URI and SAS token for a blob container to store backups.
    EnablePowerBiService bool
    Indicates if the Power BI service is allowed to access or not.
    Ipv4FirewallRules []ServerIpv4FirewallRuleArgs
    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
    Specifies the name of the firewall rule.
    QuerypoolConnectionMode string
    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 with ReadOnly these servers do not participate in query operations.
    ResourceGroupName string
    The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
    ServerFullName string
    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 and S9v2.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    adminUsers List<String>
    List of email addresses of admin users.
    backupBlobContainerUri String
    URI and SAS token for a blob container to store backups.
    enablePowerBiService Boolean
    Indicates if the Power BI service is allowed to access or not.
    ipv4FirewallRules List<ServerIpv4FirewallRule>
    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
    Specifies the name of the firewall rule.
    querypoolConnectionMode String
    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 with ReadOnly these servers do not participate in query operations.
    resourceGroupName String
    The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
    serverFullName String
    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 and S9v2.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    adminUsers string[]
    List of email addresses of admin users.
    backupBlobContainerUri string
    URI and SAS token for a blob container to store backups.
    enablePowerBiService boolean
    Indicates if the Power BI service is allowed to access or not.
    ipv4FirewallRules ServerIpv4FirewallRule[]
    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
    Specifies the name of the firewall rule.
    querypoolConnectionMode string
    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 with ReadOnly these servers do not participate in query operations.
    resourceGroupName string
    The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
    serverFullName string
    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 and S9v2.
    tags {[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_container_uri str
    URI and SAS token for a blob container to store backups.
    enable_power_bi_service bool
    Indicates if the Power BI service is allowed to access or not.
    ipv4_firewall_rules Sequence[ServerIpv4FirewallRuleArgs]
    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
    Specifies the name of the firewall rule.
    querypool_connection_mode str
    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 with ReadOnly these servers do not participate in query operations.
    resource_group_name str
    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_name str
    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 and S9v2.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    adminUsers List<String>
    List of email addresses of admin users.
    backupBlobContainerUri String
    URI and SAS token for a blob container to store backups.
    enablePowerBiService Boolean
    Indicates if the Power BI service is allowed to access or not.
    ipv4FirewallRules 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
    Specifies the name of the firewall rule.
    querypoolConnectionMode String
    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 with ReadOnly these servers do not participate in query operations.
    resourceGroupName String
    The name of the Resource Group in which the Analysis Services Server should be exist. Changing this forces a new resource to be created.
    serverFullName String
    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 and S9v2.
    tags Map<String>
    A mapping of tags to assign to the resource.

    Supporting Types

    ServerIpv4FirewallRule, ServerIpv4FirewallRuleArgs

    Name string
    Specifies the name of the firewall rule.
    RangeEnd string
    End of the firewall rule range as IPv4 address.
    RangeStart string
    Start of the firewall rule range as IPv4 address.
    Name string
    Specifies the name of the firewall rule.
    RangeEnd string
    End of the firewall rule range as IPv4 address.
    RangeStart string
    Start of the firewall rule range as IPv4 address.
    name String
    Specifies the name of the firewall rule.
    rangeEnd String
    End of the firewall rule range as IPv4 address.
    rangeStart String
    Start of the firewall rule range as IPv4 address.
    name string
    Specifies the name of the firewall rule.
    rangeEnd string
    End of the firewall rule range as IPv4 address.
    rangeStart 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.
    rangeEnd String
    End of the firewall rule range as IPv4 address.
    rangeStart 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.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi