@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.64 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List the storage accounts which are in use by related reports
*
* Uses Azure REST API version 2024-06-27.
*/
export declare function listProviderActionInUseStorageAccounts(args?: ListProviderActionInUseStorageAccountsArgs, opts?: pulumi.InvokeOptions): Promise<ListProviderActionInUseStorageAccountsResult>;
export interface ListProviderActionInUseStorageAccountsArgs {
/**
* List of subscription ids to be query. If the list is null or empty, the API will query all the subscriptions of the user.
*/
subscriptionIds?: string[];
}
/**
* Parameters for listing in use storage accounts operation. If subscription list is null, it will check the user's all subscriptions.
*/
export interface ListProviderActionInUseStorageAccountsResult {
/**
* The storage account list which in use in related reports.
*/
readonly storageAccountList?: outputs.appcomplianceautomation.StorageInfoResponse[];
}
/**
* List the storage accounts which are in use by related reports
*
* Uses Azure REST API version 2024-06-27.
*/
export declare function listProviderActionInUseStorageAccountsOutput(args?: ListProviderActionInUseStorageAccountsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListProviderActionInUseStorageAccountsResult>;
export interface ListProviderActionInUseStorageAccountsOutputArgs {
/**
* List of subscription ids to be query. If the list is null or empty, the API will query all the subscriptions of the user.
*/
subscriptionIds?: pulumi.Input<pulumi.Input<string>[]>;
}