@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.48 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 getConnectorDryrun(args: GetConnectorDryrunArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorDryrunResult>;
export interface GetConnectorDryrunArgs {
/**
* The name of dryrun.
*/
dryrunName: string;
/**
* The name of Azure region.
*/
location: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
/**
* The ID of the target subscription.
*/
subscriptionId?: string;
}
/**
* a dryrun job resource
*/
export interface GetConnectorDryrunResult {
/**
* 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 getConnectorDryrunOutput(args: GetConnectorDryrunOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorDryrunResult>;
export interface GetConnectorDryrunOutputArgs {
/**
* The name of dryrun.
*/
dryrunName: pulumi.Input<string>;
/**
* The name of Azure region.
*/
location: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
/**
* The ID of the target subscription.
*/
subscriptionId?: pulumi.Input<string>;
}