@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.94 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets Build details
*
* Uses Azure REST API version 2025-04-01-preview.
*
* Other available API versions: 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getDevCenterCatalogImageDefinitionBuildDetails(args: GetDevCenterCatalogImageDefinitionBuildDetailsArgs, opts?: pulumi.InvokeOptions): Promise<GetDevCenterCatalogImageDefinitionBuildDetailsResult>;
export interface GetDevCenterCatalogImageDefinitionBuildDetailsArgs {
/**
* The ID of the Image Definition Build.
*/
buildName: string;
/**
* The name of the Catalog.
*/
catalogName: string;
/**
* The name of the devcenter.
*/
devCenterName: string;
/**
* The name of the Image Definition.
*/
imageDefinitionName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Represents a specific build of an Image Definition.
*/
export interface GetDevCenterCatalogImageDefinitionBuildDetailsResult {
/**
* End time of the task group.
*/
readonly endTime: string;
/**
* Details for image creation error. Populated when the image creation is not successful.
*/
readonly errorDetails: outputs.devcenter.ImageCreationErrorDetailsResponse;
/**
* Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
*/
readonly id: string;
/**
* The specific image version used by the build.
*/
readonly imageReference: outputs.devcenter.ImageReferenceResponse;
/**
* The name of the resource
*/
readonly name: string;
/**
* Start time of the task group.
*/
readonly startTime: string;
/**
* The status of the build.
*/
readonly status: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.devcenter.SystemDataResponse;
/**
* The list of task groups executed during the image definition build.
*/
readonly taskGroups: outputs.devcenter.ImageDefinitionBuildTaskGroupResponse[];
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets Build details
*
* Uses Azure REST API version 2025-04-01-preview.
*
* Other available API versions: 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getDevCenterCatalogImageDefinitionBuildDetailsOutput(args: GetDevCenterCatalogImageDefinitionBuildDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetDevCenterCatalogImageDefinitionBuildDetailsResult>;
export interface GetDevCenterCatalogImageDefinitionBuildDetailsOutputArgs {
/**
* The ID of the Image Definition Build.
*/
buildName: pulumi.Input<string>;
/**
* The name of the Catalog.
*/
catalogName: pulumi.Input<string>;
/**
* The name of the devcenter.
*/
devCenterName: pulumi.Input<string>;
/**
* The name of the Image Definition.
*/
imageDefinitionName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}