Server Details Args
    data class ServerDetailsArgs(val asAdministrators: Output<ServerAdministratorsArgs>? = null, val backupBlobContainerUri: Output<String>? = null, val gatewayDetails: Output<GatewayDetailsArgs>? = null, val ipV4FirewallSettings: Output<IPv4FirewallSettingsArgs>? = null, val location: Output<String>? = null, val managedMode: Output<Int>? = null, val querypoolConnectionMode: Output<ConnectionMode>? = null, val resourceGroupName: Output<String>? = null, val serverMonitorMode: Output<Int>? = null, val serverName: Output<String>? = null, val sku: Output<ResourceSkuArgs>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<ServerDetailsArgs> 
Represents an instance of an Analysis Services resource. Azure REST API version: 2017-08-01. Prior API version in Azure Native 1.x: 2017-08-01. Other available API versions: 2017-08-01-beta.
Example Usage
Create a server.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var serverDetails = new AzureNative.AnalysisServices.ServerDetails("serverDetails", new()
    {
        AsAdministrators = new AzureNative.AnalysisServices.Inputs.ServerAdministratorsArgs
        {
            Members = new[]
            {
                "azsdktest@microsoft.com",
                "azsdktest2@microsoft.com",
            },
        },
        Location = "West US",
        ResourceGroupName = "TestRG",
        ServerName = "azsdktest",
        Sku = new AzureNative.AnalysisServices.Inputs.ResourceSkuArgs
        {
            Capacity = 1,
            Name = "S1",
            Tier = "Standard",
        },
        Tags =
        {
            { "testKey", "testValue" },
        },
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/analysisservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := analysisservices.NewServerDetails(ctx, "serverDetails", &analysisservices.ServerDetailsArgs{
			AsAdministrators: &analysisservices.ServerAdministratorsArgs{
				Members: pulumi.StringArray{
					pulumi.String("azsdktest@microsoft.com"),
					pulumi.String("azsdktest2@microsoft.com"),
				},
			},
			Location:          pulumi.String("West US"),
			ResourceGroupName: pulumi.String("TestRG"),
			ServerName:        pulumi.String("azsdktest"),
			Sku: &analysisservices.ResourceSkuArgs{
				Capacity: pulumi.Int(1),
				Name:     pulumi.String("S1"),
				Tier:     pulumi.String("Standard"),
			},
			Tags: pulumi.StringMap{
				"testKey": pulumi.String("testValue"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}Content copied to clipboard
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.analysisservices.ServerDetails;
import com.pulumi.azurenative.analysisservices.ServerDetailsArgs;
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 serverDetails = new ServerDetails("serverDetails", ServerDetailsArgs.builder()
            .asAdministrators(Map.of("members",
                "azsdktest@microsoft.com",
                "azsdktest2@microsoft.com"))
            .location("West US")
            .resourceGroupName("TestRG")
            .serverName("azsdktest")
            .sku(Map.ofEntries(
                Map.entry("capacity", 1),
                Map.entry("name", "S1"),
                Map.entry("tier", "Standard")
            ))
            .tags(Map.of("testKey", "testValue"))
            .build());
    }
}Content copied to clipboard
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:analysisservices:ServerDetails azsdktest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AnalysisServices/servers/{serverName}Content copied to clipboard
Constructors
Link copied to clipboard
                fun ServerDetailsArgs(asAdministrators: Output<ServerAdministratorsArgs>? = null, backupBlobContainerUri: Output<String>? = null, gatewayDetails: Output<GatewayDetailsArgs>? = null, ipV4FirewallSettings: Output<IPv4FirewallSettingsArgs>? = null, location: Output<String>? = null, managedMode: Output<Int>? = null, querypoolConnectionMode: Output<ConnectionMode>? = null, resourceGroupName: Output<String>? = null, serverMonitorMode: Output<Int>? = null, serverName: Output<String>? = null, sku: Output<ResourceSkuArgs>? = null, tags: Output<Map<String, String>>? = null)
Functions
Properties
Link copied to clipboard
                Link copied to clipboard
                Link copied to clipboard
                How the read-write server's participation in the query pool is controlled.
It can have the following values: 
- readOnly - indicates that the read-write server is intended not to participate in query operations
 - all - indicates that the read-write server can participate in query operations
 
Link copied to clipboard
                Link copied to clipboard