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

172 lines (171 loc) 7.03 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * An AML file system instance. Follows Azure Resource Manager standards: https://github.com/Azure/azure-resource-manager-rpc/blob/master/v1.0/resource-api-reference.md * * Uses Azure REST API version 2024-03-01. * * Other available API versions: 2023-05-01, 2023-11-01-preview, 2024-07-01, 2025-07-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native storagecache [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class AmlFilesystem extends pulumi.CustomResource { /** * Get an existing AmlFilesystem 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): AmlFilesystem; /** * Returns true if the given object is an instance of AmlFilesystem. 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 AmlFilesystem; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * Client information for the AML file system. */ readonly clientInfo: pulumi.Output<outputs.storagecache.AmlFilesystemClientInfoResponse>; /** * Specifies encryption settings of the AML file system. */ readonly encryptionSettings: pulumi.Output<outputs.storagecache.AmlFilesystemEncryptionSettingsResponse | undefined>; /** * Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space. */ readonly filesystemSubnet: pulumi.Output<string>; /** * Health of the AML file system. */ readonly health: pulumi.Output<outputs.storagecache.AmlFilesystemHealthResponse>; /** * Hydration and archive settings and status */ readonly hsm: pulumi.Output<outputs.storagecache.AmlFilesystemResponseHsm | undefined>; /** * The managed identity used by the AML file system, if configured. */ readonly identity: pulumi.Output<outputs.storagecache.AmlFilesystemIdentityResponse | undefined>; /** * The geo-location where the resource lives */ readonly location: pulumi.Output<string>; /** * Start time of a 30-minute weekly maintenance window. */ readonly maintenanceWindow: pulumi.Output<outputs.storagecache.AmlFilesystemResponseMaintenanceWindow>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * ARM provisioning state. */ readonly provisioningState: pulumi.Output<string>; /** * Specifies root squash settings of the AML file system. */ readonly rootSquashSettings: pulumi.Output<outputs.storagecache.AmlFilesystemRootSquashSettingsResponse | undefined>; /** * SKU for the resource. */ readonly sku: pulumi.Output<outputs.storagecache.SkuNameResponse | undefined>; /** * The size of the AML file system, in TiB. This might be rounded up. */ readonly storageCapacityTiB: pulumi.Output<number>; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output<outputs.storagecache.SystemDataResponse>; /** * Resource tags. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput */ readonly throughputProvisionedMBps: pulumi.Output<number>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Availability zones for resources. This field should only contain a single element in the array. */ readonly zones: pulumi.Output<string[] | undefined>; /** * Create a AmlFilesystem 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: AmlFilesystemArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AmlFilesystem resource. */ export interface AmlFilesystemArgs { /** * Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric. */ amlFilesystemName?: pulumi.Input<string>; /** * Specifies encryption settings of the AML file system. */ encryptionSettings?: pulumi.Input<inputs.storagecache.AmlFilesystemEncryptionSettingsArgs>; /** * Subnet used for managing the AML file system and for client-facing operations. This subnet should have at least a /24 subnet mask within the VNET's address space. */ filesystemSubnet: pulumi.Input<string>; /** * Hydration and archive settings and status */ hsm?: pulumi.Input<inputs.storagecache.AmlFilesystemHsmArgs>; /** * The managed identity used by the AML file system, if configured. */ identity?: pulumi.Input<inputs.storagecache.AmlFilesystemIdentityArgs>; /** * The geo-location where the resource lives */ location?: pulumi.Input<string>; /** * Start time of a 30-minute weekly maintenance window. */ maintenanceWindow: pulumi.Input<inputs.storagecache.AmlFilesystemMaintenanceWindowArgs>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * Specifies root squash settings of the AML file system. */ rootSquashSettings?: pulumi.Input<inputs.storagecache.AmlFilesystemRootSquashSettingsArgs>; /** * SKU for the resource. */ sku?: pulumi.Input<inputs.storagecache.SkuNameArgs>; /** * The size of the AML file system, in TiB. This might be rounded up. */ storageCapacityTiB: pulumi.Input<number>; /** * Resource tags. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * Availability zones for resources. This field should only contain a single element in the array. */ zones?: pulumi.Input<pulumi.Input<string>[]>; }