@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 4.05 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Get details of the specified subvolume
*
* Uses Azure REST API version 2024-09-01.
*
* Other available API versions: 2022-11-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview, 2023-11-01, 2023-11-01-preview, 2024-01-01, 2024-03-01, 2024-03-01-preview, 2024-05-01, 2024-05-01-preview, 2024-07-01, 2024-07-01-preview, 2024-09-01-preview, 2025-01-01, 2025-01-01-preview, 2025-03-01, 2025-03-01-preview, 2025-06-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native netapp [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getCapacityPoolSubvolumeMetadata(args: GetCapacityPoolSubvolumeMetadataArgs, opts?: pulumi.InvokeOptions): Promise<GetCapacityPoolSubvolumeMetadataResult>;
export interface GetCapacityPoolSubvolumeMetadataArgs {
/**
* The name of the NetApp account
*/
accountName: string;
/**
* The name of the capacity pool
*/
poolName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The name of the subvolume.
*/
subvolumeName: string;
/**
* The name of the volume
*/
volumeName: string;
}
/**
* Result of the post subvolume and action is to get metadata of the subvolume.
*/
export interface GetCapacityPoolSubvolumeMetadataResult {
/**
* Most recent access time and date
*/
readonly accessedTimeStamp?: string;
/**
* Bytes used
*/
readonly bytesUsed?: number;
/**
* Most recent change time and date
*/
readonly changedTimeStamp?: string;
/**
* Creation time and date
*/
readonly creationTimeStamp?: string;
/**
* Resource Id
*/
readonly id: string;
/**
* Most recent modification time and date
*/
readonly modifiedTimeStamp?: string;
/**
* Resource name
*/
readonly name: string;
/**
* Path to the parent subvolume
*/
readonly parentPath?: string;
/**
* Path to the subvolume
*/
readonly path?: string;
/**
* Permissions of the subvolume
*/
readonly permissions?: string;
/**
* Azure lifecycle management
*/
readonly provisioningState?: string;
/**
* Size of subvolume
*/
readonly size?: number;
/**
* Resource type
*/
readonly type: string;
}
/**
* Get details of the specified subvolume
*
* Uses Azure REST API version 2024-09-01.
*
* Other available API versions: 2022-11-01, 2022-11-01-preview, 2023-05-01, 2023-05-01-preview, 2023-07-01, 2023-07-01-preview, 2023-11-01, 2023-11-01-preview, 2024-01-01, 2024-03-01, 2024-03-01-preview, 2024-05-01, 2024-05-01-preview, 2024-07-01, 2024-07-01-preview, 2024-09-01-preview, 2025-01-01, 2025-01-01-preview, 2025-03-01, 2025-03-01-preview, 2025-06-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native netapp [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getCapacityPoolSubvolumeMetadataOutput(args: GetCapacityPoolSubvolumeMetadataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCapacityPoolSubvolumeMetadataResult>;
export interface GetCapacityPoolSubvolumeMetadataOutputArgs {
/**
* The name of the NetApp account
*/
accountName: pulumi.Input<string>;
/**
* The name of the capacity pool
*/
poolName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The name of the subvolume.
*/
subvolumeName: pulumi.Input<string>;
/**
* The name of the volume
*/
volumeName: pulumi.Input<string>;
}