@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.24 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the list of recent fault simulations for the cluster.
*
* Uses Azure REST API version 2024-11-01-preview.
*
* Other available API versions: 2025-03-01-preview, 2025-06-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicefabric [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listManagedClusterFaultSimulation(args: ListManagedClusterFaultSimulationArgs, opts?: pulumi.InvokeOptions): Promise<ListManagedClusterFaultSimulationResult>;
export interface ListManagedClusterFaultSimulationArgs {
/**
* The name of the cluster resource.
*/
clusterName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Fault simulation list results
*/
export interface ListManagedClusterFaultSimulationResult {
/**
* The link to the next page of items
*/
readonly nextLink?: string;
/**
* The FaultSimulation items on this page
*/
readonly value: outputs.servicefabric.FaultSimulationResponse[];
}
/**
* Gets the list of recent fault simulations for the cluster.
*
* Uses Azure REST API version 2024-11-01-preview.
*
* Other available API versions: 2025-03-01-preview, 2025-06-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicefabric [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function listManagedClusterFaultSimulationOutput(args: ListManagedClusterFaultSimulationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListManagedClusterFaultSimulationResult>;
export interface ListManagedClusterFaultSimulationOutputArgs {
/**
* The name of the cluster resource.
*/
clusterName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}