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 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")
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",
});
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 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")
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",
});
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

new ProtectedItem(name: string, args: ProtectedItemArgs, opts?: CustomResourceOptions);
@overload
def ProtectedItem(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  container_name: Optional[str] = None,
                  e_tag: Optional[str] = None,
                  fabric_name: 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,
                  resource_group_name: Optional[str] = None,
                  tags: Optional[Mapping[str, str]] = None,
                  vault_name: Optional[str] = None)
@overload
def ProtectedItem(resource_name: str,
                  args: ProtectedItemArgs,
                  opts: Optional[ResourceOptions] = 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.

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.

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

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.

ResourceGroupName string

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.AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSClassicComputeVMProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSComputeVMProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureSqlProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadSAPAseDatabaseProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadSQLDatabaseProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.DPMProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.GenericProtectedItemArgs | Pulumi.AzureNative.RecoveryServices.Inputs.MabFileFolderProtectedItemArgs

ProtectedItemResource properties

ProtectedItemName string

Item name to be backed up.

Tags Dictionary<string, string>

Resource tags.

ContainerName string

Container name associated with the backup item.

FabricName string

Fabric name associated with the backup item.

ResourceGroupName string

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 AzureFileshareProtectedItemArgs | AzureIaaSClassicComputeVMProtectedItemArgs | AzureIaaSComputeVMProtectedItemArgs | AzureIaaSVMProtectedItemArgs | AzureSqlProtectedItemArgs | AzureVmWorkloadProtectedItemArgs | AzureVmWorkloadSAPAseDatabaseProtectedItemArgs | AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs | AzureVmWorkloadSQLDatabaseProtectedItemArgs | DPMProtectedItemArgs | GenericProtectedItemArgs | MabFileFolderProtectedItemArgs

ProtectedItemResource properties

ProtectedItemName string

Item name to be backed up.

Tags map[string]string

Resource tags.

containerName String

Container name associated with the backup item.

fabricName String

Fabric name associated with the backup item.

resourceGroupName String

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 AzureFileshareProtectedItemArgs | AzureIaaSClassicComputeVMProtectedItemArgs | AzureIaaSComputeVMProtectedItemArgs | AzureIaaSVMProtectedItemArgs | AzureSqlProtectedItemArgs | AzureVmWorkloadProtectedItemArgs | AzureVmWorkloadSAPAseDatabaseProtectedItemArgs | AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs | AzureVmWorkloadSQLDatabaseProtectedItemArgs | DPMProtectedItemArgs | GenericProtectedItemArgs | MabFileFolderProtectedItemArgs

ProtectedItemResource properties

protectedItemName String

Item name to be backed up.

tags Map<String,String>

Resource tags.

containerName string

Container name associated with the backup item.

fabricName string

Fabric name associated with the backup item.

resourceGroupName string

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 AzureFileshareProtectedItemArgs | AzureIaaSClassicComputeVMProtectedItemArgs | AzureIaaSComputeVMProtectedItemArgs | AzureIaaSVMProtectedItemArgs | AzureSqlProtectedItemArgs | AzureVmWorkloadProtectedItemArgs | AzureVmWorkloadSAPAseDatabaseProtectedItemArgs | AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs | AzureVmWorkloadSQLDatabaseProtectedItemArgs | DPMProtectedItemArgs | GenericProtectedItemArgs | MabFileFolderProtectedItemArgs

ProtectedItemResource properties

protectedItemName string

Item name to be backed up.

tags {[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_name str

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 AzureFileshareProtectedItemArgs | AzureIaaSClassicComputeVMProtectedItemArgs | AzureIaaSComputeVMProtectedItemArgs | AzureIaaSVMProtectedItemArgs | AzureSqlProtectedItemArgs | AzureVmWorkloadProtectedItemArgs | AzureVmWorkloadSAPAseDatabaseProtectedItemArgs | AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs | AzureVmWorkloadSQLDatabaseProtectedItemArgs | DPMProtectedItemArgs | GenericProtectedItemArgs | MabFileFolderProtectedItemArgs

ProtectedItemResource properties

protected_item_name str

Item name to be backed up.

tags Mapping[str, str]

Resource tags.

containerName String

Container name associated with the backup item.

fabricName String

Fabric name associated with the backup item.

resourceGroupName String

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

protectedItemName String

Item name to be backed up.

tags Map<String>

Resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the ProtectedItem resource produces the following output properties:

Id string

The provider-assigned unique ID for this managed resource.

Name string

Resource name associated with the resource.

Type string

Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Id string

The provider-assigned unique ID for this managed resource.

Name string

Resource name associated with the resource.

Type string

Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

id String

The provider-assigned unique ID for this managed resource.

name String

Resource name associated with the resource.

type String

Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

id string

The provider-assigned unique ID for this managed resource.

name string

Resource name associated with the resource.

type string

Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

id str

The provider-assigned unique ID for this managed resource.

name str

Resource name associated with the resource.

type str

Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

id String

The provider-assigned unique ID for this managed resource.

name String

Resource name associated with the resource.

type String

Resource type represents the complete path of the form Namespace/ResourceType/ResourceType/...

Supporting Types

AzureFileshareProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemExtendedInfo

Additional information with this backup item.

FriendlyName string

Friendly name of the fileshare represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureFileshareProtectedItemExtendedInfo

Additional information with this backup item.

FriendlyName string

Friendly name of the fileshare represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureFileshareProtectedItemExtendedInfo

Additional information with this backup item.

friendlyName String

Friendly name of the fileshare represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureFileshareProtectedItemExtendedInfo

Additional information with this backup item.

friendlyName string

Friendly name of the fileshare represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetails}

Health details of different KPIs

lastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureFileshareProtectedItemExtendedInfo

Additional information with this backup item.

friendly_name str

Friendly name of the fileshare represented by this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetails]

Health details of different KPIs

last_backup_status str

Last backup operation status. Possible values: Healthy, Unhealthy.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_id str

ARM ID of the resource to be backed up.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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" | "ProtectionStopped" | "ProtectionPaused"

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureFileshareProtectedItemExtendedInfo

OldestRecoveryPoint string

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.

RecoveryPointCount int

Number of available backup copies associated with this backup item.

OldestRecoveryPoint string

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.

RecoveryPointCount int

Number of available backup copies associated with this backup item.

oldestRecoveryPoint String

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.

recoveryPointCount Integer

Number of available backup copies associated with this backup item.

oldestRecoveryPoint string

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.

recoveryPointCount number

Number of available backup copies associated with this backup item.

oldest_recovery_point str

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_count int

Number of available backup copies associated with this backup item.

oldestRecoveryPoint String

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.

recoveryPointCount Number

Number of available backup copies associated with this backup item.

AzureFileshareProtectedItemExtendedInfoResponse

ResourceState string

Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}

ResourceStateSyncTime string

The resource state sync time for this backup item.

OldestRecoveryPoint string

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.

RecoveryPointCount int

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}

ResourceStateSyncTime string

The resource state sync time for this backup item.

OldestRecoveryPoint string

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.

RecoveryPointCount int

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}

resourceStateSyncTime String

The resource state sync time for this backup item.

oldestRecoveryPoint String

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.

recoveryPointCount Integer

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}

resourceStateSyncTime string

The resource state sync time for this backup item.

oldestRecoveryPoint string

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.

recoveryPointCount number

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_sync_time str

The resource state sync time for this backup item.

oldest_recovery_point str

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_count int

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}

resourceStateSyncTime String

The resource state sync time for this backup item.

oldestRecoveryPoint String

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.

recoveryPointCount Number

Number of available backup copies associated with this backup item.

AzureFileshareProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemExtendedInfoResponse

Additional information with this backup item.

FriendlyName string

Friendly name of the fileshare represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsResponse>

Health details of different KPIs

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureFileshareProtectedItemExtendedInfoResponse

Additional information with this backup item.

FriendlyName string

Friendly name of the fileshare represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetailsResponse

Health details of different KPIs

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureFileshareProtectedItemExtendedInfoResponse

Additional information with this backup item.

friendlyName String

Friendly name of the fileshare represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetailsResponse>

Health details of different KPIs

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureFileshareProtectedItemExtendedInfoResponse

Additional information with this backup item.

friendlyName string

Friendly name of the fileshare represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetailsResponse}

Health details of different KPIs

lastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureFileshareProtectedItemExtendedInfoResponse

Additional information with this backup item.

friendly_name str

Friendly name of the fileshare represented by this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetailsResponse]

Health details of different KPIs

last_backup_status str

Last backup operation status. Possible values: Healthy, Unhealthy.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_id str

ARM ID of the resource to be backed up.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

AzureIaaSClassicComputeVMProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemExtendedInfo

Additional information for this backup item.

ExtendedProperties Pulumi.AzureNative.RecoveryServices.Inputs.ExtendedProperties

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthStatus string | Pulumi.AzureNative.RecoveryServices.HealthStatus

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string | ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String | ProtectionState

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetails}

Health details of different KPIs

lastBackupStatus string

Last backup operation status.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataId string

Data ID of the protected item.

protectionState string | ProtectionState

Backup state of this backup item.

protectionStatus string

Backup status of this backup item.

sourceResourceId string

ARM ID of the resource to be backed up.

virtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureIaaSVMProtectedItemExtendedInfo

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_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetails]

Health details of different KPIs

last_backup_status str

Last backup operation status.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

virtual_machine_id str

Fully qualified ARM ID of the virtual machine represented by this item.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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" | "ActionSuggested" | "Invalid"

Health status of protected item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "ProtectionStopped" | "ProtectionPaused"

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureIaaSClassicComputeVMProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

ExtendedProperties Pulumi.AzureNative.RecoveryServices.Inputs.ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthDetails List<Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMHealthDetailsResponse>

Health details on this backup item.

HealthStatus string

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsResponse>

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

ExtendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthDetails []AzureIaaSVMHealthDetailsResponse

Health details on this backup item.

HealthStatus string

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetailsResponse

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendlyName String

Friendly name of the VM represented by this backup item.

healthDetails List<AzureIaaSVMHealthDetailsResponse>

Health details on this backup item.

healthStatus String

Health status of protected item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetailsResponse>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendlyName string

Friendly name of the VM represented by this backup item.

healthDetails AzureIaaSVMHealthDetailsResponse[]

Health details on this backup item.

healthStatus string

Health status of protected item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetailsResponse}

Health details of different KPIs

lastBackupStatus string

Last backup operation status.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataId string

Data ID of the protected item.

protectionState string

Backup state of this backup item.

protectionStatus string

Backup status of this backup item.

sourceResourceId string

ARM ID of the resource to be backed up.

virtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extended_properties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendly_name str

Friendly name of the VM represented by this backup item.

health_details Sequence[AzureIaaSVMHealthDetailsResponse]

Health details on this backup item.

health_status str

Health status of protected item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetailsResponse]

Health details of different KPIs

last_backup_status str

Last backup operation status.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

virtual_machine_id str

Fully qualified ARM ID of the virtual machine represented by this item.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String

Type of workload this item represents.

AzureIaaSComputeVMProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemExtendedInfo

Additional information for this backup item.

ExtendedProperties Pulumi.AzureNative.RecoveryServices.Inputs.ExtendedProperties

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthStatus string | Pulumi.AzureNative.RecoveryServices.HealthStatus

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string | ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String | ProtectionState

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetails}

Health details of different KPIs

lastBackupStatus string

Last backup operation status.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataId string

Data ID of the protected item.

protectionState string | ProtectionState

Backup state of this backup item.

protectionStatus string

Backup status of this backup item.

sourceResourceId string

ARM ID of the resource to be backed up.

virtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureIaaSVMProtectedItemExtendedInfo

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_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetails]

Health details of different KPIs

last_backup_status str

Last backup operation status.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

virtual_machine_id str

Fully qualified ARM ID of the virtual machine represented by this item.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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" | "ActionSuggested" | "Invalid"

Health status of protected item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "ProtectionStopped" | "ProtectionPaused"

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureIaaSComputeVMProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

ExtendedProperties Pulumi.AzureNative.RecoveryServices.Inputs.ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthDetails List<Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMHealthDetailsResponse>

Health details on this backup item.

HealthStatus string

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsResponse>

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

ExtendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthDetails []AzureIaaSVMHealthDetailsResponse

Health details on this backup item.

HealthStatus string

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetailsResponse

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendlyName String

Friendly name of the VM represented by this backup item.

healthDetails List<AzureIaaSVMHealthDetailsResponse>

Health details on this backup item.

healthStatus String

Health status of protected item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetailsResponse>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendlyName string

Friendly name of the VM represented by this backup item.

healthDetails AzureIaaSVMHealthDetailsResponse[]

Health details on this backup item.

healthStatus string

Health status of protected item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetailsResponse}

Health details of different KPIs

lastBackupStatus string

Last backup operation status.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataId string

Data ID of the protected item.

protectionState string

Backup state of this backup item.

protectionStatus string

Backup status of this backup item.

sourceResourceId string

ARM ID of the resource to be backed up.

virtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extended_properties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendly_name str

Friendly name of the VM represented by this backup item.

health_details Sequence[AzureIaaSVMHealthDetailsResponse]

Health details on this backup item.

health_status str

Health status of protected item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetailsResponse]

Health details of different KPIs

last_backup_status str

Last backup operation status.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

virtual_machine_id str

Fully qualified ARM ID of the virtual machine represented by this item.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String

Type of workload this item represents.

AzureIaaSVMHealthDetailsResponse

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

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemExtendedInfo

Additional information for this backup item.

ExtendedProperties Pulumi.AzureNative.RecoveryServices.Inputs.ExtendedProperties

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthStatus string | Pulumi.AzureNative.RecoveryServices.HealthStatus

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string | ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String | ProtectionState

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfo

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.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetails}

Health details of different KPIs

lastBackupStatus string

Last backup operation status.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataId string

Data ID of the protected item.

protectionState string | ProtectionState

Backup state of this backup item.

protectionStatus string

Backup status of this backup item.

sourceResourceId string

ARM ID of the resource to be backed up.

virtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureIaaSVMProtectedItemExtendedInfo

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_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetails]

Health details of different KPIs

last_backup_status str

Last backup operation status.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

virtual_machine_id str

Fully qualified ARM ID of the virtual machine represented by this item.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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" | "ActionSuggested" | "Invalid"

Health status of protected item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "ProtectionStopped" | "ProtectionPaused"

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureIaaSVMProtectedItemExtendedInfo

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyInconsistent bool

Specifies if backup policy associated with the backup item is inconsistent.

RecoveryPointCount int

Number of backup copies available for this backup item.

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyInconsistent bool

Specifies if backup policy associated with the backup item is inconsistent.

RecoveryPointCount int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyInconsistent Boolean

Specifies if backup policy associated with the backup item is inconsistent.

recoveryPointCount Integer

Number of backup copies available for this backup item.

oldestRecoveryPoint string

The oldest backup copy available for this backup item.

policyInconsistent boolean

Specifies if backup policy associated with the backup item is inconsistent.

recoveryPointCount number

Number of backup copies available for this backup item.

oldest_recovery_point str

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_count int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyInconsistent Boolean

Specifies if backup policy associated with the backup item is inconsistent.

recoveryPointCount Number

Number of backup copies available for this backup item.

AzureIaaSVMProtectedItemExtendedInfoResponse

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyInconsistent bool

Specifies if backup policy associated with the backup item is inconsistent.

RecoveryPointCount int

Number of backup copies available for this backup item.

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyInconsistent bool

Specifies if backup policy associated with the backup item is inconsistent.

RecoveryPointCount int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyInconsistent Boolean

Specifies if backup policy associated with the backup item is inconsistent.

recoveryPointCount Integer

Number of backup copies available for this backup item.

oldestRecoveryPoint string

The oldest backup copy available for this backup item.

policyInconsistent boolean

Specifies if backup policy associated with the backup item is inconsistent.

recoveryPointCount number

Number of backup copies available for this backup item.

oldest_recovery_point str

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_count int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyInconsistent Boolean

Specifies if backup policy associated with the backup item is inconsistent.

recoveryPointCount Number

Number of backup copies available for this backup item.

AzureIaaSVMProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

ExtendedProperties Pulumi.AzureNative.RecoveryServices.Inputs.ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthDetails List<Pulumi.AzureNative.RecoveryServices.Inputs.AzureIaaSVMHealthDetailsResponse>

Health details on this backup item.

HealthStatus string

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsResponse>

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

ExtendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

FriendlyName string

Friendly name of the VM represented by this backup item.

HealthDetails []AzureIaaSVMHealthDetailsResponse

Health details on this backup item.

HealthStatus string

Health status of protected item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetailsResponse

Health details of different KPIs

LastBackupStatus string

Last backup operation status.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataId string

Data ID of the protected item.

ProtectionState string

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

SourceResourceId string

ARM ID of the resource to be backed up.

VirtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendlyName String

Friendly name of the VM represented by this backup item.

healthDetails List<AzureIaaSVMHealthDetailsResponse>

Health details on this backup item.

healthStatus String

Health status of protected item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetailsResponse>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extendedProperties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendlyName string

Friendly name of the VM represented by this backup item.

healthDetails AzureIaaSVMHealthDetailsResponse[]

Health details on this backup item.

healthStatus string

Health status of protected item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetailsResponse}

Health details of different KPIs

lastBackupStatus string

Last backup operation status.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataId string

Data ID of the protected item.

protectionState string

Backup state of this backup item.

protectionStatus string

Backup status of this backup item.

sourceResourceId string

ARM ID of the resource to be backed up.

virtualMachineId string

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureIaaSVMProtectedItemExtendedInfoResponse

Additional information for this backup item.

extended_properties ExtendedPropertiesResponse

Extended Properties for Azure IaasVM Backup.

friendly_name str

Friendly name of the VM represented by this backup item.

health_details Sequence[AzureIaaSVMHealthDetailsResponse]

Health details on this backup item.

health_status str

Health status of protected item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetailsResponse]

Health details of different KPIs

last_backup_status str

Last backup operation status.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

virtual_machine_id str

Fully qualified ARM ID of the virtual machine represented by this item.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String

Last backup operation status.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataId String

Data ID of the protected item.

protectionState String

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

sourceResourceId String

ARM ID of the resource to be backed up.

virtualMachineId String

Fully qualified ARM ID of the virtual machine represented by this item.

workloadType String

Type of workload this item represents.

AzureSqlProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureSqlProtectedItemExtendedInfo

Additional information for this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

LastRecoveryPoint string

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.

ProtectedItemDataId string

Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectedItemState

Backup state of the backed up item.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureSqlProtectedItemExtendedInfo

Additional information for this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

LastRecoveryPoint string

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.

ProtectedItemDataId string

Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.

ProtectionState string | ProtectedItemStateEnum

Backup state of the backed up item.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureSqlProtectedItemExtendedInfo

Additional information for this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

lastRecoveryPoint String

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.

protectedItemDataId String

Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.

protectionState String | ProtectedItemState

Backup state of the backed up item.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureSqlProtectedItemExtendedInfo

Additional information for this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

lastRecoveryPoint string

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.

protectedItemDataId string

Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.

protectionState string | ProtectedItemState

Backup state of the backed up item.

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureSqlProtectedItemExtendedInfo

Additional information for this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

last_recovery_point str

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_data_id str

Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.

protection_state str | ProtectedItemState

Backup state of the backed up item.

source_resource_id str

ARM ID of the resource to be backed up.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo Property Map

Additional information for this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

lastRecoveryPoint String

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.

protectedItemDataId String

Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.

protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "ProtectionStopped" | "ProtectionPaused"

Backup state of the backed up item.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureSqlProtectedItemExtendedInfo

OldestRecoveryPoint string

The oldest backup copy available for this item in the service.

PolicyState string

State of the backup policy associated with this backup item.

RecoveryPointCount int

Number of available backup copies associated with this backup item.

OldestRecoveryPoint string

The oldest backup copy available for this item in the service.

PolicyState string

State of the backup policy associated with this backup item.

RecoveryPointCount int

Number of available backup copies associated with this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this item in the service.

policyState String

State of the backup policy associated with this backup item.

recoveryPointCount Integer

Number of available backup copies associated with this backup item.

oldestRecoveryPoint string

The oldest backup copy available for this item in the service.

policyState string

State of the backup policy associated with this backup item.

recoveryPointCount number

Number of available backup copies associated with this backup item.

oldest_recovery_point str

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_count int

Number of available backup copies associated with this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this item in the service.

policyState String

State of the backup policy associated with this backup item.

recoveryPointCount Number

Number of available backup copies associated with this backup item.

AzureSqlProtectedItemExtendedInfoResponse

OldestRecoveryPoint string

The oldest backup copy available for this item in the service.

PolicyState string

State of the backup policy associated with this backup item.

RecoveryPointCount int

Number of available backup copies associated with this backup item.

OldestRecoveryPoint string

The oldest backup copy available for this item in the service.

PolicyState string

State of the backup policy associated with this backup item.

RecoveryPointCount int

Number of available backup copies associated with this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this item in the service.

policyState String

State of the backup policy associated with this backup item.

recoveryPointCount Integer

Number of available backup copies associated with this backup item.

oldestRecoveryPoint string

The oldest backup copy available for this item in the service.

policyState string

State of the backup policy associated with this backup item.

recoveryPointCount number

Number of available backup copies associated with this backup item.

oldest_recovery_point str

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_count int

Number of available backup copies associated with this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this item in the service.

policyState String

State of the backup policy associated with this backup item.

recoveryPointCount Number

Number of available backup copies associated with this backup item.

AzureSqlProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureSqlProtectedItemExtendedInfoResponse

Additional information for this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

LastRecoveryPoint string

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.

ProtectedItemDataId string

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.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureSqlProtectedItemExtendedInfoResponse

Additional information for this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

LastRecoveryPoint string

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.

ProtectedItemDataId string

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.

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureSqlProtectedItemExtendedInfoResponse

Additional information for this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

lastRecoveryPoint String

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.

protectedItemDataId String

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.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureSqlProtectedItemExtendedInfoResponse

Additional information for this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

lastRecoveryPoint string

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.

protectedItemDataId string

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.

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureSqlProtectedItemExtendedInfoResponse

Additional information for this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

last_recovery_point str

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_data_id str

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_id str

ARM ID of the resource to be backed up.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo Property Map

Additional information for this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

lastRecoveryPoint String

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.

protectedItemDataId String

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.

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

AzureVmWorkloadProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string | Pulumi.AzureNative.RecoveryServices.LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string | Pulumi.AzureNative.RecoveryServices.ProtectedItemHealthStatus

Health status of the backup item, evaluated based on last heartbeat received

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

ServerName string

Host/Cluster Name for instance or AG

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string | ProtectedItemHealthStatus

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendlyName String

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String | ProtectedItemHealthStatus

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendlyName string

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetails}

Health details of different KPIs

lastBackupStatus string | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataSourceId string

Data ID of the protected item.

protectedItemHealthStatus string | ProtectedItemHealthStatus

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

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendly_name str

Friendly name of the DB represented by this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetails]

Health details of different KPIs

last_backup_status str | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_source_id str

Data ID of the protected item.

protected_item_health_status str | ProtectedItemHealthStatus

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_id str

ARM ID of the resource to be backed up.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String | "Invalid" | "Healthy" | "Unhealthy" | "NotReachable" | "IRPending"

Health status of the backup item, evaluated based on last heartbeat received

protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "ProtectionStopped" | "ProtectionPaused"

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

serverName String

Host/Cluster Name for instance or AG

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureVmWorkloadProtectedItemExtendedInfo

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyState string

Indicates consistency of policy object and policy applied to this backup item.

RecoveryPointCount int

Number of backup copies available for this backup item.

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyState string

Indicates consistency of policy object and policy applied to this backup item.

RecoveryPointCount int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyState String

Indicates consistency of policy object and policy applied to this backup item.

recoveryPointCount Integer

Number of backup copies available for this backup item.

oldestRecoveryPoint string

The oldest backup copy available for this backup item.

policyState string

Indicates consistency of policy object and policy applied to this backup item.

recoveryPointCount number

Number of backup copies available for this backup item.

oldest_recovery_point str

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_count int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyState String

Indicates consistency of policy object and policy applied to this backup item.

recoveryPointCount Number

Number of backup copies available for this backup item.

AzureVmWorkloadProtectedItemExtendedInfoResponse

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyState string

Indicates consistency of policy object and policy applied to this backup item.

RecoveryPointCount int

Number of backup copies available for this backup item.

OldestRecoveryPoint string

The oldest backup copy available for this backup item.

PolicyState string

Indicates consistency of policy object and policy applied to this backup item.

RecoveryPointCount int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyState String

Indicates consistency of policy object and policy applied to this backup item.

recoveryPointCount Integer

Number of backup copies available for this backup item.

oldestRecoveryPoint string

The oldest backup copy available for this backup item.

policyState string

Indicates consistency of policy object and policy applied to this backup item.

recoveryPointCount number

Number of backup copies available for this backup item.

oldest_recovery_point str

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_count int

Number of backup copies available for this backup item.

oldestRecoveryPoint String

The oldest backup copy available for this backup item.

policyState String

Indicates consistency of policy object and policy applied to this backup item.

recoveryPointCount Number

Number of backup copies available for this backup item.

AzureVmWorkloadProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsResponse>

Health details of different KPIs

LastBackupErrorDetail Pulumi.AzureNative.RecoveryServices.Inputs.ErrorDetailResponse

Error details in last backup

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetailsResponse

Health details of different KPIs

LastBackupErrorDetail ErrorDetailResponse

Error details in last backup

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

friendlyName String

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetailsResponse>

Health details of different KPIs

lastBackupErrorDetail ErrorDetailResponse

Error details in last backup

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

friendlyName string

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetailsResponse}

Health details of different KPIs

lastBackupErrorDetail ErrorDetailResponse

Error details in last backup

lastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataSourceId string

Data ID of the protected item.

protectedItemHealthStatus string

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

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

friendly_name str

Friendly name of the DB represented by this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetailsResponse]

Health details of different KPIs

last_backup_error_detail ErrorDetailResponse

Error details in last backup

last_backup_status str

Last backup operation status. Possible values: Healthy, Unhealthy.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_source_id str

Data ID of the protected item.

protected_item_health_status str

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_id str

ARM ID of the resource to be backed up.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupErrorDetail Property Map

Error details in last backup

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

AzureVmWorkloadSAPAseDatabaseProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string | Pulumi.AzureNative.RecoveryServices.LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string | Pulumi.AzureNative.RecoveryServices.ProtectedItemHealthStatus

Health status of the backup item, evaluated based on last heartbeat received

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

ServerName string

Host/Cluster Name for instance or AG

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string | ProtectedItemHealthStatus

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendlyName String

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String | ProtectedItemHealthStatus

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendlyName string

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetails}

Health details of different KPIs

lastBackupStatus string | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataSourceId string

Data ID of the protected item.

protectedItemHealthStatus string | ProtectedItemHealthStatus

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

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string | DataSourceType

Type of workload this item represents.

backup_management_type str | BackupManagementType

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendly_name str

Friendly name of the DB represented by this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetails]

Health details of different KPIs

last_backup_status str | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_source_id str

Data ID of the protected item.

protected_item_health_status str | ProtectedItemHealthStatus

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_id str

ARM ID of the resource to be backed up.

workload_type str | DataSourceType

Type of workload this item represents.

backupManagementType String | "Invalid" | "AzureIaasVM" | "MAB" | "DPM" | "AzureBackupServer" | "AzureSql" | "AzureStorage" | "AzureWorkload" | "DefaultBackup"

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupStatus String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String | "Invalid" | "Healthy" | "Unhealthy" | "NotReachable" | "IRPending"

Health status of the backup item, evaluated based on last heartbeat received

protectionState String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "ProtectionStopped" | "ProtectionPaused"

Backup state of this backup item.

protectionStatus String

Backup status of this backup item.

serverName String

Host/Cluster Name for instance or AG

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | "Invalid" | "VM" | "FileFolder" | "AzureSqlDb" | "SQLDB" | "Exchange" | "Sharepoint" | "VMwareVM" | "SystemState" | "Client" | "GenericDataSource" | "SQLDataBase" | "AzureFileShare" | "SAPHanaDatabase" | "SAPAseDatabase"

Type of workload this item represents.

AzureVmWorkloadSAPAseDatabaseProtectedItemResponse

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsResponse>

Health details of different KPIs

LastBackupErrorDetail Pulumi.AzureNative.RecoveryServices.Inputs.ErrorDetailResponse

Error details in last backup

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

BackupManagementType string

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetailsResponse

Health details of different KPIs

LastBackupErrorDetail ErrorDetailResponse

Error details in last backup

LastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

friendlyName String

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetailsResponse>

Health details of different KPIs

lastBackupErrorDetail ErrorDetailResponse

Error details in last backup

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

backupManagementType string

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

friendlyName string

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

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

isScheduledForDeferredDelete boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths {[key: string]: KPIResourceHealthDetailsResponse}

Health details of different KPIs

lastBackupErrorDetail ErrorDetailResponse

Error details in last backup

lastBackupStatus string

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime string

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint string

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.

protectedItemDataSourceId string

Data ID of the protected item.

protectedItemHealthStatus string

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

sourceResourceId string

ARM ID of the resource to be backed up.

workloadType string

Type of workload this item represents.

backup_management_type str

Type of backup management for the backed up item.

backup_set_name str

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_time_in_utc str

Time for deferred deletion in UTC

deferred_delete_time_remaining str

Time remaining before the DS marked for deferred delete is permanently deleted

extended_info AzureVmWorkloadProtectedItemExtendedInfoResponse

Additional information for this backup item.

friendly_name str

Friendly name of the DB represented by this backup item.

is_deferred_delete_schedule_upcoming bool

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_for_deferred_delete bool

Flag to identify whether the DS is scheduled for deferred delete

kpis_healths Mapping[str, KPIResourceHealthDetailsResponse]

Health details of different KPIs

last_backup_error_detail ErrorDetailResponse

Error details in last backup

last_backup_status str

Last backup operation status. Possible values: Healthy, Unhealthy.

last_backup_time str

Timestamp of the last backup operation on this backup item.

last_recovery_point str

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_data_source_id str

Data ID of the protected item.

protected_item_health_status str

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_id str

ARM ID of the resource to be backed up.

workload_type str

Type of workload this item represents.

backupManagementType String

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

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.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<Property Map>

Health details of different KPIs

lastBackupErrorDetail Property Map

Error details in last backup

lastBackupStatus String

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String

Type of workload this item represents.

AzureVmWorkloadSAPHanaDatabaseProtectedItem

BackupManagementType string | Pulumi.AzureNative.RecoveryServices.BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

Name of the backup set the backup item belongs to

ContainerName string

Unique name of container

CreateMode string | Pulumi.AzureNative.RecoveryServices.CreateMode

Create mode to indicate recovery of existing soft deleted data source or creation of new data source.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo Pulumi.AzureNative.RecoveryServices.Inputs.AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths Dictionary<string, Pulumi.AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetails>

Health details of different KPIs

LastBackupStatus string | Pulumi.AzureNative.RecoveryServices.LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string | Pulumi.AzureNative.RecoveryServices.ProtectedItemHealthStatus

Health status of the backup item, evaluated based on last heartbeat received

ProtectionState string | Pulumi.AzureNative.RecoveryServices.ProtectionState

Backup state of this backup item.

ProtectionStatus string

Backup status of this backup item.

ServerName string

Host/Cluster Name for instance or AG

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | Pulumi.AzureNative.RecoveryServices.DataSourceType

Type of workload this item represents.

BackupManagementType string | BackupManagementType

Type of backup management for the backed up item.

BackupSetName string

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.

DeferredDeleteTimeInUTC string

Time for deferred deletion in UTC

DeferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

ExtendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

FriendlyName string

Friendly name of the DB represented by this backup item.

IsDeferredDeleteScheduleUpcoming bool

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

IsScheduledForDeferredDelete bool

Flag to identify whether the DS is scheduled for deferred delete

KpisHealths map[string]KPIResourceHealthDetails

Health details of different KPIs

LastBackupStatus string | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

LastBackupTime string

Timestamp of the last backup operation on this backup item.

LastRecoveryPoint string

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.

ProtectedItemDataSourceId string

Data ID of the protected item.

ProtectedItemHealthStatus string | ProtectedItemHealthStatus

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

SourceResourceId string

ARM ID of the resource to be backed up.

WorkloadType string | DataSourceType

Type of workload this item represents.

backupManagementType String | BackupManagementType

Type of backup management for the backed up item.

backupSetName String

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.

deferredDeleteTimeInUTC String

Time for deferred deletion in UTC

deferredDeleteTimeRemaining String

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendlyName String

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming Boolean

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

isScheduledForDeferredDelete Boolean

Flag to identify whether the DS is scheduled for deferred delete

kpisHealths Map<String,KPIResourceHealthDetails>

Health details of different KPIs

lastBackupStatus String | LastBackupStatus

Last backup operation status. Possible values: Healthy, Unhealthy.

lastBackupTime String

Timestamp of the last backup operation on this backup item.

lastRecoveryPoint String

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.

protectedItemDataSourceId String

Data ID of the protected item.

protectedItemHealthStatus String | ProtectedItemHealthStatus

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

sourceResourceId String

ARM ID of the resource to be backed up.

workloadType String | DataSourceType

Type of workload this item represents.

backupManagementType string | BackupManagementType

Type of backup management for the backed up item.

backupSetName string

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.

deferredDeleteTimeInUTC string

Time for deferred deletion in UTC

deferredDeleteTimeRemaining string

Time remaining before the DS marked for deferred delete is permanently deleted

extendedInfo AzureVmWorkloadProtectedItemExtendedInfo

Additional information for this backup item.

friendlyName string

Friendly name of the DB represented by this backup item.

isDeferredDeleteScheduleUpcoming boolean

Flag to identify whether the deferred deleted DS is to be purged soon