@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.52 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets jobs status details for sql arc resource
*
* Uses Azure REST API version 2025-03-01-preview.
*
* Other available API versions: 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native azurearcdata [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getSqlServerInstanceJobsStatus(args: GetSqlServerInstanceJobsStatusArgs, opts?: pulumi.InvokeOptions): Promise<GetSqlServerInstanceJobsStatusResult>;
export interface GetSqlServerInstanceJobsStatusArgs {
/**
* The name of the feature to retrieve the job status for.
*/
featureName?: string;
/**
* The type of the job to retrieve the status for.
*/
jobType?: string;
/**
* The name of the Azure resource group
*/
resourceGroupName: string;
/**
* Name of SQL Server Instance
*/
sqlServerInstanceName: string;
}
/**
* The response for the status of the jobs running on the SQL Server instance.
*/
export interface GetSqlServerInstanceJobsStatusResult {
/**
* The list of jobs status running on the SQL Server instance.
*/
readonly jobsStatus?: outputs.azurearcdata.SqlServerInstanceJobStatusResponse[];
}
/**
* Gets jobs status details for sql arc resource
*
* Uses Azure REST API version 2025-03-01-preview.
*
* Other available API versions: 2024-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native azurearcdata [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
*/
export declare function getSqlServerInstanceJobsStatusOutput(args: GetSqlServerInstanceJobsStatusOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSqlServerInstanceJobsStatusResult>;
export interface GetSqlServerInstanceJobsStatusOutputArgs {
/**
* The name of the feature to retrieve the job status for.
*/
featureName?: pulumi.Input<string>;
/**
* The type of the job to retrieve the status for.
*/
jobType?: pulumi.Input<string>;
/**
* The name of the Azure resource group
*/
resourceGroupName: pulumi.Input<string>;
/**
* Name of SQL Server Instance
*/
sqlServerInstanceName: pulumi.Input<string>;
}