@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 9.73 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";
/**
* A Data Lake Analytics account object, containing all information associated with the named Data Lake Analytics account.
*
* Uses Azure REST API version 2019-11-01-preview. In version 2.x of the Azure Native provider, it used API version 2019-11-01-preview.
*/
export declare class Account extends pulumi.CustomResource {
/**
* Get an existing Account 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): Account;
/**
* Returns true if the given object is an instance of Account. 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 Account;
/**
* The unique identifier associated with this Data Lake Analytics account.
*/
readonly accountId: pulumi.Output<string>;
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: pulumi.Output<string>;
/**
* The list of compute policies associated with this account.
*/
readonly computePolicies: pulumi.Output<outputs.datalakeanalytics.ComputePolicyResponse[]>;
/**
* The account creation time.
*/
readonly creationTime: pulumi.Output<string>;
/**
* The commitment tier in use for the current month.
*/
readonly currentTier: pulumi.Output<string>;
/**
* The list of Data Lake Store accounts associated with this account.
*/
readonly dataLakeStoreAccounts: pulumi.Output<outputs.datalakeanalytics.DataLakeStoreAccountInformationResponse[]>;
/**
* The current state of the DebugDataAccessLevel for this account.
*/
readonly debugDataAccessLevel: pulumi.Output<string>;
/**
* The default Data Lake Store account associated with this account.
*/
readonly defaultDataLakeStoreAccount: pulumi.Output<string>;
/**
* The type of the default Data Lake Store account associated with this account.
*/
readonly defaultDataLakeStoreAccountType: pulumi.Output<string>;
/**
* The full CName endpoint for this account.
*/
readonly endpoint: pulumi.Output<string>;
/**
* The current state of allowing or disallowing IPs originating within Azure through the firewall. If the firewall is disabled, this is not enforced.
*/
readonly firewallAllowAzureIps: pulumi.Output<string | undefined>;
/**
* The list of firewall rules associated with this account.
*/
readonly firewallRules: pulumi.Output<outputs.datalakeanalytics.FirewallRuleResponse[]>;
/**
* The current state of the IP address firewall for this account.
*/
readonly firewallState: pulumi.Output<string | undefined>;
/**
* The list of hiveMetastores associated with this account.
*/
readonly hiveMetastores: pulumi.Output<outputs.datalakeanalytics.HiveMetastoreResponse[]>;
/**
* The account last modified time.
*/
readonly lastModifiedTime: pulumi.Output<string>;
/**
* The resource location.
*/
readonly location: pulumi.Output<string>;
/**
* The maximum supported active jobs under the account at the same time.
*/
readonly maxActiveJobCountPerUser: pulumi.Output<number>;
/**
* The maximum supported degree of parallelism for this account.
*/
readonly maxDegreeOfParallelism: pulumi.Output<number | undefined>;
/**
* The maximum supported degree of parallelism per job for this account.
*/
readonly maxDegreeOfParallelismPerJob: pulumi.Output<number | undefined>;
/**
* The maximum supported jobs running under the account at the same time.
*/
readonly maxJobCount: pulumi.Output<number | undefined>;
/**
* The maximum supported active jobs under the account at the same time.
*/
readonly maxJobRunningTimeInMin: pulumi.Output<number>;
/**
* The maximum supported jobs queued under the account at the same time.
*/
readonly maxQueuedJobCountPerUser: pulumi.Output<number>;
/**
* The minimum supported priority per job for this account.
*/
readonly minPriorityPerJob: pulumi.Output<number>;
/**
* The resource name.
*/
readonly name: pulumi.Output<string>;
/**
* The commitment tier for the next month.
*/
readonly newTier: pulumi.Output<string | undefined>;
/**
* The provisioning status of the Data Lake Analytics account.
*/
readonly provisioningState: pulumi.Output<string>;
/**
* The list of Data Lake Store accounts associated with this account.
*/
readonly publicDataLakeStoreAccounts: pulumi.Output<outputs.datalakeanalytics.DataLakeStoreAccountInformationResponse[] | undefined>;
/**
* The number of days that job metadata is retained.
*/
readonly queryStoreRetention: pulumi.Output<number | undefined>;
/**
* The state of the Data Lake Analytics account.
*/
readonly state: pulumi.Output<string>;
/**
* The list of Azure Blob Storage accounts associated with this account.
*/
readonly storageAccounts: pulumi.Output<outputs.datalakeanalytics.StorageAccountInformationResponse[]>;
/**
* The system defined maximum supported degree of parallelism for this account, which restricts the maximum value of parallelism the user can set for the account.
*/
readonly systemMaxDegreeOfParallelism: pulumi.Output<number>;
/**
* The system defined maximum supported jobs running under the account at the same time, which restricts the maximum number of running jobs the user can set for the account.
*/
readonly systemMaxJobCount: pulumi.Output<number>;
/**
* The resource tags.
*/
readonly tags: pulumi.Output<{
[key: string]: string;
}>;
/**
* The resource type.
*/
readonly type: pulumi.Output<string>;
/**
* The list of virtualNetwork rules associated with this account.
*/
readonly virtualNetworkRules: pulumi.Output<outputs.datalakeanalytics.VirtualNetworkRuleResponse[]>;
/**
* Create a Account 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: AccountArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a Account resource.
*/
export interface AccountArgs {
/**
* The name of the Data Lake Analytics account.
*/
accountName?: pulumi.Input<string>;
/**
* The list of compute policies associated with this account.
*/
computePolicies?: pulumi.Input<pulumi.Input<inputs.datalakeanalytics.CreateComputePolicyWithAccountParametersArgs>[]>;
/**
* The list of Data Lake Store accounts associated with this account.
*/
dataLakeStoreAccounts: pulumi.Input<pulumi.Input<inputs.datalakeanalytics.AddDataLakeStoreWithAccountParametersArgs>[]>;
/**
* The default Data Lake Store account associated with this account.
*/
defaultDataLakeStoreAccount: pulumi.Input<string>;
/**
* The current state of allowing or disallowing IPs originating within Azure through the firewall. If the firewall is disabled, this is not enforced.
*/
firewallAllowAzureIps?: pulumi.Input<enums.datalakeanalytics.FirewallAllowAzureIpsState>;
/**
* The list of firewall rules associated with this account.
*/
firewallRules?: pulumi.Input<pulumi.Input<inputs.datalakeanalytics.CreateFirewallRuleWithAccountParametersArgs>[]>;
/**
* The current state of the IP address firewall for this account.
*/
firewallState?: pulumi.Input<enums.datalakeanalytics.FirewallState>;
/**
* The resource location.
*/
location?: pulumi.Input<string>;
/**
* The maximum supported degree of parallelism for this account.
*/
maxDegreeOfParallelism?: pulumi.Input<number>;
/**
* The maximum supported degree of parallelism per job for this account.
*/
maxDegreeOfParallelismPerJob?: pulumi.Input<number>;
/**
* The maximum supported jobs running under the account at the same time.
*/
maxJobCount?: pulumi.Input<number>;
/**
* The minimum supported priority per job for this account.
*/
minPriorityPerJob?: pulumi.Input<number>;
/**
* The commitment tier for the next month.
*/
newTier?: pulumi.Input<enums.datalakeanalytics.TierType>;
/**
* The number of days that job metadata is retained.
*/
queryStoreRetention?: pulumi.Input<number>;
/**
* The name of the Azure resource group.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The list of Azure Blob Storage accounts associated with this account.
*/
storageAccounts?: pulumi.Input<pulumi.Input<inputs.datalakeanalytics.AddStorageAccountWithAccountParametersArgs>[]>;
/**
* The resource tags.
*/
tags?: pulumi.Input<{
[key: string]: pulumi.Input<string>;
}>;
}