@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.08 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Represents a container on the Data Box Edge/Gateway device.
*
* Uses Azure REST API version 2023-07-01.
*
* Other available API versions: 2022-03-01, 2022-04-01-preview, 2022-12-01-preview, 2023-01-01-preview, 2023-12-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databoxedge [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getContainer(args: GetContainerArgs, opts?: pulumi.InvokeOptions): Promise<GetContainerResult>;
export interface GetContainerArgs {
/**
* The container Name
*/
containerName: string;
/**
* The device name.
*/
deviceName: string;
/**
* The resource group name.
*/
resourceGroupName: string;
/**
* The Storage Account Name
*/
storageAccountName: string;
}
/**
* Represents a container on the Data Box Edge/Gateway device.
*/
export interface GetContainerResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Current status of the container.
*/
readonly containerStatus: string;
/**
* The UTC time when container got created.
*/
readonly createdDateTime: string;
/**
* DataFormat for Container
*/
readonly dataFormat: string;
/**
* The path ID that uniquely identifies the object.
*/
readonly id: string;
/**
* The object name.
*/
readonly name: string;
/**
* Details of the refresh job on this container.
*/
readonly refreshDetails: outputs.databoxedge.RefreshDetailsResponse;
/**
* Metadata pertaining to creation and last modification of Container
*/
readonly systemData: outputs.databoxedge.SystemDataResponse;
/**
* The hierarchical type of the object.
*/
readonly type: string;
}
/**
* Represents a container on the Data Box Edge/Gateway device.
*
* Uses Azure REST API version 2023-07-01.
*
* Other available API versions: 2022-03-01, 2022-04-01-preview, 2022-12-01-preview, 2023-01-01-preview, 2023-12-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native databoxedge [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getContainerOutput(args: GetContainerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContainerResult>;
export interface GetContainerOutputArgs {
/**
* The container Name
*/
containerName: pulumi.Input<string>;
/**
* The device name.
*/
deviceName: pulumi.Input<string>;
/**
* The resource group name.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The Storage Account Name
*/
storageAccountName: pulumi.Input<string>;
}