azure-native.recoveryservices.ProtectedItem
Base class for backup items.
Uses Azure REST API version 2024-10-01. In version 2.x of the Azure Native provider, it used API version 2023-04-01.
Other available API versions: 2023-02-01, 2023-04-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview, 2024-07-30-preview, 2024-11-01-preview, 2025-01-01, 2025-02-01, 2025-02-28-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native recoveryservices [ApiVersion]. See the version guide for details.
Example Usage
Enable Protection on Azure IaasVm
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var protectedItem = new AzureNative.RecoveryServices.ProtectedItem("protectedItem", new()
    {
        ContainerName = "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
        FabricName = "Azure",
        Properties = new AzureNative.RecoveryServices.Inputs.AzureIaaSComputeVMProtectedItemArgs
        {
            PolicyId = "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy",
            ProtectedItemType = "Microsoft.Compute/virtualMachines",
            SourceResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
        },
        ProtectedItemName = "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
        ResourceGroupName = "SwaggerTestRg",
        VaultName = "NetSDKTestRsVault",
    });
});
package main
import (
	recoveryservices "github.com/pulumi/pulumi-azure-native-sdk/recoveryservices/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := recoveryservices.NewProtectedItem(ctx, "protectedItem", &recoveryservices.ProtectedItemArgs{
			ContainerName: pulumi.String("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
			FabricName:    pulumi.String("Azure"),
			Properties: &recoveryservices.AzureIaaSComputeVMProtectedItemArgs{
				PolicyId:          pulumi.String("/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy"),
				ProtectedItemType: pulumi.String("Microsoft.Compute/virtualMachines"),
				SourceResourceId:  pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1"),
			},
			ProtectedItemName: pulumi.String("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
			ResourceGroupName: pulumi.String("SwaggerTestRg"),
			VaultName:         pulumi.String("NetSDKTestRsVault"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.recoveryservices.ProtectedItem;
import com.pulumi.azurenative.recoveryservices.ProtectedItemArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var protectedItem = new ProtectedItem("protectedItem", ProtectedItemArgs.builder()
            .containerName("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
            .fabricName("Azure")
            .properties(AzureIaaSComputeVMProtectedItemArgs.builder()
                .policyId("/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy")
                .protectedItemType("Microsoft.Compute/virtualMachines")
                .sourceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1")
                .build())
            .protectedItemName("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
            .resourceGroupName("SwaggerTestRg")
            .vaultName("NetSDKTestRsVault")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const protectedItem = new azure_native.recoveryservices.ProtectedItem("protectedItem", {
    containerName: "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    fabricName: "Azure",
    properties: {
        policyId: "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy",
        protectedItemType: "Microsoft.Compute/virtualMachines",
        sourceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
    },
    protectedItemName: "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    resourceGroupName: "SwaggerTestRg",
    vaultName: "NetSDKTestRsVault",
});
import pulumi
import pulumi_azure_native as azure_native
protected_item = azure_native.recoveryservices.ProtectedItem("protectedItem",
    container_name="IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    fabric_name="Azure",
    properties={
        "policy_id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy",
        "protected_item_type": "Microsoft.Compute/virtualMachines",
        "source_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
    },
    protected_item_name="VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    resource_group_name="SwaggerTestRg",
    vault_name="NetSDKTestRsVault")
resources:
  protectedItem:
    type: azure-native:recoveryservices:ProtectedItem
    properties:
      containerName: IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1
      fabricName: Azure
      properties:
        policyId: /Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy
        protectedItemType: Microsoft.Compute/virtualMachines
        sourceResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1
      protectedItemName: VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1
      resourceGroupName: SwaggerTestRg
      vaultName: NetSDKTestRsVault
Stop Protection with retain data on Azure IaasVm
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var protectedItem = new AzureNative.RecoveryServices.ProtectedItem("protectedItem", new()
    {
        ContainerName = "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
        FabricName = "Azure",
        Properties = new AzureNative.RecoveryServices.Inputs.AzureIaaSComputeVMProtectedItemArgs
        {
            ProtectedItemType = "Microsoft.Compute/virtualMachines",
            ProtectionState = AzureNative.RecoveryServices.ProtectionState.ProtectionStopped,
            SourceResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
        },
        ProtectedItemName = "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
        ResourceGroupName = "SwaggerTestRg",
        VaultName = "NetSDKTestRsVault",
    });
});
package main
import (
	recoveryservices "github.com/pulumi/pulumi-azure-native-sdk/recoveryservices/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := recoveryservices.NewProtectedItem(ctx, "protectedItem", &recoveryservices.ProtectedItemArgs{
			ContainerName: pulumi.String("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
			FabricName:    pulumi.String("Azure"),
			Properties: &recoveryservices.AzureIaaSComputeVMProtectedItemArgs{
				ProtectedItemType: pulumi.String("Microsoft.Compute/virtualMachines"),
				ProtectionState:   pulumi.String(recoveryservices.ProtectionStateProtectionStopped),
				SourceResourceId:  pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1"),
			},
			ProtectedItemName: pulumi.String("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
			ResourceGroupName: pulumi.String("SwaggerTestRg"),
			VaultName:         pulumi.String("NetSDKTestRsVault"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.recoveryservices.ProtectedItem;
import com.pulumi.azurenative.recoveryservices.ProtectedItemArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var protectedItem = new ProtectedItem("protectedItem", ProtectedItemArgs.builder()
            .containerName("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
            .fabricName("Azure")
            .properties(AzureIaaSComputeVMProtectedItemArgs.builder()
                .protectedItemType("Microsoft.Compute/virtualMachines")
                .protectionState("ProtectionStopped")
                .sourceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1")
                .build())
            .protectedItemName("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
            .resourceGroupName("SwaggerTestRg")
            .vaultName("NetSDKTestRsVault")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const protectedItem = new azure_native.recoveryservices.ProtectedItem("protectedItem", {
    containerName: "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    fabricName: "Azure",
    properties: {
        protectedItemType: "Microsoft.Compute/virtualMachines",
        protectionState: azure_native.recoveryservices.ProtectionState.ProtectionStopped,
        sourceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
    },
    protectedItemName: "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    resourceGroupName: "SwaggerTestRg",
    vaultName: "NetSDKTestRsVault",
});
import pulumi
import pulumi_azure_native as azure_native
protected_item = azure_native.recoveryservices.ProtectedItem("protectedItem",
    container_name="IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    fabric_name="Azure",
    properties={
        "protected_item_type": "Microsoft.Compute/virtualMachines",
        "protection_state": azure_native.recoveryservices.ProtectionState.PROTECTION_STOPPED,
        "source_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
    },
    protected_item_name="VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
    resource_group_name="SwaggerTestRg",
    vault_name="NetSDKTestRsVault")
resources:
  protectedItem:
    type: azure-native:recoveryservices:ProtectedItem
    properties:
      containerName: IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1
      fabricName: Azure
      properties:
        protectedItemType: Microsoft.Compute/virtualMachines
        protectionState: ProtectionStopped
        sourceResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1
      protectedItemName: VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1
      resourceGroupName: SwaggerTestRg
      vaultName: NetSDKTestRsVault
Create ProtectedItem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProtectedItem(name: string, args: ProtectedItemArgs, opts?: CustomResourceOptions);@overload
def ProtectedItem(resource_name: str,
                  args: ProtectedItemArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def ProtectedItem(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  container_name: Optional[str] = None,
                  fabric_name: Optional[str] = None,
                  resource_group_name: Optional[str] = None,
                  vault_name: Optional[str] = None,
                  e_tag: Optional[str] = None,
                  location: Optional[str] = None,
                  properties: Optional[Union[AzureFileshareProtectedItemArgs, AzureIaaSClassicComputeVMProtectedItemArgs, AzureIaaSComputeVMProtectedItemArgs, AzureIaaSVMProtectedItemArgs, AzureSqlProtectedItemArgs, AzureVmWorkloadProtectedItemArgs, AzureVmWorkloadSAPAseDatabaseProtectedItemArgs, AzureVmWorkloadSAPHanaDBInstanceProtectedItemArgs, AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs, AzureVmWorkloadSQLDatabaseProtectedItemArgs, DPMProtectedItemArgs, GenericProtectedItemArgs, MabFileFolderProtectedItemArgs]] = None,
                  protected_item_name: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None)func NewProtectedItem(ctx *Context, name string, args ProtectedItemArgs, opts ...ResourceOption) (*ProtectedItem, error)public ProtectedItem(string name, ProtectedItemArgs args, CustomResourceOptions? opts = null)
public ProtectedItem(String name, ProtectedItemArgs args)
public ProtectedItem(String name, ProtectedItemArgs args, CustomResourceOptions options)
type: azure-native:recoveryservices:ProtectedItem
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeProtectedItemResource = new AzureNative.RecoveryServices.ProtectedItem("azure-nativeProtectedItemResource", new()
{
    ContainerName = "string",
    FabricName = "string",
    ResourceGroupName = "string",
    VaultName = "string",
    ETag = "string",
    Location = "string",
    Properties = new AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemArgs
    {
        ProtectedItemType = "AzureFileShareProtectedItem",
        IsScheduledForDeferredDelete = false,
        LastBackupStatus = "string",
        DeferredDeleteTimeInUTC = "string",
        DeferredDeleteTimeRemaining = "string",
        ExtendedInfo = new AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemExtendedInfoArgs
        {
            OldestRecoveryPoint = "string",
            PolicyState = "string",
            RecoveryPointCount = 0,
        },
        FriendlyName = "string",
        IsArchiveEnabled = false,
        IsDeferredDeleteScheduleUpcoming = false,
        IsRehydrate = false,
        LastBackupTime = "string",
        CreateMode = "string",
        KpisHealths = 
        {
            { "string", new AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsArgs
            {
                ResourceHealthStatus = "string",
            } },
        },
        BackupSetName = "string",
        LastRecoveryPoint = "string",
        PolicyId = "string",
        PolicyName = "string",
        ContainerName = "string",
        ProtectionState = "string",
        ProtectionStatus = "string",
        ResourceGuardOperationRequests = new[]
        {
            "string",
        },
        SoftDeleteRetentionPeriodInDays = 0,
        SourceResourceId = "string",
    },
    ProtectedItemName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := recoveryservices.NewProtectedItem(ctx, "azure-nativeProtectedItemResource", &recoveryservices.ProtectedItemArgs{
	ContainerName:     pulumi.String("string"),
	FabricName:        pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	VaultName:         pulumi.String("string"),
	ETag:              pulumi.String("string"),
	Location:          pulumi.String("string"),
	Properties: &recoveryservices.AzureFileshareProtectedItemArgs{
		ProtectedItemType:            pulumi.String("AzureFileShareProtectedItem"),
		IsScheduledForDeferredDelete: pulumi.Bool(false),
		LastBackupStatus:             pulumi.String("string"),
		DeferredDeleteTimeInUTC:      pulumi.String("string"),
		DeferredDeleteTimeRemaining:  pulumi.String("string"),
		ExtendedInfo: &recoveryservices.AzureFileshareProtectedItemExtendedInfoArgs{
			OldestRecoveryPoint: pulumi.String("string"),
			PolicyState:         pulumi.String("string"),
			RecoveryPointCount:  pulumi.Int(0),
		},
		FriendlyName:                     pulumi.String("string"),
		IsArchiveEnabled:                 pulumi.Bool(false),
		IsDeferredDeleteScheduleUpcoming: pulumi.Bool(false),
		IsRehydrate:                      pulumi.Bool(false),
		LastBackupTime:                   pulumi.String("string"),
		CreateMode:                       pulumi.String("string"),
		KpisHealths: recoveryservices.KPIResourceHealthDetailsMap{
			"string": &recoveryservices.KPIResourceHealthDetailsArgs{
				ResourceHealthStatus: pulumi.String("string"),
			},
		},
		BackupSetName:     pulumi.String("string"),
		LastRecoveryPoint: pulumi.String("string"),
		PolicyId:          pulumi.String("string"),
		PolicyName:        pulumi.String("string"),
		ContainerName:     pulumi.String("string"),
		ProtectionState:   pulumi.String("string"),
		ProtectionStatus:  pulumi.String("string"),
		ResourceGuardOperationRequests: pulumi.StringArray{
			pulumi.String("string"),
		},
		SoftDeleteRetentionPeriodInDays: pulumi.Int(0),
		SourceResourceId:                pulumi.String("string"),
	},
	ProtectedItemName: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var azure_nativeProtectedItemResource = new com.pulumi.azurenative.recoveryservices.ProtectedItem("azure-nativeProtectedItemResource", com.pulumi.azurenative.recoveryservices.ProtectedItemArgs.builder()
    .containerName("string")
    .fabricName("string")
    .resourceGroupName("string")
    .vaultName("string")
    .eTag("string")
    .location("string")
    .properties(AzureFileshareProtectedItemArgs.builder()
        .protectedItemType("AzureFileShareProtectedItem")
        .isScheduledForDeferredDelete(false)
        .lastBackupStatus("string")
        .deferredDeleteTimeInUTC("string")
        .deferredDeleteTimeRemaining("string")
        .extendedInfo(AzureFileshareProtectedItemExtendedInfoArgs.builder()
            .oldestRecoveryPoint("string")
            .policyState("string")
            .recoveryPointCount(0)
            .build())
        .friendlyName("string")
        .isArchiveEnabled(false)
        .isDeferredDeleteScheduleUpcoming(false)
        .isRehydrate(false)
        .lastBackupTime("string")
        .createMode("string")
        .kpisHealths(Map.of("string", KPIResourceHealthDetailsArgs.builder()
            .resourceHealthStatus("string")
            .build()))
        .backupSetName("string")
        .lastRecoveryPoint("string")
        .policyId("string")
        .policyName("string")
        .containerName("string")
        .protectionState("string")
        .protectionStatus("string")
        .resourceGuardOperationRequests("string")
        .softDeleteRetentionPeriodInDays(0)
        .sourceResourceId("string")
        .build())
    .protectedItemName("string")
    .tags(Map.of("string", "string"))
    .build());
azure_native_protected_item_resource = azure_native.recoveryservices.ProtectedItem("azure-nativeProtectedItemResource",
    container_name="string",
    fabric_name="string",
    resource_group_name="string",
    vault_name="string",
    e_tag="string",
    location="string",
    properties={
        "protected_item_type": "AzureFileShareProtectedItem",
        "is_scheduled_for_deferred_delete": False,
        "last_backup_status": "string",
        "deferred_delete_time_in_utc": "string",
        "deferred_delete_time_remaining": "string",
        "extended_info": {
            "oldest_recovery_point": "string",
            "policy_state": "string",
            "recovery_point_count": 0,
        },
        "friendly_name": "string",
        "is_archive_enabled": False,
        "is_deferred_delete_schedule_upcoming": False,
        "is_rehydrate": False,
        "last_backup_time": "string",
        "create_mode": "string",
        "kpis_healths": {
            "string": {
                "resource_health_status": "string",
            },
        },
        "backup_set_name": "string",
        "last_recovery_point": "string",
        "policy_id": "string",
        "policy_name": "string",
        "container_name": "string",
        "protection_state": "string",
        "protection_status": "string",
        "resource_guard_operation_requests": ["string"],
        "soft_delete_retention_period_in_days": 0,
        "source_resource_id": "string",
    },
    protected_item_name="string",
    tags={
        "string": "string",
    })
const azure_nativeProtectedItemResource = new azure_native.recoveryservices.ProtectedItem("azure-nativeProtectedItemResource", {
    containerName: "string",
    fabricName: "string",
    resourceGroupName: "string",
    vaultName: "string",
    eTag: "string",
    location: "string",
    properties: {
        protectedItemType: "AzureFileShareProtectedItem",
        isScheduledForDeferredDelete: false,
        lastBackupStatus: "string",
        deferredDeleteTimeInUTC: "string",
        deferredDeleteTimeRemaining: "string",
        extendedInfo: {
            oldestRecoveryPoint: "string",
            policyState: "string",
            recoveryPointCount: 0,
        },
        friendlyName: "string",
        isArchiveEnabled: false,
        isDeferredDeleteScheduleUpcoming: false,
        isRehydrate: false,
        lastBackupTime: "string",
        createMode: "string",
        kpisHealths: {
            string: {
                resourceHealthStatus: "string",
            },
        },
        backupSetName: "string",
        lastRecoveryPoint: "string",
        policyId: "string",
        policyName: "string",
        containerName: "string",
        protectionState: "string",
        protectionStatus: "string",
        resourceGuardOperationRequests: ["string"],
        softDeleteRetentionPeriodInDays: 0,
        sourceResourceId: "string",
    },
    protectedItemName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:recoveryservices:ProtectedItem
properties:
    containerName: string
    eTag: string
    fabricName: string
    location: string
    properties:
        backupSetName: string
        containerName: string
        createMode: string
        deferredDeleteTimeInUTC: string
        deferredDeleteTimeRemaining: string
        extendedInfo:
            oldestRecoveryPoint: string
            policyState: string
            recoveryPointCount: 0
        friendlyName: string
        isArchiveEnabled: false
        isDeferredDeleteScheduleUpcoming: false
        isRehydrate: false
        isScheduledForDeferredDelete: false
        kpisHealths:
            string:
                resourceHealthStatus: string
        lastBackupStatus: string
        lastBackupTime: string
        lastRecoveryPoint: string
        policyId: string
        policyName: string
        protectedItemType: AzureFileShareProtectedItem
        protectionState: string
        protectionStatus: string
        resourceGuardOperationRequests:
            - string
        softDeleteRetentionPeriodInDays: 0
        sourceResourceId: string
    protectedItemName: string
    resourceGroupName: string
    tags:
        string: string
    vaultName: string
ProtectedItem Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProtectedItem resource accepts the following input properties:
- ContainerName string
- Container name associated with the backup item.
- FabricName string
- Fabric name associated with the backup item.
- ResourceGroup stringName 
- The name of the resource group where the recovery services vault is present.
- VaultName string
- The name of the recovery services vault.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Properties
Pulumi.Azure | Pulumi.Native. Recovery Services. Inputs. Azure Fileshare Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SClassic Compute VMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SCompute VMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Sql Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SAPAse Database Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SAPHana DBInstance Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SAPHana Database Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SQLDatabase Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. DPMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Generic Protected Item Azure Native. Recovery Services. Inputs. Mab File Folder Protected Item 
- ProtectedItemResource properties
- ProtectedItem stringName 
- Item name to be backed up.
- Dictionary<string, string>
- Resource tags.
- ContainerName string
- Container name associated with the backup item.
- FabricName string
- Fabric name associated with the backup item.
- ResourceGroup stringName 
- The name of the resource group where the recovery services vault is present.
- VaultName string
- The name of the recovery services vault.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Properties
AzureFileshare | AzureProtected Item Args Iaa | AzureSClassic Compute VMProtected Item Args Iaa | AzureSCompute VMProtected Item Args Iaa | AzureSVMProtected Item Args Sql | AzureProtected Item Args Vm | AzureWorkload Protected Item Args Vm | AzureWorkload SAPAse Database Protected Item Args Vm | AzureWorkload SAPHana DBInstance Protected Item Args Vm | AzureWorkload SAPHana Database Protected Item Args Vm | DPMProtectedWorkload SQLDatabase Protected Item Args Item | GenericArgs Protected | MabItem Args File Folder Protected Item Args 
- ProtectedItemResource properties
- ProtectedItem stringName 
- Item name to be backed up.
- map[string]string
- Resource tags.
- containerName String
- Container name associated with the backup item.
- fabricName String
- Fabric name associated with the backup item.
- resourceGroup StringName 
- The name of the resource group where the recovery services vault is present.
- vaultName String
- The name of the recovery services vault.
- eTag String
- Optional ETag.
- location String
- Resource location.
- properties
AzureFileshare | AzureProtected Item Iaa | AzureSClassic Compute VMProtected Item Iaa | AzureSCompute VMProtected Item Iaa | AzureSVMProtected Item Sql | AzureProtected Item Vm | AzureWorkload Protected Item Vm | AzureWorkload SAPAse Database Protected Item Vm | AzureWorkload SAPHana DBInstance Protected Item Vm | AzureWorkload SAPHana Database Protected Item Vm | DPMProtectedWorkload SQLDatabase Protected Item Item | GenericProtected | MabItem File Folder Protected Item 
- ProtectedItemResource properties
- protectedItem StringName 
- Item name to be backed up.
- Map<String,String>
- Resource tags.
- containerName string
- Container name associated with the backup item.
- fabricName string
- Fabric name associated with the backup item.
- resourceGroup stringName 
- The name of the resource group where the recovery services vault is present.
- vaultName string
- The name of the recovery services vault.
- eTag string
- Optional ETag.
- location string
- Resource location.
- properties
AzureFileshare | AzureProtected Item Iaa | AzureSClassic Compute VMProtected Item Iaa | AzureSCompute VMProtected Item Iaa | AzureSVMProtected Item Sql | AzureProtected Item Vm | AzureWorkload Protected Item Vm | AzureWorkload SAPAse Database Protected Item Vm | AzureWorkload SAPHana DBInstance Protected Item Vm | AzureWorkload SAPHana Database Protected Item Vm | DPMProtectedWorkload SQLDatabase Protected Item Item | GenericProtected | MabItem File Folder Protected Item 
- ProtectedItemResource properties
- protectedItem stringName 
- Item name to be backed up.
- {[key: string]: string}
- Resource tags.
- container_name str
- Container name associated with the backup item.
- fabric_name str
- Fabric name associated with the backup item.
- resource_group_ strname 
- The name of the resource group where the recovery services vault is present.
- vault_name str
- The name of the recovery services vault.
- e_tag str
- Optional ETag.
- location str
- Resource location.
- properties
AzureFileshare | AzureProtected Item Args Iaa | AzureSClassic Compute VMProtected Item Args Iaa | AzureSCompute VMProtected Item Args Iaa | AzureSVMProtected Item Args Sql | AzureProtected Item Args Vm | AzureWorkload Protected Item Args Vm | AzureWorkload SAPAse Database Protected Item Args Vm | AzureWorkload SAPHana DBInstance Protected Item Args Vm | AzureWorkload SAPHana Database Protected Item Args Vm | DPMProtectedWorkload SQLDatabase Protected Item Args Item | GenericArgs Protected | MabItem Args File Folder Protected Item Args 
- ProtectedItemResource properties
- protected_item_ strname 
- Item name to be backed up.
- Mapping[str, str]
- Resource tags.
- containerName String
- Container name associated with the backup item.
- fabricName String
- Fabric name associated with the backup item.
- resourceGroup StringName 
- The name of the resource group where the recovery services vault is present.
- vaultName String
- The name of the recovery services vault.
- eTag String
- Optional ETag.
- location String
- Resource location.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- ProtectedItemResource properties
- protectedItem StringName 
- Item name to be backed up.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProtectedItem resource produces the following output properties:
- AzureApi stringVersion 
- The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name associated with the resource.
- Type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- AzureApi stringVersion 
- The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Resource name associated with the resource.
- Type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azureApi StringVersion 
- The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name associated with the resource.
- type String
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azureApi stringVersion 
- The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Resource name associated with the resource.
- type string
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azure_api_ strversion 
- The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Resource name associated with the resource.
- type str
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
- azureApi StringVersion 
- The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Resource name associated with the resource.
- type String
- Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...
Supporting Types
AzureFileshareProtectedItem, AzureFileshareProtectedItemArgs        
Azure File Share workload-specific backup item.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Fileshare Protected Item Extended Info 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of the fileshare represented by this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of the fileshare represented by this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- friendlyName string
- Friendly name of the fileshare represented by this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- friendly_name str
- Friendly name of the fileshare represented by this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureFileshareProtectedItemExtendedInfo, AzureFileshareProtectedItemExtendedInfoArgs            
Additional information about Azure File Share backup item.- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint IntegerCount 
- Number of available backup copies associated with this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint numberCount 
- Number of available backup copies associated with this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this item in the service.
- policy_state str
- Indicates consistency of policy object and policy applied to this backup item.
- recovery_point_ intcount 
- Number of available backup copies associated with this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint NumberCount 
- Number of available backup copies associated with this backup item.
AzureFileshareProtectedItemExtendedInfoResponse, AzureFileshareProtectedItemExtendedInfoResponseArgs              
Additional information about Azure File Share backup item.- ResourceState string
- Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- ResourceState stringSync Time 
- The resource state sync time for this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- ResourceState string
- Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- ResourceState stringSync Time 
- The resource state sync time for this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- resourceState String
- Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resourceState StringSync Time 
- The resource state sync time for this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint IntegerCount 
- Number of available backup copies associated with this backup item.
- resourceState string
- Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resourceState stringSync Time 
- The resource state sync time for this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint numberCount 
- Number of available backup copies associated with this backup item.
- resource_state str
- Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resource_state_ strsync_ time 
- The resource state sync time for this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this item in the service.
- policy_state str
- Indicates consistency of policy object and policy applied to this backup item.
- recovery_point_ intcount 
- Number of available backup copies associated with this backup item.
- resourceState String
- Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resourceState StringSync Time 
- The resource state sync time for this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint NumberCount 
- Number of available backup copies associated with this backup item.
AzureFileshareProtectedItemResponse, AzureFileshareProtectedItemResponseArgs          
Azure File Share workload-specific backup item.- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Fileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of the fileshare represented by this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of the fileshare represented by this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- friendlyName string
- Friendly name of the fileshare represented by this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- friendly_name str
- Friendly name of the fileshare represented by this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureIaaSClassicComputeVMProtectedItem, AzureIaaSClassicComputeVMProtectedItemArgs            
IaaS VM workload-specific backup item representing the Classic Compute VM.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties 
- Extended Properties for Azure IaasVM Backup.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extended_properties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureIaaSClassicComputeVMProtectedItemResponse, AzureIaaSClassicComputeVMProtectedItemResponseArgs              
IaaS VM workload-specific backup item representing the Classic Compute VM.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string
- Health status of protected item.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- VaultId string
- ID of the vault which protects this item
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties Response 
- Extended Properties for Azure IaasVM Backup.
- HealthDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> 
- Health details on this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string
- Health status of protected item.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- VaultId string
- ID of the vault which protects this item
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- HealthDetails []AzureIaa SVMHealth Details Response 
- Health details on this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String
- Health status of protected item.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem StringData Id 
- Data ID of the protected item.
- vaultId String
- ID of the vault which protects this item
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- healthDetails List<AzureIaa SVMHealth Details Response> 
- Health details on this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthStatus string
- Health status of protected item.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem stringData Id 
- Data ID of the protected item.
- vaultId string
- ID of the vault which protects this item
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- healthDetails AzureIaa SVMHealth Details Response[] 
- Health details on this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_status str
- Health status of protected item.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- vault_id str
- ID of the vault which protects this item
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extended_properties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- health_details Sequence[AzureIaa SVMHealth Details Response] 
- Health details on this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String
- Health status of protected item.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem StringData Id 
- Data ID of the protected item.
- vaultId String
- ID of the vault which protects this item
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- healthDetails List<Property Map>
- Health details on this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureIaaSComputeVMProtectedItem, AzureIaaSComputeVMProtectedItemArgs          
IaaS VM workload-specific backup item representing the Azure Resource Manager VM.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties 
- Extended Properties for Azure IaasVM Backup.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extended_properties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureIaaSComputeVMProtectedItemResponse, AzureIaaSComputeVMProtectedItemResponseArgs            
IaaS VM workload-specific backup item representing the Azure Resource Manager VM.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string
- Health status of protected item.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- VaultId string
- ID of the vault which protects this item
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties Response 
- Extended Properties for Azure IaasVM Backup.
- HealthDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> 
- Health details on this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string
- Health status of protected item.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- VaultId string
- ID of the vault which protects this item
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- HealthDetails []AzureIaa SVMHealth Details Response 
- Health details on this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String
- Health status of protected item.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem StringData Id 
- Data ID of the protected item.
- vaultId String
- ID of the vault which protects this item
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- healthDetails List<AzureIaa SVMHealth Details Response> 
- Health details on this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthStatus string
- Health status of protected item.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem stringData Id 
- Data ID of the protected item.
- vaultId string
- ID of the vault which protects this item
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- healthDetails AzureIaa SVMHealth Details Response[] 
- Health details on this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_status str
- Health status of protected item.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- vault_id str
- ID of the vault which protects this item
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extended_properties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- health_details Sequence[AzureIaa SVMHealth Details Response] 
- Health details on this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String
- Health status of protected item.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem StringData Id 
- Data ID of the protected item.
- vaultId String
- ID of the vault which protects this item
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- healthDetails List<Property Map>
- Health details on this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureIaaSVMHealthDetailsResponse, AzureIaaSVMHealthDetailsResponseArgs          
Azure IaaS VM workload-specific Health Details.- Code int
- Health Code
- Message string
- Health Message
- Recommendations List<string>
- Health Recommended Actions
- Title string
- Health Title
- Code int
- Health Code
- Message string
- Health Message
- Recommendations []string
- Health Recommended Actions
- Title string
- Health Title
- code Integer
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
- code number
- Health Code
- message string
- Health Message
- recommendations string[]
- Health Recommended Actions
- title string
- Health Title
- code int
- Health Code
- message str
- Health Message
- recommendations Sequence[str]
- Health Recommended Actions
- title str
- Health Title
- code Number
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
AzureIaaSVMProtectedItem, AzureIaaSVMProtectedItemArgs        
IaaS VM workload-specific backup item.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties 
- Extended Properties for Azure IaasVM Backup.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extended_properties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureIaaSVMProtectedItemExtendedInfo, AzureIaaSVMProtectedItemExtendedInfoArgs            
Additional information on Azure IaaS VM specific backup item.- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyInconsistent Boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- newestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyInconsistent boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- newest_recovery_ strpoint_ in_ archive 
- The latest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item across all tiers.
- oldest_recovery_ strpoint_ in_ archive 
- The oldest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint_ in_ vault 
- The oldest backup copy available for this backup item in vault tier
- policy_inconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- recovery_point_ intcount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyInconsistent Boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint NumberCount 
- Number of backup copies available for this backup item.
AzureIaaSVMProtectedItemExtendedInfoResponse, AzureIaaSVMProtectedItemExtendedInfoResponseArgs              
Additional information on Azure IaaS VM specific backup item.- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyInconsistent Boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- newestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyInconsistent boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- newest_recovery_ strpoint_ in_ archive 
- The latest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item across all tiers.
- oldest_recovery_ strpoint_ in_ archive 
- The oldest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint_ in_ vault 
- The oldest backup copy available for this backup item in vault tier
- policy_inconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- recovery_point_ intcount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyInconsistent Boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint NumberCount 
- Number of backup copies available for this backup item.
AzureIaaSVMProtectedItemResponse, AzureIaaSVMProtectedItemResponseArgs          
IaaS VM workload-specific backup item.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string
- Health status of protected item.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- VaultId string
- ID of the vault which protects this item
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties Response 
- Extended Properties for Azure IaasVM Backup.
- HealthDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> 
- Health details on this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string
- Health status of protected item.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- VaultId string
- ID of the vault which protects this item
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- HealthDetails []AzureIaa SVMHealth Details Response 
- Health details on this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup stringStatus 
- Last backup operation status.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String
- Health status of protected item.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem StringData Id 
- Data ID of the protected item.
- vaultId String
- ID of the vault which protects this item
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- healthDetails List<AzureIaa SVMHealth Details Response> 
- Health details on this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthStatus string
- Health status of protected item.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem stringData Id 
- Data ID of the protected item.
- vaultId string
- ID of the vault which protects this item
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- healthDetails AzureIaa SVMHealth Details Response[] 
- Health details on this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup stringStatus 
- Last backup operation status.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_status str
- Health status of protected item.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- vault_id str
- ID of the vault which protects this item
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extended_properties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- health_details Sequence[AzureIaa SVMHealth Details Response] 
- Health details on this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ strstatus 
- Last backup operation status.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String
- Health status of protected item.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- protectedItem StringData Id 
- Data ID of the protected item.
- vaultId String
- ID of the vault which protects this item
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- healthDetails List<Property Map>
- Health details on this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup StringStatus 
- Last backup operation status.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureSqlProtectedItem, AzureSqlProtectedItemArgs        
Azure SQL workload-specific backup item.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Sql Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protected Item State 
- Backup state of the backed up item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- ProtectionState string | ProtectedItem State Enum 
- Backup state of the backed up item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protectionState String | ProtectedItem State 
- Backup state of the backed up item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protectionState string | ProtectedItem State 
- Backup state of the backed up item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection_state str | ProtectedItem State 
- Backup state of the backed up item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of the backed up item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureSqlProtectedItemExtendedInfo, AzureSqlProtectedItemExtendedInfoArgs            
Additional information on Azure Sql specific protected item.- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- State of the backup policy associated with this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- State of the backup policy associated with this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- State of the backup policy associated with this backup item.
- recoveryPoint IntegerCount 
- Number of available backup copies associated with this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- policyState string
- State of the backup policy associated with this backup item.
- recoveryPoint numberCount 
- Number of available backup copies associated with this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this item in the service.
- policy_state str
- State of the backup policy associated with this backup item.
- recovery_point_ intcount 
- Number of available backup copies associated with this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- State of the backup policy associated with this backup item.
- recoveryPoint NumberCount 
- Number of available backup copies associated with this backup item.
AzureSqlProtectedItemExtendedInfoResponse, AzureSqlProtectedItemExtendedInfoResponseArgs              
Additional information on Azure Sql specific protected item.- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- State of the backup policy associated with this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- PolicyState string
- State of the backup policy associated with this backup item.
- RecoveryPoint intCount 
- Number of available backup copies associated with this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- State of the backup policy associated with this backup item.
- recoveryPoint IntegerCount 
- Number of available backup copies associated with this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this item in the service.
- policyState string
- State of the backup policy associated with this backup item.
- recoveryPoint numberCount 
- Number of available backup copies associated with this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this item in the service.
- policy_state str
- State of the backup policy associated with this backup item.
- recovery_point_ intcount 
- Number of available backup copies associated with this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this item in the service.
- policyState String
- State of the backup policy associated with this backup item.
- recoveryPoint NumberCount 
- Number of available backup copies associated with this backup item.
AzureSqlProtectedItemResponse, AzureSqlProtectedItemResponseArgs          
Azure SQL workload-specific backup item.- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Sql Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- ProtectionState string
- Backup state of the backed up item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- ProtectionState string
- Backup state of the backed up item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protectionState String
- Backup state of the backed up item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protectionState string
- Backup state of the backed up item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection_state str
- Backup state of the backed up item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Id 
- Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protectionState String
- Backup state of the backed up item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadProtectedItem, AzureVmWorkloadProtectedItemArgs          
Azure VM workload-specific protected item.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup String | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | ProtectionState 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string | ProtectionState 
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ str | Laststatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ str | Protectedhealth_ status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str | ProtectionState 
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadProtectedItemExtendedInfo, AzureVmWorkloadProtectedItemExtendedInfoArgs              
Additional information on Azure Workload for SQL specific backup item.- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryModel string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryModel string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryModel String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- newestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryModel string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- newest_recovery_ strpoint_ in_ archive 
- The latest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item across all tiers.
- oldest_recovery_ strpoint_ in_ archive 
- The oldest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint_ in_ vault 
- The oldest backup copy available for this backup item in vault tier
- policy_state str
- Indicates consistency of policy object and policy applied to this backup item.
- recovery_model str
- Indicates consistency of policy object and policy applied to this backup item.
- recovery_point_ intcount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryModel String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint NumberCount 
- Number of backup copies available for this backup item.
AzureVmWorkloadProtectedItemExtendedInfoResponse, AzureVmWorkloadProtectedItemExtendedInfoResponseArgs                
Additional information on Azure Workload for SQL specific backup item.- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryModel string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- NewestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- OldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- OldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryModel string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryModel String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- newestRecovery stringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery stringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery stringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryModel string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- newest_recovery_ strpoint_ in_ archive 
- The latest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item across all tiers.
- oldest_recovery_ strpoint_ in_ archive 
- The oldest backup copy available for this backup item in archive tier
- oldest_recovery_ strpoint_ in_ vault 
- The oldest backup copy available for this backup item in vault tier
- policy_state str
- Indicates consistency of policy object and policy applied to this backup item.
- recovery_model str
- Indicates consistency of policy object and policy applied to this backup item.
- recovery_point_ intcount 
- Number of backup copies available for this backup item.
- newestRecovery StringPoint In Archive 
- The latest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item across all tiers.
- oldestRecovery StringPoint In Archive 
- The oldest backup copy available for this backup item in archive tier
- oldestRecovery StringPoint In Vault 
- The oldest backup copy available for this backup item in vault tier
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryModel String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint NumberCount 
- Number of backup copies available for this backup item.
AzureVmWorkloadProtectedItemResponse, AzureVmWorkloadProtectedItemResponseArgs            
Azure VM workload-specific protected item.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup ErrorError Detail Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info Response 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info Response> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- protectionStatus string
- Backup status of this backup item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info Response[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- protection_status str
- Backup status of this backup item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ Errorerror_ detail Detail Response 
- Error details in last backup
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info Response] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ strhealth_ status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup Property MapError Detail 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSAPAseDatabaseProtectedItem, AzureVmWorkloadSAPAseDatabaseProtectedItemArgs              
Azure VM workload-specific protected item representing SAP ASE Database.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup String | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | ProtectionState 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string | ProtectionState 
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ str | Laststatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ str | Protectedhealth_ status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str | ProtectionState 
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSAPAseDatabaseProtectedItemResponse, AzureVmWorkloadSAPAseDatabaseProtectedItemResponseArgs                
Azure VM workload-specific protected item representing SAP ASE Database.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup ErrorError Detail Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info Response 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info Response> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- protectionStatus string
- Backup status of this backup item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info Response[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- protection_status str
- Backup status of this backup item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ Errorerror_ detail Detail Response 
- Error details in last backup
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info Response] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ strhealth_ status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup Property MapError Detail 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDBInstanceProtectedItem, AzureVmWorkloadSAPHanaDBInstanceProtectedItemArgs              
Azure VM workload-specific protected item representing SAP HANA DBInstance.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup String | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | ProtectionState 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string | ProtectionState 
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ str | Laststatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ str | Protectedhealth_ status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str | ProtectionState 
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDBInstanceProtectedItemResponse, AzureVmWorkloadSAPHanaDBInstanceProtectedItemResponseArgs                
Azure VM workload-specific protected item representing SAP HANA DBInstance.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup ErrorError Detail Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info Response 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info Response> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- protectionStatus string
- Backup status of this backup item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info Response[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- protection_status str
- Backup status of this backup item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ Errorerror_ detail Detail Response 
- Error details in last backup
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info Response] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ strhealth_ status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup Property MapError Detail 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDatabaseProtectedItem, AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs              
Azure VM workload-specific protected item representing SAP HANA Database.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup String | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | ProtectionState 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string | ProtectionState 
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ str | Laststatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ str | Protectedhealth_ status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str | ProtectionState 
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDatabaseProtectedItemResponse, AzureVmWorkloadSAPHanaDatabaseProtectedItemResponseArgs                
Azure VM workload-specific protected item representing SAP HANA Database.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup ErrorError Detail Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info Response 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info Response> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- protectionStatus string
- Backup status of this backup item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info Response[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- protection_status str
- Backup status of this backup item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ Errorerror_ detail Detail Response 
- Error details in last backup
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info Response] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ strhealth_ status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup Property MapError Detail 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSQLDatabaseProtectedItem, AzureVmWorkloadSQLDatabaseProtectedItemArgs            
Azure VM workload-specific protected item representing SQL Database.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> 
- Health details of different KPIs
- LastBackup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details 
- Health details of different KPIs
- LastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details> 
- Health details of different KPIs
- lastBackup String | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | ProtectionState 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details} 
- Health details of different KPIs
- lastBackup string | LastStatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem string | ProtectedHealth Status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string | ProtectionState 
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details] 
- Health details of different KPIs
- last_backup_ str | Laststatus Backup Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ str | Protectedhealth_ status Item Health Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str | ProtectionState 
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
AzureVmWorkloadSQLDatabaseProtectedItemResponse, AzureVmWorkloadSQLDatabaseProtectedItemResponseArgs              
Azure VM workload-specific protected item representing SQL Database.- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> 
- Health details of different KPIs
- LastBackup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- KpisHealths map[string]KPIResourceHealth Details Response 
- Health details of different KPIs
- LastBackup ErrorError Detail Detail Response 
- Error details in last backup
- LastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- NodesList []DistributedNodes Info Response 
- List of the nodes in case of distributed container.
- ParentName string
- Parent name of the DB such as Instance or Availability Group.
- ParentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectedItem stringData Source Id 
- Data ID of the protected item.
- ProtectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- ServerName string
- Host/Cluster Name for instance or AG
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<String,KPIResourceHealth Details Response> 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<DistributedNodes Info Response> 
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- protectionStatus string
- Backup status of this backup item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths {[key: string]: KPIResourceHealth Details Response} 
- Health details of different KPIs
- lastBackup ErrorError Detail Detail Response 
- Error details in last backup
- lastBackup stringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList DistributedNodes Info Response[] 
- List of the nodes in case of distributed container.
- parentName string
- Parent name of the DB such as Instance or Availability Group.
- parentType string
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectedItem stringData Source Id 
- Data ID of the protected item.
- protectedItem stringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState string
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName string
- Host/Cluster Name for instance or AG
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- protection_status str
- Backup status of this backup item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpis_healths Mapping[str, KPIResourceHealth Details Response] 
- Health details of different KPIs
- last_backup_ Errorerror_ detail Detail Response 
- Error details in last backup
- last_backup_ strstatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_list Sequence[DistributedNodes Info Response] 
- List of the nodes in case of distributed container.
- parent_name str
- Parent name of the DB such as Instance or Availability Group.
- parent_type str
- Parent type of protected item, example: for a DB, standalone server or distributed
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protected_item_ strdata_ source_ id 
- Data ID of the protected item.
- protected_item_ strhealth_ status 
- Health status of the backup item, evaluated based on last heartbeat received
- protection_state str
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- server_name str
- Host/Cluster Name for instance or AG
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- protectionStatus String
- Backup status of this backup item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information for this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- kpisHealths Map<Property Map>
- Health details of different KPIs
- lastBackup Property MapError Detail 
- Error details in last backup
- lastBackup StringStatus 
- Last backup operation status. Possible values: Healthy, Unhealthy.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- nodesList List<Property Map>
- List of the nodes in case of distributed container.
- parentName String
- Parent name of the DB such as Instance or Availability Group.
- parentType String
- Parent type of protected item, example: for a DB, standalone server or distributed
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectedItem StringData Source Id 
- Data ID of the protected item.
- protectedItem StringHealth Status 
- Health status of the backup item, evaluated based on last heartbeat received
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- serverName String
- Host/Cluster Name for instance or AG
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
CreateMode, CreateModeArgs    
- Invalid
- Invalid
- Default
- Default
- Recover
- Recover
- CreateMode Invalid 
- Invalid
- CreateMode Default 
- Default
- CreateMode Recover 
- Recover
- Invalid
- Invalid
- Default
- Default
- Recover
- Recover
- Invalid
- Invalid
- Default
- Default
- Recover
- Recover
- INVALID
- Invalid
- DEFAULT
- Default
- RECOVER
- Recover
- "Invalid"
- Invalid
- "Default"
- Default
- "Recover"
- Recover
DPMProtectedItem, DPMProtectedItemArgs    
Additional information on Backup engine specific backup item.- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. DPMProtected Item Extended Info 
- Extended info of the backup item.
- FriendlyName string
- Friendly name of the managed item
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protected Item State 
- Protection state of the backup engine
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo DPMProtectedItem Extended Info 
- Extended info of the backup item.
- FriendlyName string
- Friendly name of the managed item
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string | ProtectedItem State Enum 
- Protection state of the backup engine
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo DPMProtectedItem Extended Info 
- Extended info of the backup item.
- friendlyName String
- Friendly name of the managed item
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | ProtectedItem State 
- Protection state of the backup engine
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupEngine stringName 
- Backup Management server protecting this backup item
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo DPMProtectedItem Extended Info 
- Extended info of the backup item.
- friendlyName string
- Friendly name of the managed item
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string | ProtectedItem State 
- Protection state of the backup engine
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_engine_ strname 
- Backup Management server protecting this backup item
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info DPMProtectedItem Extended Info 
- Extended info of the backup item.
- friendly_name str
- Friendly name of the managed item
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str | ProtectedItem State 
- Protection state of the backup engine
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Extended info of the backup item.
- friendlyName String
- Friendly name of the managed item
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Protection state of the backup engine
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
DPMProtectedItemExtendedInfo, DPMProtectedItemExtendedInfoArgs        
Additional information of DPM Protected item.- DiskStorage stringUsed In Bytes 
- Used Disk storage in bytes.
- IsCollocated bool
- To check if backup item is collocated.
- IsPresent boolOn Cloud 
- To check if backup item is cloud protected.
- LastBackup stringStatus 
- Last backup status information on backup item.
- LastRefreshed stringAt 
- Last refresh time on backup item.
- OldestRecovery stringPoint 
- Oldest cloud recovery point time.
- OnPremise stringLatest Recovery Point 
- latest disk recovery point time.
- OnPremise stringOldest Recovery Point 
- Oldest disk recovery point time.
- OnPremise intRecovery Point Count 
- disk recovery point count.
- ProtectableObject Dictionary<string, string>Load Path 
- Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- ProtectionGroup stringName 
- Protection group name of the backup item.
- RecoveryPoint intCount 
- cloud recovery point count.
- TotalDisk stringStorage Size In Bytes 
- total Disk storage in bytes.
- DiskStorage stringUsed In Bytes 
- Used Disk storage in bytes.
- IsCollocated bool
- To check if backup item is collocated.
- IsPresent boolOn Cloud 
- To check if backup item is cloud protected.
- LastBackup stringStatus 
- Last backup status information on backup item.
- LastRefreshed stringAt 
- Last refresh time on backup item.
- OldestRecovery stringPoint 
- Oldest cloud recovery point time.
- OnPremise stringLatest Recovery Point 
- latest disk recovery point time.
- OnPremise stringOldest Recovery Point 
- Oldest disk recovery point time.
- OnPremise intRecovery Point Count 
- disk recovery point count.
- ProtectableObject map[string]stringLoad Path 
- Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- ProtectionGroup stringName 
- Protection group name of the backup item.
- RecoveryPoint intCount 
- cloud recovery point count.
- TotalDisk stringStorage Size In Bytes 
- total Disk storage in bytes.
- diskStorage StringUsed In Bytes 
- Used Disk storage in bytes.
- isCollocated Boolean
- To check if backup item is collocated.
- isPresent BooleanOn Cloud 
- To check if backup item is cloud protected.
- lastBackup StringStatus 
- Last backup status information on backup item.
- lastRefreshed StringAt 
- Last refresh time on backup item.
- oldestRecovery StringPoint 
- Oldest cloud recovery point time.
- onPremise StringLatest Recovery Point 
- latest disk recovery point time.
- onPremise StringOldest Recovery Point 
- Oldest disk recovery point time.
- onPremise IntegerRecovery Point Count 
- disk recovery point count.
- protectableObject Map<String,String>Load Path 
- Attribute to provide information on various DBs.
- protected_ Boolean
- To check if backup item is disk protected.
- protectionGroup StringName 
- Protection group name of the backup item.
- recoveryPoint IntegerCount 
- cloud recovery point count.
- totalDisk StringStorage Size In Bytes 
- total Disk storage in bytes.
- diskStorage stringUsed In Bytes 
- Used Disk storage in bytes.
- isCollocated boolean
- To check if backup item is collocated.
- isPresent booleanOn Cloud 
- To check if backup item is cloud protected.
- lastBackup stringStatus 
- Last backup status information on backup item.
- lastRefreshed stringAt 
- Last refresh time on backup item.
- oldestRecovery stringPoint 
- Oldest cloud recovery point time.
- onPremise stringLatest Recovery Point 
- latest disk recovery point time.
- onPremise stringOldest Recovery Point 
- Oldest disk recovery point time.
- onPremise numberRecovery Point Count 
- disk recovery point count.
- protectableObject {[key: string]: string}Load Path 
- Attribute to provide information on various DBs.
- protected boolean
- To check if backup item is disk protected.
- protectionGroup stringName 
- Protection group name of the backup item.
- recoveryPoint numberCount 
- cloud recovery point count.
- totalDisk stringStorage Size In Bytes 
- total Disk storage in bytes.
- disk_storage_ strused_ in_ bytes 
- Used Disk storage in bytes.
- is_collocated bool
- To check if backup item is collocated.
- is_present_ boolon_ cloud 
- To check if backup item is cloud protected.
- last_backup_ strstatus 
- Last backup status information on backup item.
- last_refreshed_ strat 
- Last refresh time on backup item.
- oldest_recovery_ strpoint 
- Oldest cloud recovery point time.
- on_premise_ strlatest_ recovery_ point 
- latest disk recovery point time.
- on_premise_ stroldest_ recovery_ point 
- Oldest disk recovery point time.
- on_premise_ intrecovery_ point_ count 
- disk recovery point count.
- protectable_object_ Mapping[str, str]load_ path 
- Attribute to provide information on various DBs.
- protected bool
- To check if backup item is disk protected.
- protection_group_ strname 
- Protection group name of the backup item.
- recovery_point_ intcount 
- cloud recovery point count.
- total_disk_ strstorage_ size_ in_ bytes 
- total Disk storage in bytes.
- diskStorage StringUsed In Bytes 
- Used Disk storage in bytes.
- isCollocated Boolean
- To check if backup item is collocated.
- isPresent BooleanOn Cloud 
- To check if backup item is cloud protected.
- lastBackup StringStatus 
- Last backup status information on backup item.
- lastRefreshed StringAt 
- Last refresh time on backup item.
- oldestRecovery StringPoint 
- Oldest cloud recovery point time.
- onPremise StringLatest Recovery Point 
- latest disk recovery point time.
- onPremise StringOldest Recovery Point 
- Oldest disk recovery point time.
- onPremise NumberRecovery Point Count 
- disk recovery point count.
- protectableObject Map<String>Load Path 
- Attribute to provide information on various DBs.
- protected Boolean
- To check if backup item is disk protected.
- protectionGroup StringName 
- Protection group name of the backup item.
- recoveryPoint NumberCount 
- cloud recovery point count.
- totalDisk StringStorage Size In Bytes 
- total Disk storage in bytes.
DPMProtectedItemExtendedInfoResponse, DPMProtectedItemExtendedInfoResponseArgs          
Additional information of DPM Protected item.- DiskStorage stringUsed In Bytes 
- Used Disk storage in bytes.
- IsCollocated bool
- To check if backup item is collocated.
- IsPresent boolOn Cloud 
- To check if backup item is cloud protected.
- LastBackup stringStatus 
- Last backup status information on backup item.
- LastRefreshed stringAt 
- Last refresh time on backup item.
- OldestRecovery stringPoint 
- Oldest cloud recovery point time.
- OnPremise stringLatest Recovery Point 
- latest disk recovery point time.
- OnPremise stringOldest Recovery Point 
- Oldest disk recovery point time.
- OnPremise intRecovery Point Count 
- disk recovery point count.
- ProtectableObject Dictionary<string, string>Load Path 
- Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- ProtectionGroup stringName 
- Protection group name of the backup item.
- RecoveryPoint intCount 
- cloud recovery point count.
- TotalDisk stringStorage Size In Bytes 
- total Disk storage in bytes.
- DiskStorage stringUsed In Bytes 
- Used Disk storage in bytes.
- IsCollocated bool
- To check if backup item is collocated.
- IsPresent boolOn Cloud 
- To check if backup item is cloud protected.
- LastBackup stringStatus 
- Last backup status information on backup item.
- LastRefreshed stringAt 
- Last refresh time on backup item.
- OldestRecovery stringPoint 
- Oldest cloud recovery point time.
- OnPremise stringLatest Recovery Point 
- latest disk recovery point time.
- OnPremise stringOldest Recovery Point 
- Oldest disk recovery point time.
- OnPremise intRecovery Point Count 
- disk recovery point count.
- ProtectableObject map[string]stringLoad Path 
- Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- ProtectionGroup stringName 
- Protection group name of the backup item.
- RecoveryPoint intCount 
- cloud recovery point count.
- TotalDisk stringStorage Size In Bytes 
- total Disk storage in bytes.
- diskStorage StringUsed In Bytes 
- Used Disk storage in bytes.
- isCollocated Boolean
- To check if backup item is collocated.
- isPresent BooleanOn Cloud 
- To check if backup item is cloud protected.
- lastBackup StringStatus 
- Last backup status information on backup item.
- lastRefreshed StringAt 
- Last refresh time on backup item.
- oldestRecovery StringPoint 
- Oldest cloud recovery point time.
- onPremise StringLatest Recovery Point 
- latest disk recovery point time.
- onPremise StringOldest Recovery Point 
- Oldest disk recovery point time.
- onPremise IntegerRecovery Point Count 
- disk recovery point count.
- protectableObject Map<String,String>Load Path 
- Attribute to provide information on various DBs.
- protected_ Boolean
- To check if backup item is disk protected.
- protectionGroup StringName 
- Protection group name of the backup item.
- recoveryPoint IntegerCount 
- cloud recovery point count.
- totalDisk StringStorage Size In Bytes 
- total Disk storage in bytes.
- diskStorage stringUsed In Bytes 
- Used Disk storage in bytes.
- isCollocated boolean
- To check if backup item is collocated.
- isPresent booleanOn Cloud 
- To check if backup item is cloud protected.
- lastBackup stringStatus 
- Last backup status information on backup item.
- lastRefreshed stringAt 
- Last refresh time on backup item.
- oldestRecovery stringPoint 
- Oldest cloud recovery point time.
- onPremise stringLatest Recovery Point 
- latest disk recovery point time.
- onPremise stringOldest Recovery Point 
- Oldest disk recovery point time.
- onPremise numberRecovery Point Count 
- disk recovery point count.
- protectableObject {[key: string]: string}Load Path 
- Attribute to provide information on various DBs.
- protected boolean
- To check if backup item is disk protected.
- protectionGroup stringName 
- Protection group name of the backup item.
- recoveryPoint numberCount 
- cloud recovery point count.
- totalDisk stringStorage Size In Bytes 
- total Disk storage in bytes.
- disk_storage_ strused_ in_ bytes 
- Used Disk storage in bytes.
- is_collocated bool
- To check if backup item is collocated.
- is_present_ boolon_ cloud 
- To check if backup item is cloud protected.
- last_backup_ strstatus 
- Last backup status information on backup item.
- last_refreshed_ strat 
- Last refresh time on backup item.
- oldest_recovery_ strpoint 
- Oldest cloud recovery point time.
- on_premise_ strlatest_ recovery_ point 
- latest disk recovery point time.
- on_premise_ stroldest_ recovery_ point 
- Oldest disk recovery point time.
- on_premise_ intrecovery_ point_ count 
- disk recovery point count.
- protectable_object_ Mapping[str, str]load_ path 
- Attribute to provide information on various DBs.
- protected bool
- To check if backup item is disk protected.
- protection_group_ strname 
- Protection group name of the backup item.
- recovery_point_ intcount 
- cloud recovery point count.
- total_disk_ strstorage_ size_ in_ bytes 
- total Disk storage in bytes.
- diskStorage StringUsed In Bytes 
- Used Disk storage in bytes.
- isCollocated Boolean
- To check if backup item is collocated.
- isPresent BooleanOn Cloud 
- To check if backup item is cloud protected.
- lastBackup StringStatus 
- Last backup status information on backup item.
- lastRefreshed StringAt 
- Last refresh time on backup item.
- oldestRecovery StringPoint 
- Oldest cloud recovery point time.
- onPremise StringLatest Recovery Point 
- latest disk recovery point time.
- onPremise StringOldest Recovery Point 
- Oldest disk recovery point time.
- onPremise NumberRecovery Point Count 
- disk recovery point count.
- protectableObject Map<String>Load Path 
- Attribute to provide information on various DBs.
- protected Boolean
- To check if backup item is disk protected.
- protectionGroup StringName 
- Protection group name of the backup item.
- recoveryPoint NumberCount 
- cloud recovery point count.
- totalDisk StringStorage Size In Bytes 
- total Disk storage in bytes.
DPMProtectedItemResponse, DPMProtectedItemResponseArgs      
Additional information on Backup engine specific backup item.- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. DPMProtected Item Extended Info Response 
- Extended info of the backup item.
- FriendlyName string
- Friendly name of the managed item
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Protection state of the backup engine
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo DPMProtectedItem Extended Info Response 
- Extended info of the backup item.
- FriendlyName string
- Friendly name of the managed item
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Protection state of the backup engine
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo DPMProtectedItem Extended Info Response 
- Extended info of the backup item.
- friendlyName String
- Friendly name of the managed item
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Protection state of the backup engine
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupEngine stringName 
- Backup Management server protecting this backup item
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo DPMProtectedItem Extended Info Response 
- Extended info of the backup item.
- friendlyName string
- Friendly name of the managed item
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Protection state of the backup engine
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_engine_ strname 
- Backup Management server protecting this backup item
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info DPMProtectedItem Extended Info Response 
- Extended info of the backup item.
- friendly_name str
- Friendly name of the managed item
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Protection state of the backup engine
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Extended info of the backup item.
- friendlyName String
- Friendly name of the managed item
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Protection state of the backup engine
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
DiskExclusionProperties, DiskExclusionPropertiesArgs      
- DiskLun List<int>List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- IsInclusion boolList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- DiskLun []intList 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- IsInclusion boolList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- diskLun List<Integer>List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- isInclusion BooleanList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- diskLun number[]List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- isInclusion booleanList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk_lun_ Sequence[int]list 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is_inclusion_ boollist 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- diskLun List<Number>List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- isInclusion BooleanList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
DiskExclusionPropertiesResponse, DiskExclusionPropertiesResponseArgs        
- DiskLun List<int>List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- IsInclusion boolList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- DiskLun []intList 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- IsInclusion boolList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- diskLun List<Integer>List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- isInclusion BooleanList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- diskLun number[]List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- isInclusion booleanList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk_lun_ Sequence[int]list 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is_inclusion_ boollist 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- diskLun List<Number>List 
- List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- isInclusion BooleanList 
- Flag to indicate whether DiskLunList is to be included/ excluded from backup.
DistributedNodesInfo, DistributedNodesInfoArgs      
This is used to represent the various nodes of the distributed container.- NodeName string
- Name of the node under a distributed container.
- SourceResource stringId 
- ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- NodeName string
- Name of the node under a distributed container.
- SourceResource stringId 
- ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- nodeName String
- Name of the node under a distributed container.
- sourceResource StringId 
- ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
- nodeName string
- Name of the node under a distributed container.
- sourceResource stringId 
- ARM resource id of the node
- status string
- Status of this Node. Failed | Succeeded
- node_name str
- Name of the node under a distributed container.
- source_resource_ strid 
- ARM resource id of the node
- status str
- Status of this Node. Failed | Succeeded
- nodeName String
- Name of the node under a distributed container.
- sourceResource StringId 
- ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
DistributedNodesInfoResponse, DistributedNodesInfoResponseArgs        
This is used to represent the various nodes of the distributed container.- ErrorDetail Pulumi.Azure Native. Recovery Services. Inputs. Error Detail Response 
- Error Details if the Status is non-success.
- NodeName string
- Name of the node under a distributed container.
- SourceResource stringId 
- ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- ErrorDetail ErrorDetail Response 
- Error Details if the Status is non-success.
- NodeName string
- Name of the node under a distributed container.
- SourceResource stringId 
- ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- errorDetail ErrorDetail Response 
- Error Details if the Status is non-success.
- nodeName String
- Name of the node under a distributed container.
- sourceResource StringId 
- ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
- errorDetail ErrorDetail Response 
- Error Details if the Status is non-success.
- nodeName string
- Name of the node under a distributed container.
- sourceResource stringId 
- ARM resource id of the node
- status string
- Status of this Node. Failed | Succeeded
- error_detail ErrorDetail Response 
- Error Details if the Status is non-success.
- node_name str
- Name of the node under a distributed container.
- source_resource_ strid 
- ARM resource id of the node
- status str
- Status of this Node. Failed | Succeeded
- errorDetail Property Map
- Error Details if the Status is non-success.
- nodeName String
- Name of the node under a distributed container.
- sourceResource StringId 
- ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
ErrorDetailResponse, ErrorDetailResponseArgs      
Error Detail class which encapsulates Code, Message and Recommendations.- Code string
- Error code.
- Message string
- Error Message related to the Code.
- Recommendations List<string>
- List of recommendation strings.
- Code string
- Error code.
- Message string
- Error Message related to the Code.
- Recommendations []string
- List of recommendation strings.
- code String
- Error code.
- message String
- Error Message related to the Code.
- recommendations List<String>
- List of recommendation strings.
- code string
- Error code.
- message string
- Error Message related to the Code.
- recommendations string[]
- List of recommendation strings.
- code str
- Error code.
- message str
- Error Message related to the Code.
- recommendations Sequence[str]
- List of recommendation strings.
- code String
- Error code.
- message String
- Error Message related to the Code.
- recommendations List<String>
- List of recommendation strings.
ExtendedProperties, ExtendedPropertiesArgs    
Extended Properties for Azure IaasVM Backup.- DiskExclusion Pulumi.Properties Azure Native. Recovery Services. Inputs. Disk Exclusion Properties 
- Extended Properties for Disk Exclusion.
- LinuxVm stringApplication Name 
- Linux VM name
- DiskExclusion DiskProperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- LinuxVm stringApplication Name 
- Linux VM name
- diskExclusion DiskProperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- linuxVm StringApplication Name 
- Linux VM name
- diskExclusion DiskProperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- linuxVm stringApplication Name 
- Linux VM name
- disk_exclusion_ Diskproperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- linux_vm_ strapplication_ name 
- Linux VM name
- diskExclusion Property MapProperties 
- Extended Properties for Disk Exclusion.
- linuxVm StringApplication Name 
- Linux VM name
ExtendedPropertiesResponse, ExtendedPropertiesResponseArgs      
Extended Properties for Azure IaasVM Backup.- DiskExclusion Pulumi.Properties Azure Native. Recovery Services. Inputs. Disk Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- LinuxVm stringApplication Name 
- Linux VM name
- DiskExclusion DiskProperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- LinuxVm stringApplication Name 
- Linux VM name
- diskExclusion DiskProperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- linuxVm StringApplication Name 
- Linux VM name
- diskExclusion DiskProperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- linuxVm stringApplication Name 
- Linux VM name
- disk_exclusion_ Diskproperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- linux_vm_ strapplication_ name 
- Linux VM name
- diskExclusion Property MapProperties 
- Extended Properties for Disk Exclusion.
- linuxVm StringApplication Name 
- Linux VM name
GenericProtectedItem, GenericProtectedItemArgs      
Base class for backup items.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- ProtectedItem doubleId 
- Data Plane Service ID of the protected item.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceAssociations Dictionary<string, string>
- Loosely coupled (type, value) associations (example - parent of a protected item)
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- ProtectedItem float64Id 
- Data Plane Service ID of the protected item.
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceAssociations map[string]string
- Loosely coupled (type, value) associations (example - parent of a protected item)
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- protectedItem DoubleId 
- Data Plane Service ID of the protected item.
- protectionState String | ProtectionState 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceAssociations Map<String,String>
- Loosely coupled (type, value) associations (example - parent of a protected item)
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabricName string
- Name of this backup item's fabric.
- friendlyName string
- Friendly name of the container.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- protectedItem numberId 
- Data Plane Service ID of the protected item.
- protectionState string | ProtectionState 
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceAssociations {[key: string]: string}
- Loosely coupled (type, value) associations (example - parent of a protected item)
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabric_name str
- Name of this backup item's fabric.
- friendly_name str
- Friendly name of the container.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- policy_state str
- Indicates consistency of policy object and policy applied to this backup item.
- protected_item_ floatid 
- Data Plane Service ID of the protected item.
- protection_state str | ProtectionState 
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_associations Mapping[str, str]
- Loosely coupled (type, value) associations (example - parent of a protected item)
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- protectedItem NumberId 
- Data Plane Service ID of the protected item.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" 
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceAssociations Map<String>
- Loosely coupled (type, value) associations (example - parent of a protected item)
- sourceResource StringId 
- ARM ID of the resource to be backed up.
GenericProtectedItemResponse, GenericProtectedItemResponseArgs        
Base class for backup items.- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- ProtectedItem doubleId 
- Data Plane Service ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceAssociations Dictionary<string, string>
- Loosely coupled (type, value) associations (example - parent of a protected item)
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- ProtectedItem float64Id 
- Data Plane Service ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceAssociations map[string]string
- Loosely coupled (type, value) associations (example - parent of a protected item)
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- protectedItem DoubleId 
- Data Plane Service ID of the protected item.
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceAssociations Map<String,String>
- Loosely coupled (type, value) associations (example - parent of a protected item)
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabricName string
- Name of this backup item's fabric.
- friendlyName string
- Friendly name of the container.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- protectedItem numberId 
- Data Plane Service ID of the protected item.
- protectionState string
- Backup state of this backup item.
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceAssociations {[key: string]: string}
- Loosely coupled (type, value) associations (example - parent of a protected item)
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabric_name str
- Name of this backup item's fabric.
- friendly_name str
- Friendly name of the container.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- policy_state str
- Indicates consistency of policy object and policy applied to this backup item.
- protected_item_ floatid 
- Data Plane Service ID of the protected item.
- protection_state str
- Backup state of this backup item.
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_associations Mapping[str, str]
- Loosely coupled (type, value) associations (example - parent of a protected item)
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- protectedItem NumberId 
- Data Plane Service ID of the protected item.
- protectionState String
- Backup state of this backup item.
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceAssociations Map<String>
- Loosely coupled (type, value) associations (example - parent of a protected item)
- sourceResource StringId 
- ARM ID of the resource to be backed up.
KPIResourceHealthDetails, KPIResourceHealthDetailsArgs      
KPI Resource Health Details- ResourceHealth string | Pulumi.Status Azure Native. Recovery Services. Resource Health Status 
- Resource Health Status
- ResourceHealth string | ResourceStatus Health Status 
- Resource Health Status
- resourceHealth String | ResourceStatus Health Status 
- Resource Health Status
- resourceHealth string | ResourceStatus Health Status 
- Resource Health Status
- resource_health_ str | Resourcestatus Health Status 
- Resource Health Status
KPIResourceHealthDetailsResponse, KPIResourceHealthDetailsResponseArgs        
KPI Resource Health Details- ResourceHealth List<Pulumi.Details Azure Native. Recovery Services. Inputs. Resource Health Details Response> 
- Resource Health Status
- ResourceHealth stringStatus 
- Resource Health Status
- ResourceHealth []ResourceDetails Health Details Response 
- Resource Health Status
- ResourceHealth stringStatus 
- Resource Health Status
- resourceHealth List<ResourceDetails Health Details Response> 
- Resource Health Status
- resourceHealth StringStatus 
- Resource Health Status
- resourceHealth ResourceDetails Health Details Response[] 
- Resource Health Status
- resourceHealth stringStatus 
- Resource Health Status
- resource_health_ Sequence[Resourcedetails Health Details Response] 
- Resource Health Status
- resource_health_ strstatus 
- Resource Health Status
- resourceHealth List<Property Map>Details 
- Resource Health Status
- resourceHealth StringStatus 
- Resource Health Status
LastBackupStatus, LastBackupStatusArgs      
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- IRPending
- IRPending
- LastBackup Status Invalid 
- Invalid
- LastBackup Status Healthy 
- Healthy
- LastBackup Status Unhealthy 
- Unhealthy
- LastBackup Status IRPending 
- IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- IRPending
- IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- IRPending
- IRPending
- INVALID
- Invalid
- HEALTHY
- Healthy
- UNHEALTHY
- Unhealthy
- IR_PENDING
- IRPending
- "Invalid"
- Invalid
- "Healthy"
- Healthy
- "Unhealthy"
- Unhealthy
- "IRPending"
- IRPending
MabFileFolderProtectedItem, MabFileFolderProtectedItemArgs          
MAB workload-specific backup item.- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ComputerName string
- Name of the computer associated with this backup item.
- ContainerName string
- Unique name of container
- CreateMode string | Pulumi.Azure Native. Recovery Services. Create Mode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete doubleSync Time In UTC 
- Sync time for deferred deletion in UTC
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Mab File Folder Protected Item Extended Info 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastBackup stringStatus 
- Status of last backup operation.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ComputerName string
- Name of the computer associated with this backup item.
- ContainerName string
- Unique name of container
- CreateMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete float64Sync Time In UTC 
- Sync time for deferred deletion in UTC
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo MabFile Folder Protected Item Extended Info 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastBackup stringStatus 
- Status of last backup operation.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- computerName String
- Name of the computer associated with this backup item.
- containerName String
- Unique name of container
- createMode String | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete DoubleSync Time In UTC 
- Sync time for deferred deletion in UTC
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo MabFile Folder Protected Item Extended Info 
- Additional information with this backup item.
- friendlyName String
- Friendly name of this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastBackup StringStatus 
- Status of last backup operation.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- computerName string
- Name of the computer associated with this backup item.
- containerName string
- Unique name of container
- createMode string | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete numberSync Time In UTC 
- Sync time for deferred deletion in UTC
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo MabFile Folder Protected Item Extended Info 
- Additional information with this backup item.
- friendlyName string
- Friendly name of this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastBackup stringStatus 
- Status of last backup operation.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- computer_name str
- Name of the computer associated with this backup item.
- container_name str
- Unique name of container
- create_mode str | CreateMode 
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ floatsync_ time_ in_ utc 
- Sync time for deferred deletion in UTC
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info MabFile Folder Protected Item Extended Info 
- Additional information with this backup item.
- friendly_name str
- Friendly name of this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_backup_ strstatus 
- Status of last backup operation.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Protected, ProtectionStopped, IRPending or ProtectionError
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- computerName String
- Name of the computer associated with this backup item.
- containerName String
- Unique name of container
- createMode String | "Invalid" | "Default" | "Recover"
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete NumberSync Time In UTC 
- Sync time for deferred deletion in UTC
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information with this backup item.
- friendlyName String
- Friendly name of this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastBackup StringStatus 
- Status of last backup operation.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
MabFileFolderProtectedItemExtendedInfo, MabFileFolderProtectedItemExtendedInfoArgs              
Additional information on the backed up item.- LastRefreshed stringAt 
- Last time when the agent data synced to service.
- OldestRecovery stringPoint 
- The oldest backup copy available.
- RecoveryPoint intCount 
- Number of backup copies associated with the backup item.
- LastRefreshed stringAt 
- Last time when the agent data synced to service.
- OldestRecovery stringPoint 
- The oldest backup copy available.
- RecoveryPoint intCount 
- Number of backup copies associated with the backup item.
- lastRefreshed StringAt 
- Last time when the agent data synced to service.
- oldestRecovery StringPoint 
- The oldest backup copy available.
- recoveryPoint IntegerCount 
- Number of backup copies associated with the backup item.
- lastRefreshed stringAt 
- Last time when the agent data synced to service.
- oldestRecovery stringPoint 
- The oldest backup copy available.
- recoveryPoint numberCount 
- Number of backup copies associated with the backup item.
- last_refreshed_ strat 
- Last time when the agent data synced to service.
- oldest_recovery_ strpoint 
- The oldest backup copy available.
- recovery_point_ intcount 
- Number of backup copies associated with the backup item.
- lastRefreshed StringAt 
- Last time when the agent data synced to service.
- oldestRecovery StringPoint 
- The oldest backup copy available.
- recoveryPoint NumberCount 
- Number of backup copies associated with the backup item.
MabFileFolderProtectedItemExtendedInfoResponse, MabFileFolderProtectedItemExtendedInfoResponseArgs                
Additional information on the backed up item.- LastRefreshed stringAt 
- Last time when the agent data synced to service.
- OldestRecovery stringPoint 
- The oldest backup copy available.
- RecoveryPoint intCount 
- Number of backup copies associated with the backup item.
- LastRefreshed stringAt 
- Last time when the agent data synced to service.
- OldestRecovery stringPoint 
- The oldest backup copy available.
- RecoveryPoint intCount 
- Number of backup copies associated with the backup item.
- lastRefreshed StringAt 
- Last time when the agent data synced to service.
- oldestRecovery StringPoint 
- The oldest backup copy available.
- recoveryPoint IntegerCount 
- Number of backup copies associated with the backup item.
- lastRefreshed stringAt 
- Last time when the agent data synced to service.
- oldestRecovery stringPoint 
- The oldest backup copy available.
- recoveryPoint numberCount 
- Number of backup copies associated with the backup item.
- last_refreshed_ strat 
- Last time when the agent data synced to service.
- oldest_recovery_ strpoint 
- The oldest backup copy available.
- recovery_point_ intcount 
- Number of backup copies associated with the backup item.
- lastRefreshed StringAt 
- Last time when the agent data synced to service.
- oldestRecovery StringPoint 
- The oldest backup copy available.
- recoveryPoint NumberCount 
- Number of backup copies associated with the backup item.
MabFileFolderProtectedItemResponse, MabFileFolderProtectedItemResponseArgs            
MAB workload-specific backup item.- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ComputerName string
- Name of the computer associated with this backup item.
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete doubleSync Time In UTC 
- Sync time for deferred deletion in UTC
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo Pulumi.Azure Native. Recovery Services. Inputs. Mab File Folder Protected Item Extended Info Response 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastBackup stringStatus 
- Status of last backup operation.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- ResourceGuard List<string>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- BackupManagement stringType 
- Type of backup management for the backed up item.
- VaultId string
- ID of the vault which protects this item
- WorkloadType string
- Type of workload this item represents.
- BackupSet stringName 
- Name of the backup set the backup item belongs to
- ComputerName string
- Name of the computer associated with this backup item.
- ContainerName string
- Unique name of container
- CreateMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- DeferredDelete float64Sync Time In UTC 
- Sync time for deferred deletion in UTC
- DeferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- DeferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- ExtendedInfo MabFile Folder Protected Item Extended Info Response 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of this backup item.
- IsArchive boolEnabled 
- Flag to identify whether datasource is protected in archive
- IsDeferred boolDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- IsRehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- IsScheduled boolFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- LastBackup stringStatus 
- Status of last backup operation.
- LastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- LastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- PolicyId string
- ID of the backup policy with which this item is backed up.
- PolicyName string
- Name of the policy used for protection
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- ResourceGuard []stringOperation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- SoftDelete intRetention Period In Days 
- Soft delete retention period in days
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- computerName String
- Name of the computer associated with this backup item.
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete DoubleSync Time In UTC 
- Sync time for deferred deletion in UTC
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo MabFile Folder Protected Item Extended Info Response 
- Additional information with this backup item.
- friendlyName String
- Friendly name of this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastBackup StringStatus 
- Status of last backup operation.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete IntegerRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- backupManagement stringType 
- Type of backup management for the backed up item.
- vaultId string
- ID of the vault which protects this item
- workloadType string
- Type of workload this item represents.
- backupSet stringName 
- Name of the backup set the backup item belongs to
- computerName string
- Name of the computer associated with this backup item.
- containerName string
- Unique name of container
- createMode string
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete numberSync Time In UTC 
- Sync time for deferred deletion in UTC
- deferredDelete stringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete stringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo MabFile Folder Protected Item Extended Info Response 
- Additional information with this backup item.
- friendlyName string
- Friendly name of this backup item.
- isArchive booleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred booleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled booleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastBackup stringStatus 
- Status of last backup operation.
- lastBackup stringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery stringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId string
- ID of the backup policy with which this item is backed up.
- policyName string
- Name of the policy used for protection
- protectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- resourceGuard string[]Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete numberRetention Period In Days 
- Soft delete retention period in days
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- vault_id str
- ID of the vault which protects this item
- workload_type str
- Type of workload this item represents.
- backup_set_ strname 
- Name of the backup set the backup item belongs to
- computer_name str
- Name of the computer associated with this backup item.
- container_name str
- Unique name of container
- create_mode str
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_delete_ floatsync_ time_ in_ utc 
- Sync time for deferred deletion in UTC
- deferred_delete_ strtime_ in_ utc 
- Time for deferred deletion in UTC
- deferred_delete_ strtime_ remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extended_info MabFile Folder Protected Item Extended Info Response 
- Additional information with this backup item.
- friendly_name str
- Friendly name of this backup item.
- is_archive_ boolenabled 
- Flag to identify whether datasource is protected in archive
- is_deferred_ booldelete_ schedule_ upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- is_rehydrate bool
- Flag to identify that deferred deleted DS is to be moved into Pause state
- is_scheduled_ boolfor_ deferred_ delete 
- Flag to identify whether the DS is scheduled for deferred delete
- last_backup_ strstatus 
- Status of last backup operation.
- last_backup_ strtime 
- Timestamp of the last backup operation on this backup item.
- last_recovery_ strpoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policy_id str
- ID of the backup policy with which this item is backed up.
- policy_name str
- Name of the policy used for protection
- protection_state str
- Protected, ProtectionStopped, IRPending or ProtectionError
- resource_guard_ Sequence[str]operation_ requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- soft_delete_ intretention_ period_ in_ days 
- Soft delete retention period in days
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- backupManagement StringType 
- Type of backup management for the backed up item.
- vaultId String
- ID of the vault which protects this item
- workloadType String
- Type of workload this item represents.
- backupSet StringName 
- Name of the backup set the backup item belongs to
- computerName String
- Name of the computer associated with this backup item.
- containerName String
- Unique name of container
- createMode String
- Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferredDelete NumberSync Time In UTC 
- Sync time for deferred deletion in UTC
- deferredDelete StringTime In UTC 
- Time for deferred deletion in UTC
- deferredDelete StringTime Remaining 
- Time remaining before the DS marked for deferred delete is permanently deleted
- extendedInfo Property Map
- Additional information with this backup item.
- friendlyName String
- Friendly name of this backup item.
- isArchive BooleanEnabled 
- Flag to identify whether datasource is protected in archive
- isDeferred BooleanDelete Schedule Upcoming 
- Flag to identify whether the deferred deleted DS is to be purged soon
- isRehydrate Boolean
- Flag to identify that deferred deleted DS is to be moved into Pause state
- isScheduled BooleanFor Deferred Delete 
- Flag to identify whether the DS is scheduled for deferred delete
- lastBackup StringStatus 
- Status of last backup operation.
- lastBackup StringTime 
- Timestamp of the last backup operation on this backup item.
- lastRecovery StringPoint 
- Timestamp when the last (latest) backup copy was created for this backup item.
- policyId String
- ID of the backup policy with which this item is backed up.
- policyName String
- Name of the policy used for protection
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- resourceGuard List<String>Operation Requests 
- ResourceGuardOperationRequests on which LAC check will be performed
- softDelete NumberRetention Period In Days 
- Soft delete retention period in days
- sourceResource StringId 
- ARM ID of the resource to be backed up.
ProtectedItemHealthStatus, ProtectedItemHealthStatusArgs        
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- NotReachable 
- NotReachable
- IRPending
- IRPending
- ProtectedItem Health Status Invalid 
- Invalid
- ProtectedItem Health Status Healthy 
- Healthy
- ProtectedItem Health Status Unhealthy 
- Unhealthy
- ProtectedItem Health Status Not Reachable 
- NotReachable
- ProtectedItem Health Status IRPending 
- IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- NotReachable 
- NotReachable
- IRPending
- IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- NotReachable 
- NotReachable
- IRPending
- IRPending
- INVALID
- Invalid
- HEALTHY
- Healthy
- UNHEALTHY
- Unhealthy
- NOT_REACHABLE
- NotReachable
- IR_PENDING
- IRPending
- "Invalid"
- Invalid
- "Healthy"
- Healthy
- "Unhealthy"
- Unhealthy
- "NotReachable" 
- NotReachable
- "IRPending"
- IRPending
ProtectedItemState, ProtectedItemStateArgs      
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- BackupsSuspended 
- BackupsSuspended
- ProtectedItem State Invalid 
- Invalid
- ProtectedItem State IRPending 
- IRPending
- ProtectedItem State Protected 
- Protected
- ProtectedItem State Protection Error 
- ProtectionError
- ProtectedItem State Protection Stopped 
- ProtectionStopped
- ProtectedItem State Protection Paused 
- ProtectionPaused
- ProtectedItem State Backups Suspended 
- BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- BackupsSuspended 
- BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- BackupsSuspended 
- BackupsSuspended
- INVALID
- Invalid
- IR_PENDING
- IRPending
- PROTECTED
- Protected
- PROTECTION_ERROR
- ProtectionError
- PROTECTION_STOPPED
- ProtectionStopped
- PROTECTION_PAUSED
- ProtectionPaused
- BACKUPS_SUSPENDED
- BackupsSuspended
- "Invalid"
- Invalid
- "IRPending"
- IRPending
- "Protected"
- Protected
- "ProtectionError" 
- ProtectionError
- "ProtectionStopped" 
- ProtectionStopped
- "ProtectionPaused" 
- ProtectionPaused
- "BackupsSuspended" 
- BackupsSuspended
ProtectionState, ProtectionStateArgs    
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- BackupsSuspended 
- BackupsSuspended
- ProtectionState Invalid 
- Invalid
- ProtectionState IRPending 
- IRPending
- ProtectionState Protected 
- Protected
- ProtectionState Protection Error 
- ProtectionError
- ProtectionState Protection Stopped 
- ProtectionStopped
- ProtectionState Protection Paused 
- ProtectionPaused
- ProtectionState Backups Suspended 
- BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- BackupsSuspended 
- BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- BackupsSuspended 
- BackupsSuspended
- INVALID
- Invalid
- IR_PENDING
- IRPending
- PROTECTED
- Protected
- PROTECTION_ERROR
- ProtectionError
- PROTECTION_STOPPED
- ProtectionStopped
- PROTECTION_PAUSED
- ProtectionPaused
- BACKUPS_SUSPENDED
- BackupsSuspended
- "Invalid"
- Invalid
- "IRPending"
- IRPending
- "Protected"
- Protected
- "ProtectionError" 
- ProtectionError
- "ProtectionStopped" 
- ProtectionStopped
- "ProtectionPaused" 
- ProtectionPaused
- "BackupsSuspended" 
- BackupsSuspended
ResourceHealthDetailsResponse, ResourceHealthDetailsResponseArgs        
Health Details for backup items.- Code int
- Health Code
- Message string
- Health Message
- Recommendations List<string>
- Health Recommended Actions
- Title string
- Health Title
- Code int
- Health Code
- Message string
- Health Message
- Recommendations []string
- Health Recommended Actions
- Title string
- Health Title
- code Integer
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
- code number
- Health Code
- message string
- Health Message
- recommendations string[]
- Health Recommended Actions
- title string
- Health Title
- code int
- Health Code
- message str
- Health Message
- recommendations Sequence[str]
- Health Recommended Actions
- title str
- Health Title
- code Number
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
ResourceHealthStatus, ResourceHealthStatusArgs      
- Healthy
- Healthy
- TransientDegraded 
- TransientDegraded
- PersistentDegraded 
- PersistentDegraded
- TransientUnhealthy 
- TransientUnhealthy
- PersistentUnhealthy 
- PersistentUnhealthy
- Invalid
- Invalid
- ResourceHealth Status Healthy 
- Healthy
- ResourceHealth Status Transient Degraded 
- TransientDegraded
- ResourceHealth Status Persistent Degraded 
- PersistentDegraded
- ResourceHealth Status Transient Unhealthy 
- TransientUnhealthy
- ResourceHealth Status Persistent Unhealthy 
- PersistentUnhealthy
- ResourceHealth Status Invalid 
- Invalid
- Healthy
- Healthy
- TransientDegraded 
- TransientDegraded
- PersistentDegraded 
- PersistentDegraded
- TransientUnhealthy 
- TransientUnhealthy
- PersistentUnhealthy 
- PersistentUnhealthy
- Invalid
- Invalid
- Healthy
- Healthy
- TransientDegraded 
- TransientDegraded
- PersistentDegraded 
- PersistentDegraded
- TransientUnhealthy 
- TransientUnhealthy
- PersistentUnhealthy 
- PersistentUnhealthy
- Invalid
- Invalid
- HEALTHY
- Healthy
- TRANSIENT_DEGRADED
- TransientDegraded
- PERSISTENT_DEGRADED
- PersistentDegraded
- TRANSIENT_UNHEALTHY
- TransientUnhealthy
- PERSISTENT_UNHEALTHY
- PersistentUnhealthy
- INVALID
- Invalid
- "Healthy"
- Healthy
- "TransientDegraded" 
- TransientDegraded
- "PersistentDegraded" 
- PersistentDegraded
- "TransientUnhealthy" 
- TransientUnhealthy
- "PersistentUnhealthy" 
- PersistentUnhealthy
- "Invalid"
- Invalid
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:recoveryservices:ProtectedItem VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupFabrics/{fabricName}/protectionContainers/{containerName}/protectedItems/{protectedItemName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
