@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 6.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
import * as enums from "../types/enums";
/**
* Represents an instance of an Analysis Services resource.
*
* Uses Azure REST API version 2017-08-01. In version 2.x of the Azure Native provider, it used API version 2017-08-01.
*/
export declare class ServerDetails extends pulumi.CustomResource {
/**
* Get an existing ServerDetails resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): ServerDetails;
/**
* Returns true if the given object is an instance of ServerDetails. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is ServerDetails;
/**
* A collection of AS server administrators
*/
readonly asAdministrators: pulumi.Output<outputs.analysisservices.ServerAdministratorsResponse | undefined>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The SAS container URI to the backup container.
*/
readonly backupBlobContainerUri: pulumi.Output<string | undefined>;
/**
* The gateway details configured for the AS server.
*/
readonly gatewayDetails: pulumi.Output<outputs.analysisservices.GatewayDetailsResponse | undefined>;
/**
* The firewall settings for the AS server.
*/
readonly ipV4FirewallSettings: pulumi.Output<outputs.analysisservices.IPv4FirewallSettingsResponse | undefined>;
/**
* Location of the Analysis Services resource.
*/
readonly location: pulumi.Output<string>;
/**
* The managed mode of the server (0 = not managed, 1 = managed).
*/
readonly managedMode: pulumi.Output<number | undefined>;
/**
* The name of the Analysis Services resource.
*/
readonly name: pulumi.Output<string>;
/**
* The current deployment state of Analysis Services resource. The provisioningState is to indicate states for resource provisioning.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* How the read-write server's participation in the query pool is controlled.<br/>It can have the following values: <ul><li>readOnly - indicates that the read-write server is intended not to participate in query operations</li><li>all - indicates that the read-write server can participate in query operations</li></ul>Specifying readOnly when capacity is 1 results in error.
*/
readonly querypoolConnectionMode: pulumi.Output<string | undefined>;
/**
* The full name of the Analysis Services resource.
*/
readonly serverFullName: pulumi.Output<string>;
/**
* The server monitor mode for AS server
*/
readonly serverMonitorMode: pulumi.Output<number | undefined>;
/**
* The SKU of the Analysis Services resource.
*/
readonly sku: pulumi.Output<outputs.analysisservices.ResourceSkuResponse>;
/**
* The current state of Analysis Services resource. The state is to indicate more states outside of resource provisioning.
*/
readonly state: pulumi.Output<string>;
/**
* Key-value pairs of additional resource provisioning properties.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
} | undefined>;
/**
* The type of the Analysis Services resource.
*/
readonly type: pulumi.Output<string>;
/**
* Create a ServerDetails resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: ServerDetailsArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a ServerDetails resource.
*/
export interface ServerDetailsArgs {
/**
* A collection of AS server administrators
*/
asAdministrators?: pulumi.Input<inputs.analysisservices.ServerAdministratorsArgs>;
/**
* The SAS container URI to the backup container.
*/
backupBlobContainerUri?: pulumi.Input<string>;
/**
* The gateway details configured for the AS server.
*/
gatewayDetails?: pulumi.Input<inputs.analysisservices.GatewayDetailsArgs>;
/**
* The firewall settings for the AS server.
*/
ipV4FirewallSettings?: pulumi.Input<inputs.analysisservices.IPv4FirewallSettingsArgs>;
/**
* Location of the Analysis Services resource.
*/
location?: pulumi.Input<string>;
/**
* The managed mode of the server (0 = not managed, 1 = managed).
*/
managedMode?: pulumi.Input<number>;
/**
* How the read-write server's participation in the query pool is controlled.<br/>It can have the following values: <ul><li>readOnly - indicates that the read-write server is intended not to participate in query operations</li><li>all - indicates that the read-write server can participate in query operations</li></ul>Specifying readOnly when capacity is 1 results in error.
*/
querypoolConnectionMode?: pulumi.Input<enums.analysisservices.ConnectionMode>;
/**
* The 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.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The server monitor mode for AS server
*/
serverMonitorMode?: pulumi.Input<number>;
/**
* The name of the Analysis Services server. It must be a minimum of 3 characters, and a maximum of 63.
*/
serverName?: pulumi.Input<string>;
/**
* The SKU of the Analysis Services resource.
*/
sku: pulumi.Input<inputs.analysisservices.ResourceSkuArgs>;
/**
* Key-value pairs of additional resource provisioning properties.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}