azure-native.recoveryservices.ProtectedItem
Explore with Pulumi AI
Base class for backup items. API Version: 2021-02-01.
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"
	"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.AzureIaaSComputeVMProtectedItem{
				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: 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(Map.ofEntries(
                Map.entry("policyId", "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy"),
                Map.entry("protectedItemType", "Microsoft.Compute/virtualMachines"),
                Map.entry("sourceResourceId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1")
            ))
            .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=azure_native.recoveryservices.AzureIaaSComputeVMProtectedItemArgs(
        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 = "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"
	"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.AzureIaaSComputeVMProtectedItem{
				ProtectedItemType: "Microsoft.Compute/virtualMachines",
				ProtectionState:   "ProtectionStopped",
				SourceResourceId:  "/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(Map.ofEntries(
                Map.entry("protectedItemType", "Microsoft.Compute/virtualMachines"),
                Map.entry("protectionState", "ProtectionStopped"),
                Map.entry("sourceResourceId", "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1")
            ))
            .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: "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=azure_native.recoveryservices.AzureIaaSComputeVMProtectedItemArgs(
        protected_item_type="Microsoft.Compute/virtualMachines",
        protection_state="ProtectionStopped",
        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, 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 protectedItemResource = new AzureNative.Recoveryservices.ProtectedItem("protectedItemResource", new()
{
    ContainerName = "string",
    FabricName = "string",
    ResourceGroupName = "string",
    VaultName = "string",
    ETag = "string",
    Location = "string",
    Properties = 
    {
        { "protectedItemType", "AzureFileShareProtectedItem" },
        { "isScheduledForDeferredDelete", false },
        { "protectionStatus", "string" },
        { "createMode", "string" },
        { "deferredDeleteTimeInUTC", "string" },
        { "deferredDeleteTimeRemaining", "string" },
        { "extendedInfo", 
        {
            { "oldestRecoveryPoint", "string" },
            { "policyState", "string" },
            { "recoveryPointCount", 0 },
        } },
        { "friendlyName", "string" },
        { "kpisHealths", 
        {
            { "string", 
            {
                { "resourceHealthStatus", "string" },
            } },
        } },
        { "workloadType", "string" },
        { "containerName", "string" },
        { "isDeferredDeleteScheduleUpcoming", false },
        { "lastBackupStatus", "string" },
        { "lastBackupTime", "string" },
        { "lastRecoveryPoint", "string" },
        { "policyId", "string" },
        { "backupSetName", "string" },
        { "protectionState", "string" },
        { "backupManagementType", "string" },
        { "sourceResourceId", "string" },
        { "isRehydrate", false },
    },
    ProtectedItemName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := recoveryservices.NewProtectedItem(ctx, "protectedItemResource", &recoveryservices.ProtectedItemArgs{
	ContainerName:     "string",
	FabricName:        "string",
	ResourceGroupName: "string",
	VaultName:         "string",
	ETag:              "string",
	Location:          "string",
	Properties: map[string]interface{}{
		"protectedItemType":            "AzureFileShareProtectedItem",
		"isScheduledForDeferredDelete": false,
		"protectionStatus":             "string",
		"createMode":                   "string",
		"deferredDeleteTimeInUTC":      "string",
		"deferredDeleteTimeRemaining":  "string",
		"extendedInfo": map[string]interface{}{
			"oldestRecoveryPoint": "string",
			"policyState":         "string",
			"recoveryPointCount":  0,
		},
		"friendlyName": "string",
		"kpisHealths": map[string]interface{}{
			"string": map[string]interface{}{
				"resourceHealthStatus": "string",
			},
		},
		"workloadType":                     "string",
		"containerName":                    "string",
		"isDeferredDeleteScheduleUpcoming": false,
		"lastBackupStatus":                 "string",
		"lastBackupTime":                   "string",
		"lastRecoveryPoint":                "string",
		"policyId":                         "string",
		"backupSetName":                    "string",
		"protectionState":                  "string",
		"backupManagementType":             "string",
		"sourceResourceId":                 "string",
		"isRehydrate":                      false,
	},
	ProtectedItemName: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
var protectedItemResource = new ProtectedItem("protectedItemResource", ProtectedItemArgs.builder()
    .containerName("string")
    .fabricName("string")
    .resourceGroupName("string")
    .vaultName("string")
    .eTag("string")
    .location("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .protectedItemName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
protected_item_resource = azure_native.recoveryservices.ProtectedItem("protectedItemResource",
    container_name=string,
    fabric_name=string,
    resource_group_name=string,
    vault_name=string,
    e_tag=string,
    location=string,
    properties={
        protectedItemType: AzureFileShareProtectedItem,
        isScheduledForDeferredDelete: False,
        protectionStatus: string,
        createMode: string,
        deferredDeleteTimeInUTC: string,
        deferredDeleteTimeRemaining: string,
        extendedInfo: {
            oldestRecoveryPoint: string,
            policyState: string,
            recoveryPointCount: 0,
        },
        friendlyName: string,
        kpisHealths: {
            string: {
                resourceHealthStatus: string,
            },
        },
        workloadType: string,
        containerName: string,
        isDeferredDeleteScheduleUpcoming: False,
        lastBackupStatus: string,
        lastBackupTime: string,
        lastRecoveryPoint: string,
        policyId: string,
        backupSetName: string,
        protectionState: string,
        backupManagementType: string,
        sourceResourceId: string,
        isRehydrate: False,
    },
    protected_item_name=string,
    tags={
        string: string,
    })
const protectedItemResource = new azure_native.recoveryservices.ProtectedItem("protectedItemResource", {
    containerName: "string",
    fabricName: "string",
    resourceGroupName: "string",
    vaultName: "string",
    eTag: "string",
    location: "string",
    properties: {
        protectedItemType: "AzureFileShareProtectedItem",
        isScheduledForDeferredDelete: false,
        protectionStatus: "string",
        createMode: "string",
        deferredDeleteTimeInUTC: "string",
        deferredDeleteTimeRemaining: "string",
        extendedInfo: {
            oldestRecoveryPoint: "string",
            policyState: "string",
            recoveryPointCount: 0,
        },
        friendlyName: "string",
        kpisHealths: {
            string: {
                resourceHealthStatus: "string",
            },
        },
        workloadType: "string",
        containerName: "string",
        isDeferredDeleteScheduleUpcoming: false,
        lastBackupStatus: "string",
        lastBackupTime: "string",
        lastRecoveryPoint: "string",
        policyId: "string",
        backupSetName: "string",
        protectionState: "string",
        backupManagementType: "string",
        sourceResourceId: "string",
        isRehydrate: false,
    },
    protectedItemName: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:recoveryservices:ProtectedItem
properties:
    containerName: string
    eTag: string
    fabricName: string
    location: string
    properties:
        backupManagementType: string
        backupSetName: string
        containerName: string
        createMode: string
        deferredDeleteTimeInUTC: string
        deferredDeleteTimeRemaining: string
        extendedInfo:
            oldestRecoveryPoint: string
            policyState: string
            recoveryPointCount: 0
        friendlyName: string
        isDeferredDeleteScheduleUpcoming: false
        isRehydrate: false
        isScheduledForDeferredDelete: false
        kpisHealths:
            string:
                resourceHealthStatus: string
        lastBackupStatus: string
        lastBackupTime: string
        lastRecoveryPoint: string
        policyId: string
        protectedItemType: AzureFileShareProtectedItem
        protectionState: string
        protectionStatus: string
        sourceResourceId: string
        workloadType: 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 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 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 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 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 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
- 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:
Supporting Types
AzureFileshareProtectedItem, AzureFileshareProtectedItemArgs        
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- 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.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of the fileshare represented by this backup item.
- 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.
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- 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.
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureFileshare Protected Item Extended Info 
- Additional information with this backup item.
- friendlyName string
- Friendly name of the fileshare represented by this backup item.
- 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.
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 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_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.
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- 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.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureFileshareProtectedItemExtendedInfo, AzureFileshareProtectedItemExtendedInfoArgs            
- 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              
- 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          
- BackupManagement stringType 
- Type of backup management for the backed up 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. 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.
- 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.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- FriendlyName string
- Friendly name of the fileshare represented by this backup item.
- 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.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- 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.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureFileshare Protected Item Extended Info Response 
- Additional information with this backup item.
- friendlyName string
- Friendly name of the fileshare represented by this backup item.
- 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.
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 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_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.
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information with this backup item.
- friendlyName String
- Friendly name of the fileshare represented by this backup item.
- 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.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
AzureIaaSClassicComputeVMProtectedItem, AzureIaaSClassicComputeVMProtectedItemArgs            
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string | Pulumi.Azure Native. Recovery Services. Health Status 
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthStatus string | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- protectedItem stringData Id 
- Data ID of the protected item.
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extended_properties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_status str | HealthStatus 
- Health status of protected item.
- 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_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.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String | "Passed" | "ActionRequired" | "Action Suggested" | "Invalid" 
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureIaaSClassicComputeVMProtectedItemResponse, AzureIaaSClassicComputeVMProtectedItemResponseArgs              
- BackupManagement stringType 
- Type of backup management for the backed up 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. 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.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> 
- Health details on this backup item.
- HealthStatus string
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthDetails []AzureIaa SVMHealth Details Response 
- Health details on this backup item.
- HealthStatus string
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthDetails List<AzureIaa SVMHealth Details Response> 
- Health details on this backup item.
- healthStatus String
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthDetails AzureIaa SVMHealth Details Response[] 
- Health details on this backup item.
- healthStatus string
- Health status of protected item.
- 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.
- 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.
- protectedItem stringData Id 
- Data ID of the protected item.
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extended_properties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_details Sequence[AzureIaa SVMHealth Details Response] 
- Health details on this backup item.
- health_status str
- Health status of protected item.
- 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_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.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthDetails List<Property Map>
- Health details on this backup item.
- healthStatus String
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
AzureIaaSComputeVMProtectedItem, AzureIaaSComputeVMProtectedItemArgs          
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string | Pulumi.Azure Native. Recovery Services. Health Status 
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthStatus string | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- protectedItem stringData Id 
- Data ID of the protected item.
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extended_properties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_status str | HealthStatus 
- Health status of protected item.
- 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_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.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String | "Passed" | "ActionRequired" | "Action Suggested" | "Invalid" 
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureIaaSComputeVMProtectedItemResponse, AzureIaaSComputeVMProtectedItemResponseArgs            
- BackupManagement stringType 
- Type of backup management for the backed up 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. 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.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> 
- Health details on this backup item.
- HealthStatus string
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthDetails []AzureIaa SVMHealth Details Response 
- Health details on this backup item.
- HealthStatus string
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthDetails List<AzureIaa SVMHealth Details Response> 
- Health details on this backup item.
- healthStatus String
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthDetails AzureIaa SVMHealth Details Response[] 
- Health details on this backup item.
- healthStatus string
- Health status of protected item.
- 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.
- 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.
- protectedItem stringData Id 
- Data ID of the protected item.
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extended_properties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_details Sequence[AzureIaa SVMHealth Details Response] 
- Health details on this backup item.
- health_status str
- Health status of protected item.
- 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_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.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthDetails List<Property Map>
- Health details on this backup item.
- healthStatus String
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
AzureIaaSVMHealthDetailsResponse, AzureIaaSVMHealthDetailsResponseArgs          
- 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        
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string | Pulumi.Azure Native. Recovery Services. Health Status 
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protection State 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthStatus string | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string | ProtectionState 
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String | ProtectionState 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extendedProperties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthStatus string | HealthStatus 
- Health status of protected item.
- 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.
- 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.
- protectedItem stringData Id 
- Data ID of the protected item.
- protectionState string | ProtectionState 
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info 
- Additional information for this backup item.
- extended_properties ExtendedProperties 
- Extended Properties for Azure IaasVM Backup.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_status str | HealthStatus 
- Health status of protected item.
- 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_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.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- protection_state str | ProtectionState 
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthStatus String | "Passed" | "ActionRequired" | "Action Suggested" | "Invalid" 
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureIaaSVMProtectedItemExtendedInfo, AzureIaaSVMProtectedItemExtendedInfoArgs            
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- policyInconsistent Boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- policyInconsistent boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item.
- 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.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- 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              
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyInconsistent bool
- Specifies if backup policy associated with the backup item is inconsistent.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- policyInconsistent Boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- policyInconsistent boolean
- Specifies if backup policy associated with the backup item is inconsistent.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item.
- 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.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- 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          
- BackupManagement stringType 
- Type of backup management for the backed up 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. 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.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> 
- Health details on this backup item.
- HealthStatus string
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- ExtendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- FriendlyName string
- Friendly name of the VM represented by this backup item.
- HealthDetails []AzureIaa SVMHealth Details Response 
- Health details on this backup item.
- HealthStatus string
- Health status of protected item.
- 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.
- 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.
- ProtectedItem stringData Id 
- Data ID of the protected item.
- ProtectionState string
- Backup state of this backup item.
- ProtectionStatus string
- Backup status of this backup item.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- VirtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthDetails List<AzureIaa SVMHealth Details Response> 
- Health details on this backup item.
- healthStatus String
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extendedProperties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendlyName string
- Friendly name of the VM represented by this backup item.
- healthDetails AzureIaa SVMHealth Details Response[] 
- Health details on this backup item.
- healthStatus string
- Health status of protected item.
- 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.
- 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.
- protectedItem stringData Id 
- Data ID of the protected item.
- protectionState string
- Backup state of this backup item.
- protectionStatus string
- Backup status of this backup item.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- virtualMachine stringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureIaa SVMProtected Item Extended Info Response 
- Additional information for this backup item.
- extended_properties ExtendedProperties Response 
- Extended Properties for Azure IaasVM Backup.
- friendly_name str
- Friendly name of the VM represented by this backup item.
- health_details Sequence[AzureIaa SVMHealth Details Response] 
- Health details on this backup item.
- health_status str
- Health status of protected item.
- 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_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.
- protected_item_ strdata_ id 
- Data ID of the protected item.
- protection_state str
- Backup state of this backup item.
- protection_status str
- Backup status of this backup item.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- virtual_machine_ strid 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- extendedProperties Property Map
- Extended Properties for Azure IaasVM Backup.
- friendlyName String
- Friendly name of the VM represented by this backup item.
- healthDetails List<Property Map>
- Health details on this backup item.
- healthStatus String
- Health status of protected item.
- 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.
- 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.
- protectedItem StringData Id 
- Data ID of the protected item.
- protectionState String
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- virtualMachine StringId 
- Fully qualified ARM ID of the virtual machine represented by this item.
- workloadType String
- Type of workload this item represents.
AzureSqlProtectedItem, AzureSqlProtectedItemArgs        
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- 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.
- 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.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- 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.
- 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.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- 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.
- 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.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- 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.
- 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.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info 
- Additional information for this backup item.
- 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.
- 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.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- 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.
- 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" 
- Backup state of the backed up item.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureSqlProtectedItemExtendedInfo, AzureSqlProtectedItemExtendedInfoArgs            
- 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              
- 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          
- BackupManagement stringType 
- Type of backup management for the backed up 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. Azure Sql Protected Item Extended Info Response 
- Additional information for this backup item.
- 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.
- 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.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- 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.
- 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.
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- 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.
- 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.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- 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.
- 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.
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureSql Protected Item Extended Info Response 
- Additional information for this backup item.
- 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.
- 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.
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- 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.
- 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.
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
AzureVmWorkloadProtectedItem, AzureVmWorkloadProtectedItemArgs          
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureVmWorkloadProtectedItemExtendedInfo, AzureVmWorkloadProtectedItemExtendedInfoArgs              
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item.
- policy_state 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.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- policyState 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                
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- OldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- PolicyState string
- Indicates consistency of policy object and policy applied to this backup item.
- RecoveryPoint intCount 
- Number of backup copies available for this backup item.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- policyState String
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint IntegerCount 
- Number of backup copies available for this backup item.
- oldestRecovery stringPoint 
- The oldest backup copy available for this backup item.
- policyState string
- Indicates consistency of policy object and policy applied to this backup item.
- recoveryPoint numberCount 
- Number of backup copies available for this backup item.
- oldest_recovery_ strpoint 
- The oldest backup copy available for this backup item.
- policy_state 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.
- oldestRecovery StringPoint 
- The oldest backup copy available for this backup item.
- policyState 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            
- BackupManagement stringType 
- Type of backup management for the backed up 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. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
AzureVmWorkloadSAPAseDatabaseProtectedItem, AzureVmWorkloadSAPAseDatabaseProtectedItemArgs              
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureVmWorkloadSAPAseDatabaseProtectedItemResponse, AzureVmWorkloadSAPAseDatabaseProtectedItemResponseArgs                
- BackupManagement stringType 
- Type of backup management for the backed up 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. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
AzureVmWorkloadSAPHanaDatabaseProtectedItem, AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs              
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureVmWorkloadSAPHanaDatabaseProtectedItemResponse, AzureVmWorkloadSAPHanaDatabaseProtectedItemResponseArgs                
- BackupManagement stringType 
- Type of backup management for the backed up 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. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
AzureVmWorkloadSQLDatabaseProtectedItem, AzureVmWorkloadSQLDatabaseProtectedItemArgs            
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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" 
- Backup state of this backup item.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
AzureVmWorkloadSQLDatabaseProtectedItemResponse, AzureVmWorkloadSQLDatabaseProtectedItemResponseArgs              
- BackupManagement stringType 
- Type of backup management for the backed up 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. Azure Vm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- FriendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- ProtectionStatus string
- Backup status of this backup item.
- ServerName string
- Host/Cluster Name for instance or AG
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendlyName string
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus string
- Backup status of this backup item.
- serverName string
- Host/Cluster Name for instance or AG
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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 AzureVm Workload Protected Item Extended Info Response 
- Additional information for this backup item.
- friendly_name str
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protection_status str
- Backup status of this backup item.
- server_name str
- Host/Cluster Name for instance or AG
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- Additional information for this backup item.
- friendlyName String
- Friendly name of the DB represented by this backup item.
- 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.
- 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.
- 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.
- protectionStatus String
- Backup status of this backup item.
- serverName String
- Host/Cluster Name for instance or AG
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
BackupManagementType, BackupManagementTypeArgs      
- Invalid
- Invalid
- AzureIaas VM 
- AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- AzureBackup Server 
- AzureBackupServer
- AzureSql 
- AzureSql
- AzureStorage 
- AzureStorage
- AzureWorkload 
- AzureWorkload
- DefaultBackup 
- DefaultBackup
- BackupManagement Type Invalid 
- Invalid
- BackupManagement Type Azure Iaas VM 
- AzureIaasVM
- BackupManagement Type MAB 
- MAB
- BackupManagement Type DPM 
- DPM
- BackupManagement Type Azure Backup Server 
- AzureBackupServer
- BackupManagement Type Azure Sql 
- AzureSql
- BackupManagement Type Azure Storage 
- AzureStorage
- BackupManagement Type Azure Workload 
- AzureWorkload
- BackupManagement Type Default Backup 
- DefaultBackup
- Invalid
- Invalid
- AzureIaas VM 
- AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- AzureBackup Server 
- AzureBackupServer
- AzureSql 
- AzureSql
- AzureStorage 
- AzureStorage
- AzureWorkload 
- AzureWorkload
- DefaultBackup 
- DefaultBackup
- Invalid
- Invalid
- AzureIaas VM 
- AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- AzureBackup Server 
- AzureBackupServer
- AzureSql 
- AzureSql
- AzureStorage 
- AzureStorage
- AzureWorkload 
- AzureWorkload
- DefaultBackup 
- DefaultBackup
- INVALID
- Invalid
- AZURE_IAAS_VM
- AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- AZURE_BACKUP_SERVER
- AzureBackupServer
- AZURE_SQL
- AzureSql
- AZURE_STORAGE
- AzureStorage
- AZURE_WORKLOAD
- AzureWorkload
- DEFAULT_BACKUP
- DefaultBackup
- "Invalid"
- Invalid
- "AzureIaas VM" 
- AzureIaasVM
- "MAB"
- MAB
- "DPM"
- DPM
- "AzureBackup Server" 
- AzureBackupServer
- "AzureSql" 
- AzureSql
- "AzureStorage" 
- AzureStorage
- "AzureWorkload" 
- AzureWorkload
- "DefaultBackup" 
- DefaultBackup
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    
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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
- 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.
- ProtectionState string | Pulumi.Azure Native. Recovery Services. Protected Item State 
- Protection state of the backup engine
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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
- 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.
- ProtectionState string | ProtectedItem State Enum 
- Protection state of the backup engine
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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
- 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.
- protectionState String | ProtectedItem State 
- Protection state of the backup engine
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupEngine stringName 
- Backup Management server protecting this backup item
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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
- 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.
- protectionState string | ProtectedItem State 
- Protection state of the backup engine
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_engine_ strname 
- Backup Management server protecting this backup item
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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_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.
- protection_state str | ProtectedItem State 
- Protection state of the backup engine
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- 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.
- protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" 
- Protection state of the backup engine
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
DPMProtectedItemExtendedInfo, DPMProtectedItemExtendedInfoArgs        
- 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          
- 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      
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupManagement stringType 
- Type of backup management for the backed up 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
- 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.
- ProtectionState string
- Protection state of the backup engine
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupEngine stringName 
- Backup Management server protecting this backup item
- BackupManagement stringType 
- Type of backup management for the backed up 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
- 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.
- ProtectionState string
- Protection state of the backup engine
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupManagement StringType 
- Type of backup management for the backed up 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
- 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.
- protectionState String
- Protection state of the backup engine
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupEngine stringName 
- Backup Management server protecting this backup item
- backupManagement stringType 
- Type of backup management for the backed up 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
- 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.
- protectionState string
- Protection state of the backup engine
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_engine_ strname 
- Backup Management server protecting this backup item
- backup_management_ strtype 
- Type of backup management for the backed up 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_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.
- protection_state str
- Protection state of the backup engine
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupEngine StringName 
- Backup Management server protecting this backup item
- backupManagement StringType 
- Type of backup management for the backed up 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
- 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.
- protectionState String
- Protection state of the backup engine
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
DataSourceType, DataSourceTypeArgs      
- Invalid
- Invalid
- VM
- VM
- FileFolder 
- FileFolder
- AzureSql Db 
- AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMwareVM 
- VMwareVM
- SystemState 
- SystemState
- Client
- Client
- GenericData Source 
- GenericDataSource
- SQLDataBase 
- SQLDataBase
- AzureFile Share 
- AzureFileShare
- SAPHanaDatabase 
- SAPHanaDatabase
- SAPAseDatabase 
- SAPAseDatabase
- DataSource Type Invalid 
- Invalid
- DataSource Type VM 
- VM
- DataSource Type File Folder 
- FileFolder
- DataSource Type Azure Sql Db 
- AzureSqlDb
- DataSource Type SQLDB 
- SQLDB
- DataSource Type Exchange 
- Exchange
- DataSource Type Sharepoint 
- Sharepoint
- DataSource Type VMware VM 
- VMwareVM
- DataSource Type System State 
- SystemState
- DataSource Type Client 
- Client
- DataSource Type Generic Data Source 
- GenericDataSource
- DataSource Type SQLData Base 
- SQLDataBase
- DataSource Type Azure File Share 
- AzureFileShare
- DataSource Type SAPHana Database 
- SAPHanaDatabase
- DataSource Type SAPAse Database 
- SAPAseDatabase
- Invalid
- Invalid
- VM
- VM
- FileFolder 
- FileFolder
- AzureSql Db 
- AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMwareVM 
- VMwareVM
- SystemState 
- SystemState
- Client
- Client
- GenericData Source 
- GenericDataSource
- SQLDataBase 
- SQLDataBase
- AzureFile Share 
- AzureFileShare
- SAPHanaDatabase 
- SAPHanaDatabase
- SAPAseDatabase 
- SAPAseDatabase
- Invalid
- Invalid
- VM
- VM
- FileFolder 
- FileFolder
- AzureSql Db 
- AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMwareVM 
- VMwareVM
- SystemState 
- SystemState
- Client
- Client
- GenericData Source 
- GenericDataSource
- SQLDataBase 
- SQLDataBase
- AzureFile Share 
- AzureFileShare
- SAPHanaDatabase 
- SAPHanaDatabase
- SAPAseDatabase 
- SAPAseDatabase
- INVALID
- Invalid
- VM
- VM
- FILE_FOLDER
- FileFolder
- AZURE_SQL_DB
- AzureSqlDb
- SQLDB
- SQLDB
- EXCHANGE
- Exchange
- SHAREPOINT
- Sharepoint
- V_MWARE_VM
- VMwareVM
- SYSTEM_STATE
- SystemState
- CLIENT
- Client
- GENERIC_DATA_SOURCE
- GenericDataSource
- SQL_DATA_BASE
- SQLDataBase
- AZURE_FILE_SHARE
- AzureFileShare
- SAP_HANA_DATABASE
- SAPHanaDatabase
- SAPASE_DATABASE
- SAPAseDatabase
- "Invalid"
- Invalid
- "VM"
- VM
- "FileFolder" 
- FileFolder
- "AzureSql Db" 
- AzureSqlDb
- "SQLDB"
- SQLDB
- "Exchange"
- Exchange
- "Sharepoint"
- Sharepoint
- "VMwareVM" 
- VMwareVM
- "SystemState" 
- SystemState
- "Client"
- Client
- "GenericData Source" 
- GenericDataSource
- "SQLDataBase" 
- SQLDataBase
- "AzureFile Share" 
- AzureFileShare
- "SAPHanaDatabase" 
- SAPHanaDatabase
- "SAPAseDatabase" 
- SAPAseDatabase
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.
ErrorDetailResponse, ErrorDetailResponseArgs      
- 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    
- DiskExclusion Pulumi.Properties Azure Native. Recovery Services. Inputs. Disk Exclusion Properties 
- Extended Properties for Disk Exclusion.
- DiskExclusion DiskProperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- diskExclusion DiskProperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- diskExclusion DiskProperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- disk_exclusion_ Diskproperties Exclusion Properties 
- Extended Properties for Disk Exclusion.
- diskExclusion Property MapProperties 
- Extended Properties for Disk Exclusion.
ExtendedPropertiesResponse, ExtendedPropertiesResponseArgs      
- DiskExclusion Pulumi.Properties Azure Native. Recovery Services. Inputs. Disk Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- DiskExclusion DiskProperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- diskExclusion DiskProperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- diskExclusion DiskProperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- disk_exclusion_ Diskproperties Exclusion Properties Response 
- Extended Properties for Disk Exclusion.
- diskExclusion Property MapProperties 
- Extended Properties for Disk Exclusion.
GenericProtectedItem, GenericProtectedItemArgs      
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- 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.
- 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.
- 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.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- 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.
- 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.
- 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.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- 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.
- 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.
- 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.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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
- fabricName string
- Name of this backup item's fabric.
- friendlyName string
- Friendly name of the container.
- 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.
- 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.
- 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.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up 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
- fabric_name str
- Name of this backup item's fabric.
- friendly_name str
- Friendly name of the container.
- 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_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.
- 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.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- 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.
- 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" 
- Backup state of this backup item.
- 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.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
GenericProtectedItemResponse, GenericProtectedItemResponseArgs        
- BackupManagement stringType 
- Type of backup management for the backed up 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
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- 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.
- 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.
- 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.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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
- FabricName string
- Name of this backup item's fabric.
- FriendlyName string
- Friendly name of the container.
- 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.
- 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.
- 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.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- 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.
- 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.
- 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.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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
- fabricName string
- Name of this backup item's fabric.
- friendlyName string
- Friendly name of the container.
- 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.
- 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.
- 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.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up 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
- fabric_name str
- Name of this backup item's fabric.
- friendly_name str
- Friendly name of the container.
- 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_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.
- 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.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- fabricName String
- Name of this backup item's fabric.
- friendlyName String
- Friendly name of the container.
- 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.
- 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.
- 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.
- workloadType String
- Type of workload this item represents.
HealthStatus, HealthStatusArgs    
- Passed
- Passed
- ActionRequired 
- ActionRequired
- ActionSuggested 
- ActionSuggested
- Invalid
- Invalid
- HealthStatus Passed 
- Passed
- HealthStatus Action Required 
- ActionRequired
- HealthStatus Action Suggested 
- ActionSuggested
- HealthStatus Invalid 
- Invalid
- Passed
- Passed
- ActionRequired 
- ActionRequired
- ActionSuggested 
- ActionSuggested
- Invalid
- Invalid
- Passed
- Passed
- ActionRequired 
- ActionRequired
- ActionSuggested 
- ActionSuggested
- Invalid
- Invalid
- PASSED
- Passed
- ACTION_REQUIRED
- ActionRequired
- ACTION_SUGGESTED
- ActionSuggested
- INVALID
- Invalid
- "Passed"
- Passed
- "ActionRequired" 
- ActionRequired
- "ActionSuggested" 
- ActionSuggested
- "Invalid"
- Invalid
KPIResourceHealthDetails, KPIResourceHealthDetailsArgs      
- 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        
- 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          
- BackupManagement string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type 
- Type of backup management for the backed up 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.
- 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.
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | Pulumi.Azure Native. Recovery Services. Data Source Type 
- Type of workload this item represents.
- BackupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 | 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.
- 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.
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string | DataSource Type 
- Type of workload this item represents.
- backupManagement String | BackupType Management Type 
- Type of backup management for the backed up 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 | 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.
- 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.
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | DataSource Type 
- Type of workload this item represents.
- backupManagement string | BackupType Management Type 
- Type of backup management for the backed up 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 | 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.
- 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.
- protectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string | DataSource Type 
- Type of workload this item represents.
- backup_management_ str | Backuptype Management Type 
- Type of backup management for the backed up item.
- 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_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.
- protection_state str
- Protected, ProtectionStopped, IRPending or ProtectionError
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str | DataSource Type 
- Type of workload this item represents.
- backupManagement String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" 
- Type of backup management for the backed up 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 | "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.
- 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.
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" 
- Type of workload this item represents.
MabFileFolderProtectedItemExtendedInfo, MabFileFolderProtectedItemExtendedInfoArgs              
- 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                
- 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            
- BackupManagement stringType 
- Type of backup management for the backed up 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
- 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.
- 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.
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- BackupManagement stringType 
- Type of backup management for the backed up 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
- 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.
- 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.
- ProtectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- SourceResource stringId 
- ARM ID of the resource to be backed up.
- WorkloadType string
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- 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.
- 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.
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
- backupManagement stringType 
- Type of backup management for the backed up 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
- 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.
- 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.
- protectionState string
- Protected, ProtectionStopped, IRPending or ProtectionError
- sourceResource stringId 
- ARM ID of the resource to be backed up.
- workloadType string
- Type of workload this item represents.
- backup_management_ strtype 
- Type of backup management for the backed up item.
- 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_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.
- protection_state str
- Protected, ProtectionStopped, IRPending or ProtectionError
- source_resource_ strid 
- ARM ID of the resource to be backed up.
- workload_type str
- Type of workload this item represents.
- backupManagement StringType 
- Type of backup management for the backed up 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
- 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.
- 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.
- protectionState String
- Protected, ProtectionStopped, IRPending or ProtectionError
- sourceResource StringId 
- ARM ID of the resource to be backed up.
- workloadType String
- Type of workload this item represents.
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
- 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
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- INVALID
- Invalid
- IR_PENDING
- IRPending
- PROTECTED
- Protected
- PROTECTION_ERROR
- ProtectionError
- PROTECTION_STOPPED
- ProtectionStopped
- PROTECTION_PAUSED
- ProtectionPaused
- "Invalid"
- Invalid
- "IRPending"
- IRPending
- "Protected"
- Protected
- "ProtectionError" 
- ProtectionError
- "ProtectionStopped" 
- ProtectionStopped
- "ProtectionPaused" 
- ProtectionPaused
ProtectionState, ProtectionStateArgs    
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- ProtectionState Invalid 
- Invalid
- ProtectionState IRPending 
- IRPending
- ProtectionState Protected 
- Protected
- ProtectionState Protection Error 
- ProtectionError
- ProtectionState Protection Stopped 
- ProtectionStopped
- ProtectionState Protection Paused 
- ProtectionPaused
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- ProtectionError 
- ProtectionError
- ProtectionStopped 
- ProtectionStopped
- ProtectionPaused 
- ProtectionPaused
- INVALID
- Invalid
- IR_PENDING
- IRPending
- PROTECTED
- Protected
- PROTECTION_ERROR
- ProtectionError
- PROTECTION_STOPPED
- ProtectionStopped
- PROTECTION_PAUSED
- ProtectionPaused
- "Invalid"
- Invalid
- "IRPending"
- IRPending
- "Protected"
- Protected
- "ProtectionError" 
- ProtectionError
- "ProtectionStopped" 
- ProtectionStopped
- "ProtectionPaused" 
- ProtectionPaused
ResourceHealthDetailsResponse, ResourceHealthDetailsResponseArgs        
- 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/00000000-0000-0000-0000-000000000000/resourceGroups/PythonSDKBackupTestRg/providers/Microsoft.RecoveryServices/vaults/PySDKBackupTestRsVault/backupFabrics/Azure/protectionContainers/IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1/protectedItems/VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0