UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

199 lines (198 loc) • 7.46 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Data Lake Store account information. * * Uses Azure REST API version 2016-11-01. In version 2.x of the Azure Native provider, it used API version 2016-11-01. */ 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 Store account. */ readonly accountId: pulumi.Output<string>; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The account creation time. */ readonly creationTime: pulumi.Output<string>; /** * The commitment tier in use for the current month. */ readonly currentTier: pulumi.Output<string>; /** * The default owner group for all new folders and files created in the Data Lake Store account. */ readonly defaultGroup: pulumi.Output<string>; /** * The Key Vault encryption configuration. */ readonly encryptionConfig: pulumi.Output<outputs.datalakestore.EncryptionConfigResponse>; /** * The current state of encryption provisioning for this Data Lake Store account. */ readonly encryptionProvisioningState: pulumi.Output<string>; /** * The current state of encryption for this Data Lake Store account. */ readonly encryptionState: 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>; /** * The list of firewall rules associated with this Data Lake Store account. */ readonly firewallRules: pulumi.Output<outputs.datalakestore.FirewallRuleResponse[]>; /** * The current state of the IP address firewall for this Data Lake Store account. */ readonly firewallState: pulumi.Output<string>; /** * The Key Vault encryption identity, if any. */ readonly identity: pulumi.Output<outputs.datalakestore.EncryptionIdentityResponse>; /** * The account last modified time. */ readonly lastModifiedTime: pulumi.Output<string>; /** * The resource location. */ readonly location: pulumi.Output<string>; /** * The resource name. */ readonly name: pulumi.Output<string>; /** * The commitment tier to use for next month. */ readonly newTier: pulumi.Output<string>; /** * The provisioning status of the Data Lake Store account. */ readonly provisioningState: pulumi.Output<string>; /** * The state of the Data Lake Store account. */ readonly state: pulumi.Output<string>; /** * The resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; }>; /** * The current state of the trusted identity provider feature for this Data Lake Store account. */ readonly trustedIdProviderState: pulumi.Output<string>; /** * The list of trusted identity providers associated with this Data Lake Store account. */ readonly trustedIdProviders: pulumi.Output<outputs.datalakestore.TrustedIdProviderResponse[]>; /** * The resource type. */ readonly type: pulumi.Output<string>; /** * The list of virtual network rules associated with this Data Lake Store account. */ readonly virtualNetworkRules: pulumi.Output<outputs.datalakestore.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 Store account. */ accountName?: pulumi.Input<string>; /** * The default owner group for all new folders and files created in the Data Lake Store account. */ defaultGroup?: pulumi.Input<string>; /** * The Key Vault encryption configuration. */ encryptionConfig?: pulumi.Input<inputs.datalakestore.EncryptionConfigArgs>; /** * The current state of encryption for this Data Lake Store account. */ encryptionState?: pulumi.Input<enums.datalakestore.EncryptionState>; /** * 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.datalakestore.FirewallAllowAzureIpsState>; /** * The list of firewall rules associated with this Data Lake Store account. */ firewallRules?: pulumi.Input<pulumi.Input<inputs.datalakestore.CreateFirewallRuleWithAccountParametersArgs>[]>; /** * The current state of the IP address firewall for this Data Lake Store account. */ firewallState?: pulumi.Input<enums.datalakestore.FirewallState>; /** * The Key Vault encryption identity, if any. */ identity?: pulumi.Input<inputs.datalakestore.EncryptionIdentityArgs>; /** * The resource location. */ location?: pulumi.Input<string>; /** * The commitment tier to use for next month. */ newTier?: pulumi.Input<enums.datalakestore.TierType>; /** * The name of the Azure resource group. */ resourceGroupName: pulumi.Input<string>; /** * The resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * The current state of the trusted identity provider feature for this Data Lake Store account. */ trustedIdProviderState?: pulumi.Input<enums.datalakestore.TrustedIdProviderState>; /** * The list of trusted identity providers associated with this Data Lake Store account. */ trustedIdProviders?: pulumi.Input<pulumi.Input<inputs.datalakestore.CreateTrustedIdProviderWithAccountParametersArgs>[]>; /** * The list of virtual network rules associated with this Data Lake Store account. */ virtualNetworkRules?: pulumi.Input<pulumi.Input<inputs.datalakestore.CreateVirtualNetworkRuleWithAccountParametersArgs>[]>; }