UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

88 lines (87 loc) 3.13 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Execution details of an experiment resource. * * Uses Azure REST API version 2024-03-22-preview. * * Other available API versions: 2023-11-01, 2024-01-01, 2024-11-01-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native chaos [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getExperimentExecutionDetails(args: GetExperimentExecutionDetailsArgs, opts?: pulumi.InvokeOptions): Promise<GetExperimentExecutionDetailsResult>; export interface GetExperimentExecutionDetailsArgs { /** * GUID that represents a Experiment execution detail. */ executionId: string; /** * String that represents a Experiment resource name. */ experimentName: string; /** * String that represents an Azure resource group. */ resourceGroupName: string; } /** * Model that represents the execution details of an Experiment. */ export interface GetExperimentExecutionDetailsResult { /** * The reason why the execution failed. */ readonly failureReason: string; /** * String of the fully qualified resource ID. */ readonly id: string; /** * String that represents the last action date time. */ readonly lastActionAt: string; /** * String of the resource name. */ readonly name: string; /** * The information of the experiment run. */ readonly runInformation: outputs.chaos.ExperimentExecutionDetailsPropertiesResponseRunInformation; /** * String that represents the start date time. */ readonly startedAt: string; /** * The status of the execution. */ readonly status: string; /** * String that represents the stop date time. */ readonly stoppedAt: string; /** * String of the resource type. */ readonly type: string; } /** * Execution details of an experiment resource. * * Uses Azure REST API version 2024-03-22-preview. * * Other available API versions: 2023-11-01, 2024-01-01, 2024-11-01-preview, 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native chaos [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function getExperimentExecutionDetailsOutput(args: GetExperimentExecutionDetailsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetExperimentExecutionDetailsResult>; export interface GetExperimentExecutionDetailsOutputArgs { /** * GUID that represents a Experiment execution detail. */ executionId: pulumi.Input<string>; /** * String that represents a Experiment resource name. */ experimentName: pulumi.Input<string>; /** * String that represents an Azure resource group. */ resourceGroupName: pulumi.Input<string>; }