@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Returns an AML file system.
*
* 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 function getAmlFilesystem(args: GetAmlFilesystemArgs, opts?: pulumi.InvokeOptions): Promise<GetAmlFilesystemResult>;
export interface GetAmlFilesystemArgs {
/**
* Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
*/
amlFilesystemName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* 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
*/
export interface GetAmlFilesystemResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Client information for the AML file system.
*/
readonly clientInfo: outputs.storagecache.AmlFilesystemClientInfoResponse;
/**
* Specifies encryption settings of the AML file system.
*/
readonly encryptionSettings?: outputs.storagecache.AmlFilesystemEncryptionSettingsResponse;
/**
* 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: string;
/**
* Health of the AML file system.
*/
readonly health: outputs.storagecache.AmlFilesystemHealthResponse;
/**
* Hydration and archive settings and status
*/
readonly hsm?: outputs.storagecache.AmlFilesystemResponseHsm;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The managed identity used by the AML file system, if configured.
*/
readonly identity?: outputs.storagecache.AmlFilesystemIdentityResponse;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* Start time of a 30-minute weekly maintenance window.
*/
readonly maintenanceWindow: outputs.storagecache.AmlFilesystemResponseMaintenanceWindow;
/**
* The name of the resource
*/
readonly name: string;
/**
* ARM provisioning state.
*/
readonly provisioningState: string;
/**
* Specifies root squash settings of the AML file system.
*/
readonly rootSquashSettings?: outputs.storagecache.AmlFilesystemRootSquashSettingsResponse;
/**
* SKU for the resource.
*/
readonly sku?: outputs.storagecache.SkuNameResponse;
/**
* The size of the AML file system, in TiB. This might be rounded up.
*/
readonly storageCapacityTiB: number;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.storagecache.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* Throughput provisioned in MB per sec, calculated as storageCapacityTiB * per-unit storage throughput
*/
readonly throughputProvisionedMBps: number;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
/**
* Availability zones for resources. This field should only contain a single element in the array.
*/
readonly zones?: string[];
}
/**
* Returns an AML file system.
*
* 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 function getAmlFilesystemOutput(args: GetAmlFilesystemOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAmlFilesystemResult>;
export interface GetAmlFilesystemOutputArgs {
/**
* Name for the AML file system. Allows alphanumerics, underscores, and hyphens. Start and end with alphanumeric.
*/
amlFilesystemName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}