@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.14 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* get a dryrun job
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicelinker [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getLinkerDryrun(args: GetLinkerDryrunArgs, opts?: pulumi.InvokeOptions): Promise<GetLinkerDryrunResult>;
export interface GetLinkerDryrunArgs {
/**
* The name of dryrun.
*/
dryrunName: string;
/**
* The fully qualified Azure Resource manager identifier of the resource to be connected.
*/
resourceUri: string;
}
/**
* a dryrun job resource
*/
export interface GetLinkerDryrunResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* the preview of the operations for creation
*/
readonly operationPreviews: outputs.servicelinker.DryrunOperationPreviewResponse[];
/**
* The parameters of the dryrun
*/
readonly parameters?: outputs.servicelinker.CreateOrUpdateDryrunParametersResponse;
/**
* the result of the dryrun
*/
readonly prerequisiteResults: (outputs.servicelinker.BasicErrorDryrunPrerequisiteResultResponse | outputs.servicelinker.PermissionsMissingDryrunPrerequisiteResultResponse)[];
/**
* The provisioning state.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.servicelinker.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* get a dryrun job
*
* Uses Azure REST API version 2024-04-01.
*
* Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicelinker [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getLinkerDryrunOutput(args: GetLinkerDryrunOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetLinkerDryrunResult>;
export interface GetLinkerDryrunOutputArgs {
/**
* The name of dryrun.
*/
dryrunName: pulumi.Input<string>;
/**
* The fully qualified Azure Resource manager identifier of the resource to be connected.
*/
resourceUri: pulumi.Input<string>;
}