@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.5 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the Hybrid AKS storage space object
*
* Uses Azure REST API version 2022-09-01-preview.
*/
export declare function getStorageSpaceRetrieve(args: GetStorageSpaceRetrieveArgs, opts?: pulumi.InvokeOptions): Promise<GetStorageSpaceRetrieveResult>;
export interface GetStorageSpaceRetrieveArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* Parameter for the name of the storage object
*/
storageSpacesName: string;
}
/**
* The storageSpaces resource definition.
*/
export interface GetStorageSpaceRetrieveResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
readonly extendedLocation?: outputs.hybridcontainerservice.StorageSpacesResponseExtendedLocation;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* HybridAKSStorageSpec defines the desired state of HybridAKSStorage
*/
readonly properties: outputs.hybridcontainerservice.StorageSpacesPropertiesResponse;
/**
* Metadata pertaining to creation and last modification of the resource.
*/
readonly systemData: outputs.hybridcontainerservice.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the Hybrid AKS storage space object
*
* Uses Azure REST API version 2022-09-01-preview.
*/
export declare function getStorageSpaceRetrieveOutput(args: GetStorageSpaceRetrieveOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetStorageSpaceRetrieveResult>;
export interface GetStorageSpaceRetrieveOutputArgs {
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* Parameter for the name of the storage object
*/
storageSpacesName: pulumi.Input<string>;
}