@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 3.05 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Gets the backup connection resource of virtual instance for SAP.
*
* Uses Azure REST API version 2023-10-01-preview.
*/
export declare function getACSSBackupConnection(args: GetACSSBackupConnectionArgs, opts?: pulumi.InvokeOptions): Promise<GetACSSBackupConnectionResult>;
export interface GetACSSBackupConnectionArgs {
/**
* The name of the backup connection resource of virtual instance for SAP.
*/
backupName: string;
/**
* The name of the connector resource
*/
connectorName: string;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: string;
}
/**
* Define the backup connection resource of virtual instance for SAP..
*/
export interface GetACSSBackupConnectionResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Information about the recovery services vault and backup policy used for backup.
*/
readonly backupData?: outputs.workloads.HanaBackupDataResponse | outputs.workloads.SqlBackupDataResponse | outputs.workloads.VMBackupDataResponse;
/**
* Defines the errors related to backup connection resource of virtual instance for SAP.
*/
readonly errors: outputs.workloads.ConnectorErrorDefinitionResponse;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The geo-location where the resource lives
*/
readonly location: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* Defines the provisioning states.
*/
readonly provisioningState: string;
/**
* Azure Resource Manager metadata containing createdBy and modifiedBy information.
*/
readonly systemData: outputs.workloads.SystemDataResponse;
/**
* Resource tags.
*/
readonly tags?: {
[key: string]: string;
};
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets the backup connection resource of virtual instance for SAP.
*
* Uses Azure REST API version 2023-10-01-preview.
*/
export declare function getACSSBackupConnectionOutput(args: GetACSSBackupConnectionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetACSSBackupConnectionResult>;
export interface GetACSSBackupConnectionOutputArgs {
/**
* The name of the backup connection resource of virtual instance for SAP.
*/
backupName: pulumi.Input<string>;
/**
* The name of the connector resource
*/
connectorName: pulumi.Input<string>;
/**
* The name of the resource group. The name is case insensitive.
*/
resourceGroupName: pulumi.Input<string>;
}