azure-native.recoveryservices.ProtectedItem
Explore with Pulumi AI
Base class for backup items. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2021-02-01.
Other available API versions: 2016-06-01, 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview.
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/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := recoveryservices.NewProtectedItem(ctx, "protectedItem", &recoveryservices.ProtectedItemArgs{
ContainerName: pulumi.String("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
FabricName: pulumi.String("Azure"),
Properties: &recoveryservices.AzureIaaSComputeVMProtectedItemArgs{
PolicyId: pulumi.String("/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy"),
ProtectedItemType: pulumi.String("Microsoft.Compute/virtualMachines"),
SourceResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1"),
},
ProtectedItemName: pulumi.String("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
ResourceGroupName: pulumi.String("SwaggerTestRg"),
VaultName: pulumi.String("NetSDKTestRsVault"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.recoveryservices.ProtectedItem;
import com.pulumi.azurenative.recoveryservices.ProtectedItemArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var protectedItem = new ProtectedItem("protectedItem", ProtectedItemArgs.builder()
.containerName("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
.fabricName("Azure")
.properties(AzureFileshareProtectedItemArgs.builder()
.policyId("/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy")
.protectedItemType("Microsoft.Compute/virtualMachines")
.sourceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1")
.build())
.protectedItemName("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
.resourceGroupName("SwaggerTestRg")
.vaultName("NetSDKTestRsVault")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
protected_item = azure_native.recoveryservices.ProtectedItem("protectedItem",
container_name="IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
fabric_name="Azure",
properties={
"policy_id": "/Subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/SwaggerTestRg/providers/Microsoft.RecoveryServices/vaults/NetSDKTestRsVault/backupPolicies/DefaultPolicy",
"protected_item_type": "Microsoft.Compute/virtualMachines",
"source_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
},
protected_item_name="VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
resource_group_name="SwaggerTestRg",
vault_name="NetSDKTestRsVault")
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 = AzureNative.RecoveryServices.ProtectionState.ProtectionStopped,
SourceResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
},
ProtectedItemName = "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
ResourceGroupName = "SwaggerTestRg",
VaultName = "NetSDKTestRsVault",
});
});
package main
import (
recoveryservices "github.com/pulumi/pulumi-azure-native-sdk/recoveryservices/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := recoveryservices.NewProtectedItem(ctx, "protectedItem", &recoveryservices.ProtectedItemArgs{
ContainerName: pulumi.String("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
FabricName: pulumi.String("Azure"),
Properties: &recoveryservices.AzureIaaSComputeVMProtectedItemArgs{
ProtectedItemType: pulumi.String("Microsoft.Compute/virtualMachines"),
ProtectionState: pulumi.String(recoveryservices.ProtectionStateProtectionStopped),
SourceResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1"),
},
ProtectedItemName: pulumi.String("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1"),
ResourceGroupName: pulumi.String("SwaggerTestRg"),
VaultName: pulumi.String("NetSDKTestRsVault"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.recoveryservices.ProtectedItem;
import com.pulumi.azurenative.recoveryservices.ProtectedItemArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var protectedItem = new ProtectedItem("protectedItem", ProtectedItemArgs.builder()
.containerName("IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
.fabricName("Azure")
.properties(AzureFileshareProtectedItemArgs.builder()
.protectedItemType("Microsoft.Compute/virtualMachines")
.protectionState("ProtectionStopped")
.sourceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1")
.build())
.protectedItemName("VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1")
.resourceGroupName("SwaggerTestRg")
.vaultName("NetSDKTestRsVault")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
protected_item = azure_native.recoveryservices.ProtectedItem("protectedItem",
container_name="IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
fabric_name="Azure",
properties={
"protected_item_type": "Microsoft.Compute/virtualMachines",
"protection_state": azure_native.recoveryservices.ProtectionState.PROTECTION_STOPPED,
"source_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
},
protected_item_name="VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
resource_group_name="SwaggerTestRg",
vault_name="NetSDKTestRsVault")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const protectedItem = new azure_native.recoveryservices.ProtectedItem("protectedItem", {
containerName: "IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
fabricName: "Azure",
properties: {
protectedItemType: "Microsoft.Compute/virtualMachines",
protectionState: azure_native.recoveryservices.ProtectionState.ProtectionStopped,
sourceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1",
},
protectedItemName: "VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1",
resourceGroupName: "SwaggerTestRg",
vaultName: "NetSDKTestRsVault",
});
resources:
protectedItem:
type: azure-native:recoveryservices:ProtectedItem
properties:
containerName: IaasVMContainer;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1
fabricName: Azure
properties:
protectedItemType: Microsoft.Compute/virtualMachines
protectionState: ProtectionStopped
sourceResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/netsdktestrg/providers/Microsoft.Compute/virtualMachines/netvmtestv2vm1
protectedItemName: VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1
resourceGroupName: SwaggerTestRg
vaultName: NetSDKTestRsVault
Create ProtectedItem Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProtectedItem(name: string, args: ProtectedItemArgs, opts?: CustomResourceOptions);
@overload
def ProtectedItem(resource_name: str,
args: ProtectedItemArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProtectedItem(resource_name: str,
opts: Optional[ResourceOptions] = None,
container_name: Optional[str] = None,
fabric_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
vault_name: Optional[str] = None,
e_tag: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[Union[AzureFileshareProtectedItemArgs, AzureIaaSClassicComputeVMProtectedItemArgs, AzureIaaSComputeVMProtectedItemArgs, AzureIaaSVMProtectedItemArgs, AzureSqlProtectedItemArgs, AzureVmWorkloadProtectedItemArgs, AzureVmWorkloadSAPAseDatabaseProtectedItemArgs, AzureVmWorkloadSAPHanaDBInstanceProtectedItemArgs, AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs, AzureVmWorkloadSQLDatabaseProtectedItemArgs, DPMProtectedItemArgs, GenericProtectedItemArgs, MabFileFolderProtectedItemArgs]] = None,
protected_item_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewProtectedItem(ctx *Context, name string, args ProtectedItemArgs, opts ...ResourceOption) (*ProtectedItem, error)
public ProtectedItem(string name, ProtectedItemArgs args, CustomResourceOptions? opts = null)
public ProtectedItem(String name, ProtectedItemArgs args)
public ProtectedItem(String name, ProtectedItemArgs args, CustomResourceOptions options)
type: azure-native:recoveryservices:ProtectedItem
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProtectedItemArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var azure_nativeProtectedItemResource = new AzureNative.RecoveryServices.ProtectedItem("azure-nativeProtectedItemResource", new()
{
ContainerName = "string",
FabricName = "string",
ResourceGroupName = "string",
VaultName = "string",
ETag = "string",
Location = "string",
Properties = new AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemArgs
{
ProtectedItemType = "AzureFileShareProtectedItem",
IsScheduledForDeferredDelete = false,
DeferredDeleteTimeInUTC = "string",
LastBackupStatus = "string",
DeferredDeleteTimeRemaining = "string",
ExtendedInfo = new AzureNative.RecoveryServices.Inputs.AzureFileshareProtectedItemExtendedInfoArgs
{
OldestRecoveryPoint = "string",
PolicyState = "string",
RecoveryPointCount = 0,
},
FriendlyName = "string",
IsArchiveEnabled = false,
IsDeferredDeleteScheduleUpcoming = false,
LastBackupTime = "string",
BackupSetName = "string",
SourceResourceId = "string",
CreateMode = "string",
IsRehydrate = false,
LastRecoveryPoint = "string",
PolicyId = "string",
PolicyName = "string",
ContainerName = "string",
ProtectionState = "string",
ProtectionStatus = "string",
ResourceGuardOperationRequests = new[]
{
"string",
},
SoftDeleteRetentionPeriodInDays = 0,
KpisHealths =
{
{ "string", new AzureNative.RecoveryServices.Inputs.KPIResourceHealthDetailsArgs
{
ResourceHealthStatus = "string",
} },
},
},
ProtectedItemName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := recoveryservices.NewProtectedItem(ctx, "azure-nativeProtectedItemResource", &recoveryservices.ProtectedItemArgs{
ContainerName: pulumi.String("string"),
FabricName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
VaultName: pulumi.String("string"),
ETag: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &recoveryservices.AzureFileshareProtectedItemArgs{
ProtectedItemType: pulumi.String("AzureFileShareProtectedItem"),
IsScheduledForDeferredDelete: pulumi.Bool(false),
DeferredDeleteTimeInUTC: pulumi.String("string"),
LastBackupStatus: pulumi.String("string"),
DeferredDeleteTimeRemaining: pulumi.String("string"),
ExtendedInfo: &recoveryservices.AzureFileshareProtectedItemExtendedInfoArgs{
OldestRecoveryPoint: pulumi.String("string"),
PolicyState: pulumi.String("string"),
RecoveryPointCount: pulumi.Int(0),
},
FriendlyName: pulumi.String("string"),
IsArchiveEnabled: pulumi.Bool(false),
IsDeferredDeleteScheduleUpcoming: pulumi.Bool(false),
LastBackupTime: pulumi.String("string"),
BackupSetName: pulumi.String("string"),
SourceResourceId: pulumi.String("string"),
CreateMode: pulumi.String("string"),
IsRehydrate: pulumi.Bool(false),
LastRecoveryPoint: pulumi.String("string"),
PolicyId: pulumi.String("string"),
PolicyName: pulumi.String("string"),
ContainerName: pulumi.String("string"),
ProtectionState: pulumi.String("string"),
ProtectionStatus: pulumi.String("string"),
ResourceGuardOperationRequests: pulumi.StringArray{
pulumi.String("string"),
},
SoftDeleteRetentionPeriodInDays: pulumi.Int(0),
KpisHealths: recoveryservices.KPIResourceHealthDetailsMap{
"string": &recoveryservices.KPIResourceHealthDetailsArgs{
ResourceHealthStatus: pulumi.String("string"),
},
},
},
ProtectedItemName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var azure_nativeProtectedItemResource = new ProtectedItem("azure-nativeProtectedItemResource", ProtectedItemArgs.builder()
.containerName("string")
.fabricName("string")
.resourceGroupName("string")
.vaultName("string")
.eTag("string")
.location("string")
.properties(AzureFileshareProtectedItemArgs.builder()
.protectedItemType("AzureFileShareProtectedItem")
.isScheduledForDeferredDelete(false)
.deferredDeleteTimeInUTC("string")
.lastBackupStatus("string")
.deferredDeleteTimeRemaining("string")
.extendedInfo(AzureFileshareProtectedItemExtendedInfoArgs.builder()
.oldestRecoveryPoint("string")
.policyState("string")
.recoveryPointCount(0)
.build())
.friendlyName("string")
.isArchiveEnabled(false)
.isDeferredDeleteScheduleUpcoming(false)
.lastBackupTime("string")
.backupSetName("string")
.sourceResourceId("string")
.createMode("string")
.isRehydrate(false)
.lastRecoveryPoint("string")
.policyId("string")
.policyName("string")
.containerName("string")
.protectionState("string")
.protectionStatus("string")
.resourceGuardOperationRequests("string")
.softDeleteRetentionPeriodInDays(0)
.kpisHealths(Map.of("string", Map.of("resourceHealthStatus", "string")))
.build())
.protectedItemName("string")
.tags(Map.of("string", "string"))
.build());
azure_native_protected_item_resource = azure_native.recoveryservices.ProtectedItem("azure-nativeProtectedItemResource",
container_name="string",
fabric_name="string",
resource_group_name="string",
vault_name="string",
e_tag="string",
location="string",
properties={
"protectedItemType": "AzureFileShareProtectedItem",
"isScheduledForDeferredDelete": False,
"deferredDeleteTimeInUTC": "string",
"lastBackupStatus": "string",
"deferredDeleteTimeRemaining": "string",
"extendedInfo": {
"oldestRecoveryPoint": "string",
"policyState": "string",
"recoveryPointCount": 0,
},
"friendlyName": "string",
"isArchiveEnabled": False,
"isDeferredDeleteScheduleUpcoming": False,
"lastBackupTime": "string",
"backupSetName": "string",
"sourceResourceId": "string",
"createMode": "string",
"isRehydrate": False,
"lastRecoveryPoint": "string",
"policyId": "string",
"policyName": "string",
"containerName": "string",
"protectionState": "string",
"protectionStatus": "string",
"resourceGuardOperationRequests": ["string"],
"softDeleteRetentionPeriodInDays": 0,
"kpisHealths": {
"string": {
"resourceHealthStatus": "string",
},
},
},
protected_item_name="string",
tags={
"string": "string",
})
const azure_nativeProtectedItemResource = new azure_native.recoveryservices.ProtectedItem("azure-nativeProtectedItemResource", {
containerName: "string",
fabricName: "string",
resourceGroupName: "string",
vaultName: "string",
eTag: "string",
location: "string",
properties: {
protectedItemType: "AzureFileShareProtectedItem",
isScheduledForDeferredDelete: false,
deferredDeleteTimeInUTC: "string",
lastBackupStatus: "string",
deferredDeleteTimeRemaining: "string",
extendedInfo: {
oldestRecoveryPoint: "string",
policyState: "string",
recoveryPointCount: 0,
},
friendlyName: "string",
isArchiveEnabled: false,
isDeferredDeleteScheduleUpcoming: false,
lastBackupTime: "string",
backupSetName: "string",
sourceResourceId: "string",
createMode: "string",
isRehydrate: false,
lastRecoveryPoint: "string",
policyId: "string",
policyName: "string",
containerName: "string",
protectionState: "string",
protectionStatus: "string",
resourceGuardOperationRequests: ["string"],
softDeleteRetentionPeriodInDays: 0,
kpisHealths: {
string: {
resourceHealthStatus: "string",
},
},
},
protectedItemName: "string",
tags: {
string: "string",
},
});
type: azure-native:recoveryservices:ProtectedItem
properties:
containerName: string
eTag: string
fabricName: string
location: string
properties:
backupSetName: string
containerName: string
createMode: string
deferredDeleteTimeInUTC: string
deferredDeleteTimeRemaining: string
extendedInfo:
oldestRecoveryPoint: string
policyState: string
recoveryPointCount: 0
friendlyName: string
isArchiveEnabled: false
isDeferredDeleteScheduleUpcoming: false
isRehydrate: false
isScheduledForDeferredDelete: false
kpisHealths:
string:
resourceHealthStatus: string
lastBackupStatus: string
lastBackupTime: string
lastRecoveryPoint: string
policyId: string
policyName: string
protectedItemType: AzureFileShareProtectedItem
protectionState: string
protectionStatus: string
resourceGuardOperationRequests:
- string
softDeleteRetentionPeriodInDays: 0
sourceResourceId: string
protectedItemName: string
resourceGroupName: string
tags:
string: string
vaultName: string
ProtectedItem Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The ProtectedItem resource accepts the following input properties:
- Container
Name string - Container name associated with the backup item.
- Fabric
Name string - Fabric name associated with the backup item.
- Resource
Group stringName - The name of the resource group where the recovery services vault is present.
- Vault
Name string - The name of the recovery services vault.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Properties
Pulumi.
Azure | Pulumi.Native. Recovery Services. Inputs. Azure Fileshare Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SClassic Compute VMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SCompute VMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Sql Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SAPAse Database Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SAPHana DBInstance Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SAPHana Database Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. Azure Vm Workload SQLDatabase Protected Item Azure | Pulumi.Native. Recovery Services. Inputs. DPMProtected Item Azure | Pulumi.Native. Recovery Services. Inputs. Generic Protected Item Azure Native. Recovery Services. Inputs. Mab File Folder Protected Item - ProtectedItemResource properties
- Protected
Item stringName - Item name to be backed up.
- Dictionary<string, string>
- Resource tags.
- Container
Name string - Container name associated with the backup item.
- Fabric
Name string - Fabric name associated with the backup item.
- Resource
Group stringName - The name of the resource group where the recovery services vault is present.
- Vault
Name string - The name of the recovery services vault.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Properties
Azure
Fileshare | AzureProtected Item Args Iaa | AzureSClassic Compute VMProtected Item Args Iaa | AzureSCompute VMProtected Item Args Iaa | AzureSVMProtected Item Args Sql | AzureProtected Item Args Vm | AzureWorkload Protected Item Args Vm | AzureWorkload SAPAse Database Protected Item Args Vm | AzureWorkload SAPHana DBInstance Protected Item Args Vm | AzureWorkload SAPHana Database Protected Item Args Vm | DPMProtectedWorkload SQLDatabase Protected Item Args Item | GenericArgs Protected | MabItem Args File Folder Protected Item Args - ProtectedItemResource properties
- Protected
Item stringName - Item name to be backed up.
- map[string]string
- Resource tags.
- container
Name String - Container name associated with the backup item.
- fabric
Name String - Fabric name associated with the backup item.
- resource
Group StringName - The name of the resource group where the recovery services vault is present.
- vault
Name String - The name of the recovery services vault.
- e
Tag String - Optional ETag.
- location String
- Resource location.
- properties
Azure
Fileshare | AzureProtected Item Iaa | AzureSClassic Compute VMProtected Item Iaa | AzureSCompute VMProtected Item Iaa | AzureSVMProtected Item Sql | AzureProtected Item Vm | AzureWorkload Protected Item Vm | AzureWorkload SAPAse Database Protected Item Vm | AzureWorkload SAPHana DBInstance Protected Item Vm | AzureWorkload SAPHana Database Protected Item Vm | DPMProtectedWorkload SQLDatabase Protected Item Item | GenericProtected | MabItem File Folder Protected Item - ProtectedItemResource properties
- protected
Item StringName - Item name to be backed up.
- Map<String,String>
- Resource tags.
- container
Name string - Container name associated with the backup item.
- fabric
Name string - Fabric name associated with the backup item.
- resource
Group stringName - The name of the resource group where the recovery services vault is present.
- vault
Name string - The name of the recovery services vault.
- e
Tag string - Optional ETag.
- location string
- Resource location.
- properties
Azure
Fileshare | AzureProtected Item Iaa | AzureSClassic Compute VMProtected Item Iaa | AzureSCompute VMProtected Item Iaa | AzureSVMProtected Item Sql | AzureProtected Item Vm | AzureWorkload Protected Item Vm | AzureWorkload SAPAse Database Protected Item Vm | AzureWorkload SAPHana DBInstance Protected Item Vm | AzureWorkload SAPHana Database Protected Item Vm | DPMProtectedWorkload SQLDatabase Protected Item Item | GenericProtected | MabItem File Folder Protected Item - ProtectedItemResource properties
- protected
Item stringName - Item name to be backed up.
- {[key: string]: string}
- Resource tags.
- container_
name str - Container name associated with the backup item.
- fabric_
name str - Fabric name associated with the backup item.
- resource_
group_ strname - The name of the resource group where the recovery services vault is present.
- vault_
name str - The name of the recovery services vault.
- e_
tag str - Optional ETag.
- location str
- Resource location.
- properties
Azure
Fileshare | AzureProtected Item Args Iaa | AzureSClassic Compute VMProtected Item Args Iaa | AzureSCompute VMProtected Item Args Iaa | AzureSVMProtected Item Args Sql | AzureProtected Item Args Vm | AzureWorkload Protected Item Args Vm | AzureWorkload SAPAse Database Protected Item Args Vm | AzureWorkload SAPHana DBInstance Protected Item Args Vm | AzureWorkload SAPHana Database Protected Item Args Vm | DPMProtectedWorkload SQLDatabase Protected Item Args Item | GenericArgs Protected | MabItem Args File Folder Protected Item Args - ProtectedItemResource properties
- protected_
item_ strname - Item name to be backed up.
- Mapping[str, str]
- Resource tags.
- container
Name String - Container name associated with the backup item.
- fabric
Name String - Fabric name associated with the backup item.
- resource
Group StringName - The name of the resource group where the recovery services vault is present.
- vault
Name String - The name of the recovery services vault.
- e
Tag String - Optional ETag.
- location String
- Resource location.
- properties Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- ProtectedItemResource properties
- protected
Item StringName - Item name to be backed up.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProtectedItem resource produces the following output properties:
Supporting Types
AzureFileshareProtectedItem, AzureFileshareProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Fileshare Protected Item Extended Info - Additional information with this backup item.
- Friendly
Name string - Friendly name of the fileshare represented by this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureFileshare Protected Item Extended Info - Additional information with this backup item.
- Friendly
Name string - Friendly name of the fileshare represented by this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | ProtectionState - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureFileshare Protected Item Extended Info - Additional information with this backup item.
- friendly
Name String - Friendly name of the fileshare represented by this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | ProtectionState - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureFileshare Protected Item Extended Info - Additional information with this backup item.
- friendly
Name string - Friendly name of the fileshare represented by this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string | ProtectionState - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureFileshare Protected Item Extended Info - Additional information with this backup item.
- friendly_
name str - Friendly name of the fileshare represented by this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str | ProtectionState - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information with this backup item.
- friendly
Name String - Friendly name of the fileshare represented by this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureFileshareProtectedItemExtendedInfo, AzureFileshareProtectedItemExtendedInfoArgs
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point IntegerCount - Number of available backup copies associated with this backup item.
- oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point numberCount - Number of available backup copies associated with this backup item.
- oldest_
recovery_ strpoint - The oldest backup copy available for this item in the service.
- policy_
state str - Indicates consistency of policy object and policy applied to this backup item.
- recovery_
point_ intcount - Number of available backup copies associated with this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point NumberCount - Number of available backup copies associated with this backup item.
AzureFileshareProtectedItemExtendedInfoResponse, AzureFileshareProtectedItemExtendedInfoResponseArgs
- Resource
State string - Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- Resource
State stringSync Time - The resource state sync time for this backup item.
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- Resource
State string - Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- Resource
State stringSync Time - The resource state sync time for this backup item.
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- resource
State String - Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resource
State StringSync Time - The resource state sync time for this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point IntegerCount - Number of available backup copies associated with this backup item.
- resource
State string - Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resource
State stringSync Time - The resource state sync time for this backup item.
- oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point numberCount - Number of available backup copies associated with this backup item.
- resource_
state str - Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resource_
state_ strsync_ time - The resource state sync time for this backup item.
- oldest_
recovery_ strpoint - The oldest backup copy available for this item in the service.
- policy_
state str - Indicates consistency of policy object and policy applied to this backup item.
- recovery_
point_ intcount - Number of available backup copies associated with this backup item.
- resource
State String - Indicates the state of this resource. Possible values are from enum ResourceState {Invalid, Active, SoftDeleted, Deleted}
- resource
State StringSync Time - The resource state sync time for this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point NumberCount - Number of available backup copies associated with this backup item.
AzureFileshareProtectedItemResponse, AzureFileshareProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Fileshare Protected Item Extended Info Response - Additional information with this backup item.
- Friendly
Name string - Friendly name of the fileshare represented by this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureFileshare Protected Item Extended Info Response - Additional information with this backup item.
- Friendly
Name string - Friendly name of the fileshare represented by this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureFileshare Protected Item Extended Info Response - Additional information with this backup item.
- friendly
Name String - Friendly name of the fileshare represented by this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureFileshare Protected Item Extended Info Response - Additional information with this backup item.
- friendly
Name string - Friendly name of the fileshare represented by this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureFileshare Protected Item Extended Info Response - Additional information with this backup item.
- friendly_
name str - Friendly name of the fileshare represented by this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information with this backup item.
- friendly
Name String - Friendly name of the fileshare represented by this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureIaaSClassicComputeVMProtectedItem, AzureIaaSClassicComputeVMProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info - Additional information for this backup item.
- Extended
Properties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties - Extended Properties for Azure IaasVM Backup.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- Extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | ProtectionState - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | ProtectionState - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string | ProtectionState - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended_
properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str | ProtectionState - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- extended
Properties Property Map - Extended Properties for Azure IaasVM Backup.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureIaaSClassicComputeVMProtectedItemResponse, AzureIaaSClassicComputeVMProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the VM represented by this backup item.
- Health
Status string - Health status of protected item.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Protected
Item stringData Id - Data ID of the protected item.
- Vault
Id string - ID of the vault which protects this item
- Virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- Extended
Properties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties Response - Extended Properties for Azure IaasVM Backup.
- Health
Details List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> - Health details on this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the VM represented by this backup item.
- Health
Status string - Health status of protected item.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Protected
Item stringData Id - Data ID of the protected item.
- Vault
Id string - ID of the vault which protects this item
- Virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- Extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- Health
Details []AzureIaa SVMHealth Details Response - Health details on this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the VM represented by this backup item.
- health
Status String - Health status of protected item.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- protected
Item StringData Id - Data ID of the protected item.
- vault
Id String - ID of the vault which protects this item
- virtual
Machine StringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health
Details List<AzureIaa SVMHealth Details Response> - Health details on this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the VM represented by this backup item.
- health
Status string - Health status of protected item.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- protected
Item stringData Id - Data ID of the protected item.
- vault
Id string - ID of the vault which protects this item
- virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health
Details AzureIaa SVMHealth Details Response[] - Health details on this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the VM represented by this backup item.
- health_
status str - Health status of protected item.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- protected_
item_ strdata_ id - Data ID of the protected item.
- vault_
id str - ID of the vault which protects this item
- virtual_
machine_ strid - Fully qualified ARM ID of the virtual machine represented by this item.
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended_
properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health_
details Sequence[AzureIaa SVMHealth Details Response] - Health details on this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the VM represented by this backup item.
- health
Status String - Health status of protected item.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- protected
Item StringData Id - Data ID of the protected item.
- vault
Id String - ID of the vault which protects this item
- virtual
Machine StringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- extended
Properties Property Map - Extended Properties for Azure IaasVM Backup.
- health
Details List<Property Map> - Health details on this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureIaaSComputeVMProtectedItem, AzureIaaSComputeVMProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info - Additional information for this backup item.
- Extended
Properties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties - Extended Properties for Azure IaasVM Backup.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- Extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | ProtectionState - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | ProtectionState - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string | ProtectionState - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended_
properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str | ProtectionState - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- extended
Properties Property Map - Extended Properties for Azure IaasVM Backup.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureIaaSComputeVMProtectedItemResponse, AzureIaaSComputeVMProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the VM represented by this backup item.
- Health
Status string - Health status of protected item.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Protected
Item stringData Id - Data ID of the protected item.
- Vault
Id string - ID of the vault which protects this item
- Virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- Extended
Properties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties Response - Extended Properties for Azure IaasVM Backup.
- Health
Details List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> - Health details on this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the VM represented by this backup item.
- Health
Status string - Health status of protected item.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Protected
Item stringData Id - Data ID of the protected item.
- Vault
Id string - ID of the vault which protects this item
- Virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- Extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- Health
Details []AzureIaa SVMHealth Details Response - Health details on this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the VM represented by this backup item.
- health
Status String - Health status of protected item.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- protected
Item StringData Id - Data ID of the protected item.
- vault
Id String - ID of the vault which protects this item
- virtual
Machine StringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health
Details List<AzureIaa SVMHealth Details Response> - Health details on this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the VM represented by this backup item.
- health
Status string - Health status of protected item.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- protected
Item stringData Id - Data ID of the protected item.
- vault
Id string - ID of the vault which protects this item
- virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health
Details AzureIaa SVMHealth Details Response[] - Health details on this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the VM represented by this backup item.
- health_
status str - Health status of protected item.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- protected_
item_ strdata_ id - Data ID of the protected item.
- vault_
id str - ID of the vault which protects this item
- virtual_
machine_ strid - Fully qualified ARM ID of the virtual machine represented by this item.
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended_
properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health_
details Sequence[AzureIaa SVMHealth Details Response] - Health details on this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the VM represented by this backup item.
- health
Status String - Health status of protected item.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- protected
Item StringData Id - Data ID of the protected item.
- vault
Id String - ID of the vault which protects this item
- virtual
Machine StringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- extended
Properties Property Map - Extended Properties for Azure IaasVM Backup.
- health
Details List<Property Map> - Health details on this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureIaaSVMHealthDetailsResponse, AzureIaaSVMHealthDetailsResponseArgs
- Code int
- Health Code
- Message string
- Health Message
- Recommendations List<string>
- Health Recommended Actions
- Title string
- Health Title
- Code int
- Health Code
- Message string
- Health Message
- Recommendations []string
- Health Recommended Actions
- Title string
- Health Title
- code Integer
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
- code number
- Health Code
- message string
- Health Message
- recommendations string[]
- Health Recommended Actions
- title string
- Health Title
- code int
- Health Code
- message str
- Health Message
- recommendations Sequence[str]
- Health Recommended Actions
- title str
- Health Title
- code Number
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
AzureIaaSVMProtectedItem, AzureIaaSVMProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info - Additional information for this backup item.
- Extended
Properties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties - Extended Properties for Azure IaasVM Backup.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- Extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | ProtectionState - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | ProtectionState - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended
Properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string | ProtectionState - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureIaa SVMProtected Item Extended Info - Additional information for this backup item.
- extended_
properties ExtendedProperties - Extended Properties for Azure IaasVM Backup.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str | ProtectionState - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- extended
Properties Property Map - Extended Properties for Azure IaasVM Backup.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureIaaSVMProtectedItemExtendedInfo, AzureIaaSVMProtectedItemExtendedInfoArgs
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
Inconsistent bool - Specifies if backup policy associated with the backup item is inconsistent.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
Inconsistent bool - Specifies if backup policy associated with the backup item is inconsistent.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
Inconsistent Boolean - Specifies if backup policy associated with the backup item is inconsistent.
- recovery
Point IntegerCount - Number of backup copies available for this backup item.
- newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
Inconsistent boolean - Specifies if backup policy associated with the backup item is inconsistent.
- recovery
Point numberCount - Number of backup copies available for this backup item.
- newest_
recovery_ strpoint_ in_ archive - The latest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint - The oldest backup copy available for this backup item across all tiers.
- oldest_
recovery_ strpoint_ in_ archive - The oldest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint_ in_ vault - The oldest backup copy available for this backup item in vault tier
- policy_
inconsistent bool - Specifies if backup policy associated with the backup item is inconsistent.
- recovery_
point_ intcount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
Inconsistent Boolean - Specifies if backup policy associated with the backup item is inconsistent.
- recovery
Point NumberCount - Number of backup copies available for this backup item.
AzureIaaSVMProtectedItemExtendedInfoResponse, AzureIaaSVMProtectedItemExtendedInfoResponseArgs
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
Inconsistent bool - Specifies if backup policy associated with the backup item is inconsistent.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
Inconsistent bool - Specifies if backup policy associated with the backup item is inconsistent.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
Inconsistent Boolean - Specifies if backup policy associated with the backup item is inconsistent.
- recovery
Point IntegerCount - Number of backup copies available for this backup item.
- newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
Inconsistent boolean - Specifies if backup policy associated with the backup item is inconsistent.
- recovery
Point numberCount - Number of backup copies available for this backup item.
- newest_
recovery_ strpoint_ in_ archive - The latest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint - The oldest backup copy available for this backup item across all tiers.
- oldest_
recovery_ strpoint_ in_ archive - The oldest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint_ in_ vault - The oldest backup copy available for this backup item in vault tier
- policy_
inconsistent bool - Specifies if backup policy associated with the backup item is inconsistent.
- recovery_
point_ intcount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
Inconsistent Boolean - Specifies if backup policy associated with the backup item is inconsistent.
- recovery
Point NumberCount - Number of backup copies available for this backup item.
AzureIaaSVMProtectedItemResponse, AzureIaaSVMProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the VM represented by this backup item.
- Health
Status string - Health status of protected item.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Protected
Item stringData Id - Data ID of the protected item.
- Vault
Id string - ID of the vault which protects this item
- Virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- Extended
Properties Pulumi.Azure Native. Recovery Services. Inputs. Extended Properties Response - Extended Properties for Azure IaasVM Backup.
- Health
Details List<Pulumi.Azure Native. Recovery Services. Inputs. Azure Iaa SVMHealth Details Response> - Health details on this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the VM represented by this backup item.
- Health
Status string - Health status of protected item.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Protected
Item stringData Id - Data ID of the protected item.
- Vault
Id string - ID of the vault which protects this item
- Virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- Extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- Health
Details []AzureIaa SVMHealth Details Response - Health details on this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup stringStatus - Last backup operation status.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Backup state of this backup item.
- Protection
Status string - Backup status of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the VM represented by this backup item.
- health
Status String - Health status of protected item.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- protected
Item StringData Id - Data ID of the protected item.
- vault
Id String - ID of the vault which protects this item
- virtual
Machine StringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health
Details List<AzureIaa SVMHealth Details Response> - Health details on this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the VM represented by this backup item.
- health
Status string - Health status of protected item.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- protected
Item stringData Id - Data ID of the protected item.
- vault
Id string - ID of the vault which protects this item
- virtual
Machine stringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended
Properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health
Details AzureIaa SVMHealth Details Response[] - Health details on this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup stringStatus - Last backup operation status.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Backup state of this backup item.
- protection
Status string - Backup status of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the VM represented by this backup item.
- health_
status str - Health status of protected item.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- protected_
item_ strdata_ id - Data ID of the protected item.
- vault_
id str - ID of the vault which protects this item
- virtual_
machine_ strid - Fully qualified ARM ID of the virtual machine represented by this item.
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureIaa SVMProtected Item Extended Info Response - Additional information for this backup item.
- extended_
properties ExtendedProperties Response - Extended Properties for Azure IaasVM Backup.
- health_
details Sequence[AzureIaa SVMHealth Details Response] - Health details on this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ strstatus - Last backup operation status.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Backup state of this backup item.
- protection_
status str - Backup status of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the VM represented by this backup item.
- health
Status String - Health status of protected item.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- protected
Item StringData Id - Data ID of the protected item.
- vault
Id String - ID of the vault which protects this item
- virtual
Machine StringId - Fully qualified ARM ID of the virtual machine represented by this item.
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- extended
Properties Property Map - Extended Properties for Azure IaasVM Backup.
- health
Details List<Property Map> - Health details on this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup StringStatus - Last backup operation status.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Backup state of this backup item.
- protection
Status String - Backup status of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureSqlProtectedItem, AzureSqlProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Sql Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protected Item State - Backup state of the backed up item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureSql Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- Protection
State string | ProtectedItem State Enum - Backup state of the backed up item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureSql Protected Item Extended Info - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection
State String | ProtectedItem State - Backup state of the backed up item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureSql Protected Item Extended Info - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection
State string | ProtectedItem State - Backup state of the backed up item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureSql Protected Item Extended Info - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection_
state str | ProtectedItem State - Backup state of the backed up item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of the backed up item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureSqlProtectedItemExtendedInfo, AzureSqlProtectedItemExtendedInfoArgs
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - State of the backup policy associated with this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - State of the backup policy associated with this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - State of the backup policy associated with this backup item.
- recovery
Point IntegerCount - Number of available backup copies associated with this backup item.
- oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- policy
State string - State of the backup policy associated with this backup item.
- recovery
Point numberCount - Number of available backup copies associated with this backup item.
- oldest_
recovery_ strpoint - The oldest backup copy available for this item in the service.
- policy_
state str - State of the backup policy associated with this backup item.
- recovery_
point_ intcount - Number of available backup copies associated with this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - State of the backup policy associated with this backup item.
- recovery
Point NumberCount - Number of available backup copies associated with this backup item.
AzureSqlProtectedItemExtendedInfoResponse, AzureSqlProtectedItemExtendedInfoResponseArgs
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - State of the backup policy associated with this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- Oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- Policy
State string - State of the backup policy associated with this backup item.
- Recovery
Point intCount - Number of available backup copies associated with this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - State of the backup policy associated with this backup item.
- recovery
Point IntegerCount - Number of available backup copies associated with this backup item.
- oldest
Recovery stringPoint - The oldest backup copy available for this item in the service.
- policy
State string - State of the backup policy associated with this backup item.
- recovery
Point numberCount - Number of available backup copies associated with this backup item.
- oldest_
recovery_ strpoint - The oldest backup copy available for this item in the service.
- policy_
state str - State of the backup policy associated with this backup item.
- recovery_
point_ intcount - Number of available backup copies associated with this backup item.
- oldest
Recovery StringPoint - The oldest backup copy available for this item in the service.
- policy
State String - State of the backup policy associated with this backup item.
- recovery
Point NumberCount - Number of available backup copies associated with this backup item.
AzureSqlProtectedItemResponse, AzureSqlProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Sql Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- Protection
State string - Backup state of the backed up item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureSql Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- Protection
State string - Backup state of the backed up item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureSql Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection
State String - Backup state of the backed up item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureSql Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection
State string - Backup state of the backed up item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureSql Protected Item Extended Info Response - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection_
state str - Backup state of the backed up item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Id - Internal ID of a backup item. Used by Azure SQL Backup engine to contact Recovery Services.
- protection
State String - Backup state of the backed up item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadProtectedItem, AzureVmWorkloadProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | ProtectionState - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup String | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | ProtectionState - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string | ProtectionState - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ str | Laststatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ str | Protectedhealth_ status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str | ProtectionState - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadProtectedItemExtendedInfo, AzureVmWorkloadProtectedItemExtendedInfoArgs
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Model string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Model string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Model String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point IntegerCount - Number of backup copies available for this backup item.
- newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Model string - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point numberCount - Number of backup copies available for this backup item.
- newest_
recovery_ strpoint_ in_ archive - The latest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint - The oldest backup copy available for this backup item across all tiers.
- oldest_
recovery_ strpoint_ in_ archive - The oldest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint_ in_ vault - The oldest backup copy available for this backup item in vault tier
- policy_
state str - Indicates consistency of policy object and policy applied to this backup item.
- recovery_
model str - Indicates consistency of policy object and policy applied to this backup item.
- recovery_
point_ intcount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Model String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point NumberCount - Number of backup copies available for this backup item.
AzureVmWorkloadProtectedItemExtendedInfoResponse, AzureVmWorkloadProtectedItemExtendedInfoResponseArgs
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Model string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- Newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- Oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- Oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Model string - Indicates consistency of policy object and policy applied to this backup item.
- Recovery
Point intCount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Model String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point IntegerCount - Number of backup copies available for this backup item.
- newest
Recovery stringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery stringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery stringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Model string - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point numberCount - Number of backup copies available for this backup item.
- newest_
recovery_ strpoint_ in_ archive - The latest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint - The oldest backup copy available for this backup item across all tiers.
- oldest_
recovery_ strpoint_ in_ archive - The oldest backup copy available for this backup item in archive tier
- oldest_
recovery_ strpoint_ in_ vault - The oldest backup copy available for this backup item in vault tier
- policy_
state str - Indicates consistency of policy object and policy applied to this backup item.
- recovery_
model str - Indicates consistency of policy object and policy applied to this backup item.
- recovery_
point_ intcount - Number of backup copies available for this backup item.
- newest
Recovery StringPoint In Archive - The latest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint - The oldest backup copy available for this backup item across all tiers.
- oldest
Recovery StringPoint In Archive - The oldest backup copy available for this backup item in archive tier
- oldest
Recovery StringPoint In Vault - The oldest backup copy available for this backup item in vault tier
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Model String - Indicates consistency of policy object and policy applied to this backup item.
- recovery
Point NumberCount - Number of backup copies available for this backup item.
AzureVmWorkloadProtectedItemResponse, AzureVmWorkloadProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup ErrorError Detail Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info Response - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info Response> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the DB represented by this backup item.
- protection
Status string - Backup status of this backup item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info Response[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the DB represented by this backup item.
- protection_
status str - Backup status of this backup item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ Errorerror_ detail Detail Response - Error details in last backup
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info Response] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ strhealth_ status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup Property MapError Detail - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSAPAseDatabaseProtectedItem, AzureVmWorkloadSAPAseDatabaseProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | ProtectionState - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup String | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | ProtectionState - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string | ProtectionState - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ str | Laststatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ str | Protectedhealth_ status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str | ProtectionState - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSAPAseDatabaseProtectedItemResponse, AzureVmWorkloadSAPAseDatabaseProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup ErrorError Detail Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info Response - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info Response> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the DB represented by this backup item.
- protection
Status string - Backup status of this backup item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info Response[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the DB represented by this backup item.
- protection_
status str - Backup status of this backup item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ Errorerror_ detail Detail Response - Error details in last backup
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info Response] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ strhealth_ status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup Property MapError Detail - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDBInstanceProtectedItem, AzureVmWorkloadSAPHanaDBInstanceProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | ProtectionState - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup String | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | ProtectionState - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string | ProtectionState - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ str | Laststatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ str | Protectedhealth_ status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str | ProtectionState - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDBInstanceProtectedItemResponse, AzureVmWorkloadSAPHanaDBInstanceProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup ErrorError Detail Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info Response - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info Response> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the DB represented by this backup item.
- protection
Status string - Backup status of this backup item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info Response[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the DB represented by this backup item.
- protection_
status str - Backup status of this backup item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ Errorerror_ detail Detail Response - Error details in last backup
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info Response] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ strhealth_ status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup Property MapError Detail - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDatabaseProtectedItem, AzureVmWorkloadSAPHanaDatabaseProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | ProtectionState - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup String | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | ProtectionState - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string | ProtectionState - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ str | Laststatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ str | Protectedhealth_ status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str | ProtectionState - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSAPHanaDatabaseProtectedItemResponse, AzureVmWorkloadSAPHanaDatabaseProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup ErrorError Detail Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info Response - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info Response> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the DB represented by this backup item.
- protection
Status string - Backup status of this backup item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info Response[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the DB represented by this backup item.
- protection_
status str - Backup status of this backup item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ Errorerror_ detail Detail Response - Error details in last backup
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info Response] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ strhealth_ status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup Property MapError Detail - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSQLDatabaseProtectedItem, AzureVmWorkloadSQLDatabaseProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details> - Health details of different KPIs
- Last
Backup string | Pulumi.Status Azure Native. Recovery Services. Last Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | Pulumi.Health Status Azure Native. Recovery Services. Protected Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details - Health details of different KPIs
- Last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string | ProtectionState - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details> - Health details of different KPIs
- last
Backup String | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | ProtectionState - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details} - Health details of different KPIs
- last
Backup string | LastStatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item string | ProtectedHealth Status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string | ProtectionState - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details] - Health details of different KPIs
- last_
backup_ str | Laststatus Backup Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ str | Protectedhealth_ status Item Health Status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str | ProtectionState - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup String | "Invalid" | "Healthy" | "Unhealthy" | "IRPending"Status - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item String | "Invalid" | "Healthy" | "Unhealthy" | "NotHealth Status Reachable" | "IRPending" - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
AzureVmWorkloadSQLDatabaseProtectedItemResponse, AzureVmWorkloadSQLDatabaseProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Vm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths Dictionary<string, Pulumi.Azure Native. Recovery Services. Inputs. KPIResource Health Details Response> - Health details of different KPIs
- Last
Backup Pulumi.Error Detail Azure Native. Recovery Services. Inputs. Error Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Friendly
Name string - Friendly name of the DB represented by this backup item.
- Protection
Status string - Backup status of this backup item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Kpis
Healths map[string]KPIResourceHealth Details Response - Health details of different KPIs
- Last
Backup ErrorError Detail Detail Response - Error details in last backup
- Last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Nodes
List []DistributedNodes Info Response - List of the nodes in case of distributed container.
- Parent
Name string - Parent name of the DB such as Instance or Availability Group.
- Parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protected
Item stringData Source Id - Data ID of the protected item.
- Protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- Protection
State string - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Server
Name string - Host/Cluster Name for instance or AG
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<String,KPIResourceHealth Details Response> - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<DistributedNodes Info Response> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- friendly
Name string - Friendly name of the DB represented by this backup item.
- protection
Status string - Backup status of this backup item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths {[key: string]: KPIResourceHealth Details Response} - Health details of different KPIs
- last
Backup ErrorError Detail Detail Response - Error details in last backup
- last
Backup stringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List DistributedNodes Info Response[] - List of the nodes in case of distributed container.
- parent
Name string - Parent name of the DB such as Instance or Availability Group.
- parent
Type string - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protected
Item stringData Source Id - Data ID of the protected item.
- protected
Item stringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State string - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name string - Host/Cluster Name for instance or AG
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- friendly_
name str - Friendly name of the DB represented by this backup item.
- protection_
status str - Backup status of this backup item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info AzureVm Workload Protected Item Extended Info Response - Additional information for this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis_
healths Mapping[str, KPIResourceHealth Details Response] - Health details of different KPIs
- last_
backup_ Errorerror_ detail Detail Response - Error details in last backup
- last_
backup_ strstatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes_
list Sequence[DistributedNodes Info Response] - List of the nodes in case of distributed container.
- parent_
name str - Parent name of the DB such as Instance or Availability Group.
- parent_
type str - Parent type of protected item, example: for a DB, standalone server or distributed
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protected_
item_ strdata_ source_ id - Data ID of the protected item.
- protected_
item_ strhealth_ status - Health status of the backup item, evaluated based on last heartbeat received
- protection_
state str - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- server_
name str - Host/Cluster Name for instance or AG
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- friendly
Name String - Friendly name of the DB represented by this backup item.
- protection
Status String - Backup status of this backup item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information for this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- kpis
Healths Map<Property Map> - Health details of different KPIs
- last
Backup Property MapError Detail - Error details in last backup
- last
Backup StringStatus - Last backup operation status. Possible values: Healthy, Unhealthy.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
- parent
Name String - Parent name of the DB such as Instance or Availability Group.
- parent
Type String - Parent type of protected item, example: for a DB, standalone server or distributed
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protected
Item StringData Source Id - Data ID of the protected item.
- protected
Item StringHealth Status - Health status of the backup item, evaluated based on last heartbeat received
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- server
Name String - Host/Cluster Name for instance or AG
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
CreateMode, CreateModeArgs
- Invalid
- Invalid
- Default
- Default
- Recover
- Recover
- Create
Mode Invalid - Invalid
- Create
Mode Default - Default
- Create
Mode Recover - Recover
- Invalid
- Invalid
- Default
- Default
- Recover
- Recover
- Invalid
- Invalid
- Default
- Default
- Recover
- Recover
- INVALID
- Invalid
- DEFAULT
- Default
- RECOVER
- Recover
- "Invalid"
- Invalid
- "Default"
- Default
- "Recover"
- Recover
DPMProtectedItem, DPMProtectedItemArgs
- Backup
Engine stringName - Backup Management server protecting this backup item
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. DPMProtected Item Extended Info - Extended info of the backup item.
- Friendly
Name string - Friendly name of the managed item
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protected Item State - Protection state of the backup engine
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Engine stringName - Backup Management server protecting this backup item
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info DPMProtectedItem Extended Info - Extended info of the backup item.
- Friendly
Name string - Friendly name of the managed item
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string | ProtectedItem State Enum - Protection state of the backup engine
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Engine StringName - Backup Management server protecting this backup item
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info DPMProtectedItem Extended Info - Extended info of the backup item.
- friendly
Name String - Friendly name of the managed item
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | ProtectedItem State - Protection state of the backup engine
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Engine stringName - Backup Management server protecting this backup item
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info DPMProtectedItem Extended Info - Extended info of the backup item.
- friendly
Name string - Friendly name of the managed item
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string | ProtectedItem State - Protection state of the backup engine
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
engine_ strname - Backup Management server protecting this backup item
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info DPMProtectedItem Extended Info - Extended info of the backup item.
- friendly_
name str - Friendly name of the managed item
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str | ProtectedItem State - Protection state of the backup engine
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Engine StringName - Backup Management server protecting this backup item
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Extended info of the backup item.
- friendly
Name String - Friendly name of the managed item
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Protection state of the backup engine
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
DPMProtectedItemExtendedInfo, DPMProtectedItemExtendedInfoArgs
- Disk
Storage stringUsed In Bytes - Used Disk storage in bytes.
- Is
Collocated bool - To check if backup item is collocated.
- Is
Present boolOn Cloud - To check if backup item is cloud protected.
- Last
Backup stringStatus - Last backup status information on backup item.
- Last
Refreshed stringAt - Last refresh time on backup item.
- Oldest
Recovery stringPoint - Oldest cloud recovery point time.
- On
Premise stringLatest Recovery Point - latest disk recovery point time.
- On
Premise stringOldest Recovery Point - Oldest disk recovery point time.
- On
Premise intRecovery Point Count - disk recovery point count.
- Protectable
Object Dictionary<string, string>Load Path - Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- Protection
Group stringName - Protection group name of the backup item.
- Recovery
Point intCount - cloud recovery point count.
- Total
Disk stringStorage Size In Bytes - total Disk storage in bytes.
- Disk
Storage stringUsed In Bytes - Used Disk storage in bytes.
- Is
Collocated bool - To check if backup item is collocated.
- Is
Present boolOn Cloud - To check if backup item is cloud protected.
- Last
Backup stringStatus - Last backup status information on backup item.
- Last
Refreshed stringAt - Last refresh time on backup item.
- Oldest
Recovery stringPoint - Oldest cloud recovery point time.
- On
Premise stringLatest Recovery Point - latest disk recovery point time.
- On
Premise stringOldest Recovery Point - Oldest disk recovery point time.
- On
Premise intRecovery Point Count - disk recovery point count.
- Protectable
Object map[string]stringLoad Path - Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- Protection
Group stringName - Protection group name of the backup item.
- Recovery
Point intCount - cloud recovery point count.
- Total
Disk stringStorage Size In Bytes - total Disk storage in bytes.
- disk
Storage StringUsed In Bytes - Used Disk storage in bytes.
- is
Collocated Boolean - To check if backup item is collocated.
- is
Present BooleanOn Cloud - To check if backup item is cloud protected.
- last
Backup StringStatus - Last backup status information on backup item.
- last
Refreshed StringAt - Last refresh time on backup item.
- oldest
Recovery StringPoint - Oldest cloud recovery point time.
- on
Premise StringLatest Recovery Point - latest disk recovery point time.
- on
Premise StringOldest Recovery Point - Oldest disk recovery point time.
- on
Premise IntegerRecovery Point Count - disk recovery point count.
- protectable
Object Map<String,String>Load Path - Attribute to provide information on various DBs.
- protected_ Boolean
- To check if backup item is disk protected.
- protection
Group StringName - Protection group name of the backup item.
- recovery
Point IntegerCount - cloud recovery point count.
- total
Disk StringStorage Size In Bytes - total Disk storage in bytes.
- disk
Storage stringUsed In Bytes - Used Disk storage in bytes.
- is
Collocated boolean - To check if backup item is collocated.
- is
Present booleanOn Cloud - To check if backup item is cloud protected.
- last
Backup stringStatus - Last backup status information on backup item.
- last
Refreshed stringAt - Last refresh time on backup item.
- oldest
Recovery stringPoint - Oldest cloud recovery point time.
- on
Premise stringLatest Recovery Point - latest disk recovery point time.
- on
Premise stringOldest Recovery Point - Oldest disk recovery point time.
- on
Premise numberRecovery Point Count - disk recovery point count.
- protectable
Object {[key: string]: string}Load Path - Attribute to provide information on various DBs.
- protected boolean
- To check if backup item is disk protected.
- protection
Group stringName - Protection group name of the backup item.
- recovery
Point numberCount - cloud recovery point count.
- total
Disk stringStorage Size In Bytes - total Disk storage in bytes.
- disk_
storage_ strused_ in_ bytes - Used Disk storage in bytes.
- is_
collocated bool - To check if backup item is collocated.
- is_
present_ boolon_ cloud - To check if backup item is cloud protected.
- last_
backup_ strstatus - Last backup status information on backup item.
- last_
refreshed_ strat - Last refresh time on backup item.
- oldest_
recovery_ strpoint - Oldest cloud recovery point time.
- on_
premise_ strlatest_ recovery_ point - latest disk recovery point time.
- on_
premise_ stroldest_ recovery_ point - Oldest disk recovery point time.
- on_
premise_ intrecovery_ point_ count - disk recovery point count.
- protectable_
object_ Mapping[str, str]load_ path - Attribute to provide information on various DBs.
- protected bool
- To check if backup item is disk protected.
- protection_
group_ strname - Protection group name of the backup item.
- recovery_
point_ intcount - cloud recovery point count.
- total_
disk_ strstorage_ size_ in_ bytes - total Disk storage in bytes.
- disk
Storage StringUsed In Bytes - Used Disk storage in bytes.
- is
Collocated Boolean - To check if backup item is collocated.
- is
Present BooleanOn Cloud - To check if backup item is cloud protected.
- last
Backup StringStatus - Last backup status information on backup item.
- last
Refreshed StringAt - Last refresh time on backup item.
- oldest
Recovery StringPoint - Oldest cloud recovery point time.
- on
Premise StringLatest Recovery Point - latest disk recovery point time.
- on
Premise StringOldest Recovery Point - Oldest disk recovery point time.
- on
Premise NumberRecovery Point Count - disk recovery point count.
- protectable
Object Map<String>Load Path - Attribute to provide information on various DBs.
- protected Boolean
- To check if backup item is disk protected.
- protection
Group StringName - Protection group name of the backup item.
- recovery
Point NumberCount - cloud recovery point count.
- total
Disk StringStorage Size In Bytes - total Disk storage in bytes.
DPMProtectedItemExtendedInfoResponse, DPMProtectedItemExtendedInfoResponseArgs
- Disk
Storage stringUsed In Bytes - Used Disk storage in bytes.
- Is
Collocated bool - To check if backup item is collocated.
- Is
Present boolOn Cloud - To check if backup item is cloud protected.
- Last
Backup stringStatus - Last backup status information on backup item.
- Last
Refreshed stringAt - Last refresh time on backup item.
- Oldest
Recovery stringPoint - Oldest cloud recovery point time.
- On
Premise stringLatest Recovery Point - latest disk recovery point time.
- On
Premise stringOldest Recovery Point - Oldest disk recovery point time.
- On
Premise intRecovery Point Count - disk recovery point count.
- Protectable
Object Dictionary<string, string>Load Path - Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- Protection
Group stringName - Protection group name of the backup item.
- Recovery
Point intCount - cloud recovery point count.
- Total
Disk stringStorage Size In Bytes - total Disk storage in bytes.
- Disk
Storage stringUsed In Bytes - Used Disk storage in bytes.
- Is
Collocated bool - To check if backup item is collocated.
- Is
Present boolOn Cloud - To check if backup item is cloud protected.
- Last
Backup stringStatus - Last backup status information on backup item.
- Last
Refreshed stringAt - Last refresh time on backup item.
- Oldest
Recovery stringPoint - Oldest cloud recovery point time.
- On
Premise stringLatest Recovery Point - latest disk recovery point time.
- On
Premise stringOldest Recovery Point - Oldest disk recovery point time.
- On
Premise intRecovery Point Count - disk recovery point count.
- Protectable
Object map[string]stringLoad Path - Attribute to provide information on various DBs.
- Protected bool
- To check if backup item is disk protected.
- Protection
Group stringName - Protection group name of the backup item.
- Recovery
Point intCount - cloud recovery point count.
- Total
Disk stringStorage Size In Bytes - total Disk storage in bytes.
- disk
Storage StringUsed In Bytes - Used Disk storage in bytes.
- is
Collocated Boolean - To check if backup item is collocated.
- is
Present BooleanOn Cloud - To check if backup item is cloud protected.
- last
Backup StringStatus - Last backup status information on backup item.
- last
Refreshed StringAt - Last refresh time on backup item.
- oldest
Recovery StringPoint - Oldest cloud recovery point time.
- on
Premise StringLatest Recovery Point - latest disk recovery point time.
- on
Premise StringOldest Recovery Point - Oldest disk recovery point time.
- on
Premise IntegerRecovery Point Count - disk recovery point count.
- protectable
Object Map<String,String>Load Path - Attribute to provide information on various DBs.
- protected_ Boolean
- To check if backup item is disk protected.
- protection
Group StringName - Protection group name of the backup item.
- recovery
Point IntegerCount - cloud recovery point count.
- total
Disk StringStorage Size In Bytes - total Disk storage in bytes.
- disk
Storage stringUsed In Bytes - Used Disk storage in bytes.
- is
Collocated boolean - To check if backup item is collocated.
- is
Present booleanOn Cloud - To check if backup item is cloud protected.
- last
Backup stringStatus - Last backup status information on backup item.
- last
Refreshed stringAt - Last refresh time on backup item.
- oldest
Recovery stringPoint - Oldest cloud recovery point time.
- on
Premise stringLatest Recovery Point - latest disk recovery point time.
- on
Premise stringOldest Recovery Point - Oldest disk recovery point time.
- on
Premise numberRecovery Point Count - disk recovery point count.
- protectable
Object {[key: string]: string}Load Path - Attribute to provide information on various DBs.
- protected boolean
- To check if backup item is disk protected.
- protection
Group stringName - Protection group name of the backup item.
- recovery
Point numberCount - cloud recovery point count.
- total
Disk stringStorage Size In Bytes - total Disk storage in bytes.
- disk_
storage_ strused_ in_ bytes - Used Disk storage in bytes.
- is_
collocated bool - To check if backup item is collocated.
- is_
present_ boolon_ cloud - To check if backup item is cloud protected.
- last_
backup_ strstatus - Last backup status information on backup item.
- last_
refreshed_ strat - Last refresh time on backup item.
- oldest_
recovery_ strpoint - Oldest cloud recovery point time.
- on_
premise_ strlatest_ recovery_ point - latest disk recovery point time.
- on_
premise_ stroldest_ recovery_ point - Oldest disk recovery point time.
- on_
premise_ intrecovery_ point_ count - disk recovery point count.
- protectable_
object_ Mapping[str, str]load_ path - Attribute to provide information on various DBs.
- protected bool
- To check if backup item is disk protected.
- protection_
group_ strname - Protection group name of the backup item.
- recovery_
point_ intcount - cloud recovery point count.
- total_
disk_ strstorage_ size_ in_ bytes - total Disk storage in bytes.
- disk
Storage StringUsed In Bytes - Used Disk storage in bytes.
- is
Collocated Boolean - To check if backup item is collocated.
- is
Present BooleanOn Cloud - To check if backup item is cloud protected.
- last
Backup StringStatus - Last backup status information on backup item.
- last
Refreshed StringAt - Last refresh time on backup item.
- oldest
Recovery StringPoint - Oldest cloud recovery point time.
- on
Premise StringLatest Recovery Point - latest disk recovery point time.
- on
Premise StringOldest Recovery Point - Oldest disk recovery point time.
- on
Premise NumberRecovery Point Count - disk recovery point count.
- protectable
Object Map<String>Load Path - Attribute to provide information on various DBs.
- protected Boolean
- To check if backup item is disk protected.
- protection
Group StringName - Protection group name of the backup item.
- recovery
Point NumberCount - cloud recovery point count.
- total
Disk StringStorage Size In Bytes - total Disk storage in bytes.
DPMProtectedItemResponse, DPMProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Engine stringName - Backup Management server protecting this backup item
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. DPMProtected Item Extended Info Response - Extended info of the backup item.
- Friendly
Name string - Friendly name of the managed item
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Protection state of the backup engine
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Engine stringName - Backup Management server protecting this backup item
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info DPMProtectedItem Extended Info Response - Extended info of the backup item.
- Friendly
Name string - Friendly name of the managed item
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Protection state of the backup engine
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Engine StringName - Backup Management server protecting this backup item
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info DPMProtectedItem Extended Info Response - Extended info of the backup item.
- friendly
Name String - Friendly name of the managed item
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Protection state of the backup engine
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Engine stringName - Backup Management server protecting this backup item
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info DPMProtectedItem Extended Info Response - Extended info of the backup item.
- friendly
Name string - Friendly name of the managed item
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Protection state of the backup engine
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
engine_ strname - Backup Management server protecting this backup item
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info DPMProtectedItem Extended Info Response - Extended info of the backup item.
- friendly_
name str - Friendly name of the managed item
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Protection state of the backup engine
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Engine StringName - Backup Management server protecting this backup item
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Extended info of the backup item.
- friendly
Name String - Friendly name of the managed item
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Protection state of the backup engine
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
DiskExclusionProperties, DiskExclusionPropertiesArgs
- Disk
Lun List<int>List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- Is
Inclusion boolList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- Disk
Lun []intList - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- Is
Inclusion boolList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk
Lun List<Integer>List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is
Inclusion BooleanList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk
Lun number[]List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is
Inclusion booleanList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk_
lun_ Sequence[int]list - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is_
inclusion_ boollist - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk
Lun List<Number>List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is
Inclusion BooleanList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
DiskExclusionPropertiesResponse, DiskExclusionPropertiesResponseArgs
- Disk
Lun List<int>List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- Is
Inclusion boolList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- Disk
Lun []intList - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- Is
Inclusion boolList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk
Lun List<Integer>List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is
Inclusion BooleanList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk
Lun number[]List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is
Inclusion booleanList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk_
lun_ Sequence[int]list - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is_
inclusion_ boollist - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
- disk
Lun List<Number>List - List of Disks' Logical Unit Numbers (LUN) to be used for VM Protection.
- is
Inclusion BooleanList - Flag to indicate whether DiskLunList is to be included/ excluded from backup.
DistributedNodesInfo, DistributedNodesInfoArgs
- Node
Name string - Name of the node under a distributed container.
- Source
Resource stringId - ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- Node
Name string - Name of the node under a distributed container.
- Source
Resource stringId - ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- node
Name String - Name of the node under a distributed container.
- source
Resource StringId - ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
- node
Name string - Name of the node under a distributed container.
- source
Resource stringId - ARM resource id of the node
- status string
- Status of this Node. Failed | Succeeded
- node_
name str - Name of the node under a distributed container.
- source_
resource_ strid - ARM resource id of the node
- status str
- Status of this Node. Failed | Succeeded
- node
Name String - Name of the node under a distributed container.
- source
Resource StringId - ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
DistributedNodesInfoResponse, DistributedNodesInfoResponseArgs
- Error
Detail Pulumi.Azure Native. Recovery Services. Inputs. Error Detail Response - Error Details if the Status is non-success.
- Node
Name string - Name of the node under a distributed container.
- Source
Resource stringId - ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- Error
Detail ErrorDetail Response - Error Details if the Status is non-success.
- Node
Name string - Name of the node under a distributed container.
- Source
Resource stringId - ARM resource id of the node
- Status string
- Status of this Node. Failed | Succeeded
- error
Detail ErrorDetail Response - Error Details if the Status is non-success.
- node
Name String - Name of the node under a distributed container.
- source
Resource StringId - ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
- error
Detail ErrorDetail Response - Error Details if the Status is non-success.
- node
Name string - Name of the node under a distributed container.
- source
Resource stringId - ARM resource id of the node
- status string
- Status of this Node. Failed | Succeeded
- error_
detail ErrorDetail Response - Error Details if the Status is non-success.
- node_
name str - Name of the node under a distributed container.
- source_
resource_ strid - ARM resource id of the node
- status str
- Status of this Node. Failed | Succeeded
- error
Detail Property Map - Error Details if the Status is non-success.
- node
Name String - Name of the node under a distributed container.
- source
Resource StringId - ARM resource id of the node
- status String
- Status of this Node. Failed | Succeeded
ErrorDetailResponse, ErrorDetailResponseArgs
- Code string
- Error code.
- Message string
- Error Message related to the Code.
- Recommendations List<string>
- List of recommendation strings.
- Code string
- Error code.
- Message string
- Error Message related to the Code.
- Recommendations []string
- List of recommendation strings.
- code String
- Error code.
- message String
- Error Message related to the Code.
- recommendations List<String>
- List of recommendation strings.
- code string
- Error code.
- message string
- Error Message related to the Code.
- recommendations string[]
- List of recommendation strings.
- code str
- Error code.
- message str
- Error Message related to the Code.
- recommendations Sequence[str]
- List of recommendation strings.
- code String
- Error code.
- message String
- Error Message related to the Code.
- recommendations List<String>
- List of recommendation strings.
ExtendedProperties, ExtendedPropertiesArgs
- Disk
Exclusion Pulumi.Properties Azure Native. Recovery Services. Inputs. Disk Exclusion Properties - Extended Properties for Disk Exclusion.
- Linux
Vm stringApplication Name - Linux VM name
- Disk
Exclusion DiskProperties Exclusion Properties - Extended Properties for Disk Exclusion.
- Linux
Vm stringApplication Name - Linux VM name
- disk
Exclusion DiskProperties Exclusion Properties - Extended Properties for Disk Exclusion.
- linux
Vm StringApplication Name - Linux VM name
- disk
Exclusion DiskProperties Exclusion Properties - Extended Properties for Disk Exclusion.
- linux
Vm stringApplication Name - Linux VM name
- disk_
exclusion_ Diskproperties Exclusion Properties - Extended Properties for Disk Exclusion.
- linux_
vm_ strapplication_ name - Linux VM name
- disk
Exclusion Property MapProperties - Extended Properties for Disk Exclusion.
- linux
Vm StringApplication Name - Linux VM name
ExtendedPropertiesResponse, ExtendedPropertiesResponseArgs
- Disk
Exclusion Pulumi.Properties Azure Native. Recovery Services. Inputs. Disk Exclusion Properties Response - Extended Properties for Disk Exclusion.
- Linux
Vm stringApplication Name - Linux VM name
- Disk
Exclusion DiskProperties Exclusion Properties Response - Extended Properties for Disk Exclusion.
- Linux
Vm stringApplication Name - Linux VM name
- disk
Exclusion DiskProperties Exclusion Properties Response - Extended Properties for Disk Exclusion.
- linux
Vm StringApplication Name - Linux VM name
- disk
Exclusion DiskProperties Exclusion Properties Response - Extended Properties for Disk Exclusion.
- linux
Vm stringApplication Name - Linux VM name
- disk_
exclusion_ Diskproperties Exclusion Properties Response - Extended Properties for Disk Exclusion.
- linux_
vm_ strapplication_ name - Linux VM name
- disk
Exclusion Property MapProperties - Extended Properties for Disk Exclusion.
- linux
Vm StringApplication Name - Linux VM name
GenericProtectedItem, GenericProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Fabric
Name string - Name of this backup item's fabric.
- Friendly
Name string - Friendly name of the container.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Protected
Item doubleId - Data Plane Service ID of the protected item.
- Protection
State string | Pulumi.Azure Native. Recovery Services. Protection State - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Associations Dictionary<string, string> - Loosely coupled (type, value) associations (example - parent of a protected item)
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Fabric
Name string - Name of this backup item's fabric.
- Friendly
Name string - Friendly name of the container.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Protected
Item float64Id - Data Plane Service ID of the protected item.
- Protection
State string | ProtectionState - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Associations map[string]string - Loosely coupled (type, value) associations (example - parent of a protected item)
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric
Name String - Name of this backup item's fabric.
- friendly
Name String - Friendly name of the container.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- protected
Item DoubleId - Data Plane Service ID of the protected item.
- protection
State String | ProtectionState - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Associations Map<String,String> - Loosely coupled (type, value) associations (example - parent of a protected item)
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric
Name string - Name of this backup item's fabric.
- friendly
Name string - Friendly name of the container.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- protected
Item numberId - Data Plane Service ID of the protected item.
- protection
State string | ProtectionState - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Associations {[key: string]: string} - Loosely coupled (type, value) associations (example - parent of a protected item)
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric_
name str - Name of this backup item's fabric.
- friendly_
name str - Friendly name of the container.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- policy_
state str - Indicates consistency of policy object and policy applied to this backup item.
- protected_
item_ floatid - Data Plane Service ID of the protected item.
- protection_
state str | ProtectionState - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
associations Mapping[str, str] - Loosely coupled (type, value) associations (example - parent of a protected item)
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric
Name String - Name of this backup item's fabric.
- friendly
Name String - Friendly name of the container.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- protected
Item NumberId - Data Plane Service ID of the protected item.
- protection
State String | "Invalid" | "IRPending" | "Protected" | "ProtectionError" | "Protection Stopped" | "Protection Paused" | "Backups Suspended" - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Associations Map<String> - Loosely coupled (type, value) associations (example - parent of a protected item)
- source
Resource StringId - ARM ID of the resource to be backed up.
GenericProtectedItemResponse, GenericProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Fabric
Name string - Name of this backup item's fabric.
- Friendly
Name string - Friendly name of the container.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Protected
Item doubleId - Data Plane Service ID of the protected item.
- Protection
State string - Backup state of this backup item.
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Associations Dictionary<string, string> - Loosely coupled (type, value) associations (example - parent of a protected item)
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Fabric
Name string - Name of this backup item's fabric.
- Friendly
Name string - Friendly name of the container.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- Protected
Item float64Id - Data Plane Service ID of the protected item.
- Protection
State string - Backup state of this backup item.
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Associations map[string]string - Loosely coupled (type, value) associations (example - parent of a protected item)
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric
Name String - Name of this backup item's fabric.
- friendly
Name String - Friendly name of the container.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- protected
Item DoubleId - Data Plane Service ID of the protected item.
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Associations Map<String,String> - Loosely coupled (type, value) associations (example - parent of a protected item)
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric
Name string - Name of this backup item's fabric.
- friendly
Name string - Friendly name of the container.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- policy
State string - Indicates consistency of policy object and policy applied to this backup item.
- protected
Item numberId - Data Plane Service ID of the protected item.
- protection
State string - Backup state of this backup item.
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Associations {[key: string]: string} - Loosely coupled (type, value) associations (example - parent of a protected item)
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric_
name str - Name of this backup item's fabric.
- friendly_
name str - Friendly name of the container.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- policy_
state str - Indicates consistency of policy object and policy applied to this backup item.
- protected_
item_ floatid - Data Plane Service ID of the protected item.
- protection_
state str - Backup state of this backup item.
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
associations Mapping[str, str] - Loosely coupled (type, value) associations (example - parent of a protected item)
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- fabric
Name String - Name of this backup item's fabric.
- friendly
Name String - Friendly name of the container.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- policy
State String - Indicates consistency of policy object and policy applied to this backup item.
- protected
Item NumberId - Data Plane Service ID of the protected item.
- protection
State String - Backup state of this backup item.
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Associations Map<String> - Loosely coupled (type, value) associations (example - parent of a protected item)
- source
Resource StringId - ARM ID of the resource to be backed up.
KPIResourceHealthDetails, KPIResourceHealthDetailsArgs
- Resource
Health string | Pulumi.Status Azure Native. Recovery Services. Resource Health Status - Resource Health Status
- Resource
Health string | ResourceStatus Health Status - Resource Health Status
- resource
Health String | ResourceStatus Health Status - Resource Health Status
- resource
Health string | ResourceStatus Health Status - Resource Health Status
- resource_
health_ str | Resourcestatus Health Status - Resource Health Status
KPIResourceHealthDetailsResponse, KPIResourceHealthDetailsResponseArgs
- Resource
Health List<Pulumi.Details Azure Native. Recovery Services. Inputs. Resource Health Details Response> - Resource Health Status
- Resource
Health stringStatus - Resource Health Status
- Resource
Health []ResourceDetails Health Details Response - Resource Health Status
- Resource
Health stringStatus - Resource Health Status
- resource
Health List<ResourceDetails Health Details Response> - Resource Health Status
- resource
Health StringStatus - Resource Health Status
- resource
Health ResourceDetails Health Details Response[] - Resource Health Status
- resource
Health stringStatus - Resource Health Status
- resource_
health_ Sequence[Resourcedetails Health Details Response] - Resource Health Status
- resource_
health_ strstatus - Resource Health Status
- resource
Health List<Property Map>Details - Resource Health Status
- resource
Health StringStatus - Resource Health Status
LastBackupStatus, LastBackupStatusArgs
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- IRPending
- IRPending
- Last
Backup Status Invalid - Invalid
- Last
Backup Status Healthy - Healthy
- Last
Backup Status Unhealthy - Unhealthy
- Last
Backup Status IRPending - IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- IRPending
- IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- IRPending
- IRPending
- INVALID
- Invalid
- HEALTHY
- Healthy
- UNHEALTHY
- Unhealthy
- IR_PENDING
- IRPending
- "Invalid"
- Invalid
- "Healthy"
- Healthy
- "Unhealthy"
- Unhealthy
- "IRPending"
- IRPending
MabFileFolderProtectedItem, MabFileFolderProtectedItemArgs
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Computer
Name string - Name of the computer associated with this backup item.
- Container
Name string - Unique name of container
- Create
Mode string | Pulumi.Azure Native. Recovery Services. Create Mode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete doubleSync Time In UTC - Sync time for deferred deletion in UTC
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Mab File Folder Protected Item Extended Info - Additional information with this backup item.
- Friendly
Name string - Friendly name of this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Backup stringStatus - Status of last backup operation.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Protected, ProtectionStopped, IRPending or ProtectionError
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Computer
Name string - Name of the computer associated with this backup item.
- Container
Name string - Unique name of container
- Create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete float64Sync Time In UTC - Sync time for deferred deletion in UTC
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info MabFile Folder Protected Item Extended Info - Additional information with this backup item.
- Friendly
Name string - Friendly name of this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Backup stringStatus - Status of last backup operation.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Protected, ProtectionStopped, IRPending or ProtectionError
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- computer
Name String - Name of the computer associated with this backup item.
- container
Name String - Unique name of container
- create
Mode String | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete DoubleSync Time In UTC - Sync time for deferred deletion in UTC
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info MabFile Folder Protected Item Extended Info - Additional information with this backup item.
- friendly
Name String - Friendly name of this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Backup StringStatus - Status of last backup operation.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Protected, ProtectionStopped, IRPending or ProtectionError
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Set stringName - Name of the backup set the backup item belongs to
- computer
Name string - Name of the computer associated with this backup item.
- container
Name string - Unique name of container
- create
Mode string | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete numberSync Time In UTC - Sync time for deferred deletion in UTC
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info MabFile Folder Protected Item Extended Info - Additional information with this backup item.
- friendly
Name string - Friendly name of this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Backup stringStatus - Status of last backup operation.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Protected, ProtectionStopped, IRPending or ProtectionError
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- computer_
name str - Name of the computer associated with this backup item.
- container_
name str - Unique name of container
- create_
mode str | CreateMode - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ floatsync_ time_ in_ utc - Sync time for deferred deletion in UTC
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info MabFile Folder Protected Item Extended Info - Additional information with this backup item.
- friendly_
name str - Friendly name of this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
backup_ strstatus - Status of last backup operation.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Protected, ProtectionStopped, IRPending or ProtectionError
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Set StringName - Name of the backup set the backup item belongs to
- computer
Name String - Name of the computer associated with this backup item.
- container
Name String - Unique name of container
- create
Mode String | "Invalid" | "Default" | "Recover" - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete NumberSync Time In UTC - Sync time for deferred deletion in UTC
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information with this backup item.
- friendly
Name String - Friendly name of this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Backup StringStatus - Status of last backup operation.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Protected, ProtectionStopped, IRPending or ProtectionError
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
MabFileFolderProtectedItemExtendedInfo, MabFileFolderProtectedItemExtendedInfoArgs
- Last
Refreshed stringAt - Last time when the agent data synced to service.
- Oldest
Recovery stringPoint - The oldest backup copy available.
- Recovery
Point intCount - Number of backup copies associated with the backup item.
- Last
Refreshed stringAt - Last time when the agent data synced to service.
- Oldest
Recovery stringPoint - The oldest backup copy available.
- Recovery
Point intCount - Number of backup copies associated with the backup item.
- last
Refreshed StringAt - Last time when the agent data synced to service.
- oldest
Recovery StringPoint - The oldest backup copy available.
- recovery
Point IntegerCount - Number of backup copies associated with the backup item.
- last
Refreshed stringAt - Last time when the agent data synced to service.
- oldest
Recovery stringPoint - The oldest backup copy available.
- recovery
Point numberCount - Number of backup copies associated with the backup item.
- last_
refreshed_ strat - Last time when the agent data synced to service.
- oldest_
recovery_ strpoint - The oldest backup copy available.
- recovery_
point_ intcount - Number of backup copies associated with the backup item.
- last
Refreshed StringAt - Last time when the agent data synced to service.
- oldest
Recovery StringPoint - The oldest backup copy available.
- recovery
Point NumberCount - Number of backup copies associated with the backup item.
MabFileFolderProtectedItemExtendedInfoResponse, MabFileFolderProtectedItemExtendedInfoResponseArgs
- Last
Refreshed stringAt - Last time when the agent data synced to service.
- Oldest
Recovery stringPoint - The oldest backup copy available.
- Recovery
Point intCount - Number of backup copies associated with the backup item.
- Last
Refreshed stringAt - Last time when the agent data synced to service.
- Oldest
Recovery stringPoint - The oldest backup copy available.
- Recovery
Point intCount - Number of backup copies associated with the backup item.
- last
Refreshed StringAt - Last time when the agent data synced to service.
- oldest
Recovery StringPoint - The oldest backup copy available.
- recovery
Point IntegerCount - Number of backup copies associated with the backup item.
- last
Refreshed stringAt - Last time when the agent data synced to service.
- oldest
Recovery stringPoint - The oldest backup copy available.
- recovery
Point numberCount - Number of backup copies associated with the backup item.
- last_
refreshed_ strat - Last time when the agent data synced to service.
- oldest_
recovery_ strpoint - The oldest backup copy available.
- recovery_
point_ intcount - Number of backup copies associated with the backup item.
- last
Refreshed StringAt - Last time when the agent data synced to service.
- oldest
Recovery StringPoint - The oldest backup copy available.
- recovery
Point NumberCount - Number of backup copies associated with the backup item.
MabFileFolderProtectedItemResponse, MabFileFolderProtectedItemResponseArgs
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Computer
Name string - Name of the computer associated with this backup item.
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete doubleSync Time In UTC - Sync time for deferred deletion in UTC
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Mab File Folder Protected Item Extended Info Response - Additional information with this backup item.
- Friendly
Name string - Friendly name of this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Backup stringStatus - Status of last backup operation.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Protected, ProtectionStopped, IRPending or ProtectionError
- Resource
Guard List<string>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- Backup
Management stringType - Type of backup management for the backed up item.
- Vault
Id string - ID of the vault which protects this item
- Workload
Type string - Type of workload this item represents.
- Backup
Set stringName - Name of the backup set the backup item belongs to
- Computer
Name string - Name of the computer associated with this backup item.
- Container
Name string - Unique name of container
- Create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- Deferred
Delete float64Sync Time In UTC - Sync time for deferred deletion in UTC
- Deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- Deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- Extended
Info MabFile Folder Protected Item Extended Info Response - Additional information with this backup item.
- Friendly
Name string - Friendly name of this backup item.
- Is
Archive boolEnabled - Flag to identify whether datasource is protected in archive
- Is
Deferred boolDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- Is
Rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- Is
Scheduled boolFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- Last
Backup stringStatus - Status of last backup operation.
- Last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- Last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- Policy
Id string - ID of the backup policy with which this item is backed up.
- Policy
Name string - Name of the policy used for protection
- Protection
State string - Protected, ProtectionStopped, IRPending or ProtectionError
- Resource
Guard []stringOperation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- Soft
Delete intRetention Period In Days - Soft delete retention period in days
- Source
Resource stringId - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- computer
Name String - Name of the computer associated with this backup item.
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete DoubleSync Time In UTC - Sync time for deferred deletion in UTC
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info MabFile Folder Protected Item Extended Info Response - Additional information with this backup item.
- friendly
Name String - Friendly name of this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Backup StringStatus - Status of last backup operation.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Protected, ProtectionStopped, IRPending or ProtectionError
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete IntegerRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
- backup
Management stringType - Type of backup management for the backed up item.
- vault
Id string - ID of the vault which protects this item
- workload
Type string - Type of workload this item represents.
- backup
Set stringName - Name of the backup set the backup item belongs to
- computer
Name string - Name of the computer associated with this backup item.
- container
Name string - Unique name of container
- create
Mode string - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete numberSync Time In UTC - Sync time for deferred deletion in UTC
- deferred
Delete stringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete stringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info MabFile Folder Protected Item Extended Info Response - Additional information with this backup item.
- friendly
Name string - Friendly name of this backup item.
- is
Archive booleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred booleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled booleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Backup stringStatus - Status of last backup operation.
- last
Backup stringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery stringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id string - ID of the backup policy with which this item is backed up.
- policy
Name string - Name of the policy used for protection
- protection
State string - Protected, ProtectionStopped, IRPending or ProtectionError
- resource
Guard string[]Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete numberRetention Period In Days - Soft delete retention period in days
- source
Resource stringId - ARM ID of the resource to be backed up.
- backup_
management_ strtype - Type of backup management for the backed up item.
- vault_
id str - ID of the vault which protects this item
- workload_
type str - Type of workload this item represents.
- backup_
set_ strname - Name of the backup set the backup item belongs to
- computer_
name str - Name of the computer associated with this backup item.
- container_
name str - Unique name of container
- create_
mode str - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred_
delete_ floatsync_ time_ in_ utc - Sync time for deferred deletion in UTC
- deferred_
delete_ strtime_ in_ utc - Time for deferred deletion in UTC
- deferred_
delete_ strtime_ remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended_
info MabFile Folder Protected Item Extended Info Response - Additional information with this backup item.
- friendly_
name str - Friendly name of this backup item.
- is_
archive_ boolenabled - Flag to identify whether datasource is protected in archive
- is_
deferred_ booldelete_ schedule_ upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is_
rehydrate bool - Flag to identify that deferred deleted DS is to be moved into Pause state
- is_
scheduled_ boolfor_ deferred_ delete - Flag to identify whether the DS is scheduled for deferred delete
- last_
backup_ strstatus - Status of last backup operation.
- last_
backup_ strtime - Timestamp of the last backup operation on this backup item.
- last_
recovery_ strpoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy_
id str - ID of the backup policy with which this item is backed up.
- policy_
name str - Name of the policy used for protection
- protection_
state str - Protected, ProtectionStopped, IRPending or ProtectionError
- resource_
guard_ Sequence[str]operation_ requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft_
delete_ intretention_ period_ in_ days - Soft delete retention period in days
- source_
resource_ strid - ARM ID of the resource to be backed up.
- backup
Management StringType - Type of backup management for the backed up item.
- vault
Id String - ID of the vault which protects this item
- workload
Type String - Type of workload this item represents.
- backup
Set StringName - Name of the backup set the backup item belongs to
- computer
Name String - Name of the computer associated with this backup item.
- container
Name String - Unique name of container
- create
Mode String - Create mode to indicate recovery of existing soft deleted data source or creation of new data source.
- deferred
Delete NumberSync Time In UTC - Sync time for deferred deletion in UTC
- deferred
Delete StringTime In UTC - Time for deferred deletion in UTC
- deferred
Delete StringTime Remaining - Time remaining before the DS marked for deferred delete is permanently deleted
- extended
Info Property Map - Additional information with this backup item.
- friendly
Name String - Friendly name of this backup item.
- is
Archive BooleanEnabled - Flag to identify whether datasource is protected in archive
- is
Deferred BooleanDelete Schedule Upcoming - Flag to identify whether the deferred deleted DS is to be purged soon
- is
Rehydrate Boolean - Flag to identify that deferred deleted DS is to be moved into Pause state
- is
Scheduled BooleanFor Deferred Delete - Flag to identify whether the DS is scheduled for deferred delete
- last
Backup StringStatus - Status of last backup operation.
- last
Backup StringTime - Timestamp of the last backup operation on this backup item.
- last
Recovery StringPoint - Timestamp when the last (latest) backup copy was created for this backup item.
- policy
Id String - ID of the backup policy with which this item is backed up.
- policy
Name String - Name of the policy used for protection
- protection
State String - Protected, ProtectionStopped, IRPending or ProtectionError
- resource
Guard List<String>Operation Requests - ResourceGuardOperationRequests on which LAC check will be performed
- soft
Delete NumberRetention Period In Days - Soft delete retention period in days
- source
Resource StringId - ARM ID of the resource to be backed up.
ProtectedItemHealthStatus, ProtectedItemHealthStatusArgs
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- Not
Reachable - NotReachable
- IRPending
- IRPending
- Protected
Item Health Status Invalid - Invalid
- Protected
Item Health Status Healthy - Healthy
- Protected
Item Health Status Unhealthy - Unhealthy
- Protected
Item Health Status Not Reachable - NotReachable
- Protected
Item Health Status IRPending - IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- Not
Reachable - NotReachable
- IRPending
- IRPending
- Invalid
- Invalid
- Healthy
- Healthy
- Unhealthy
- Unhealthy
- Not
Reachable - NotReachable
- IRPending
- IRPending
- INVALID
- Invalid
- HEALTHY
- Healthy
- UNHEALTHY
- Unhealthy
- NOT_REACHABLE
- NotReachable
- IR_PENDING
- IRPending
- "Invalid"
- Invalid
- "Healthy"
- Healthy
- "Unhealthy"
- Unhealthy
- "Not
Reachable" - NotReachable
- "IRPending"
- IRPending
ProtectedItemState, ProtectedItemStateArgs
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- Protection
Error - ProtectionError
- Protection
Stopped - ProtectionStopped
- Protection
Paused - ProtectionPaused
- Backups
Suspended - BackupsSuspended
- Protected
Item State Invalid - Invalid
- Protected
Item State IRPending - IRPending
- Protected
Item State Protected - Protected
- Protected
Item State Protection Error - ProtectionError
- Protected
Item State Protection Stopped - ProtectionStopped
- Protected
Item State Protection Paused - ProtectionPaused
- Protected
Item State Backups Suspended - BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- Protection
Error - ProtectionError
- Protection
Stopped - ProtectionStopped
- Protection
Paused - ProtectionPaused
- Backups
Suspended - BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- Protection
Error - ProtectionError
- Protection
Stopped - ProtectionStopped
- Protection
Paused - ProtectionPaused
- Backups
Suspended - BackupsSuspended
- INVALID
- Invalid
- IR_PENDING
- IRPending
- PROTECTED
- Protected
- PROTECTION_ERROR
- ProtectionError
- PROTECTION_STOPPED
- ProtectionStopped
- PROTECTION_PAUSED
- ProtectionPaused
- BACKUPS_SUSPENDED
- BackupsSuspended
- "Invalid"
- Invalid
- "IRPending"
- IRPending
- "Protected"
- Protected
- "Protection
Error" - ProtectionError
- "Protection
Stopped" - ProtectionStopped
- "Protection
Paused" - ProtectionPaused
- "Backups
Suspended" - BackupsSuspended
ProtectionState, ProtectionStateArgs
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- Protection
Error - ProtectionError
- Protection
Stopped - ProtectionStopped
- Protection
Paused - ProtectionPaused
- Backups
Suspended - BackupsSuspended
- Protection
State Invalid - Invalid
- Protection
State IRPending - IRPending
- Protection
State Protected - Protected
- Protection
State Protection Error - ProtectionError
- Protection
State Protection Stopped - ProtectionStopped
- Protection
State Protection Paused - ProtectionPaused
- Protection
State Backups Suspended - BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- Protection
Error - ProtectionError
- Protection
Stopped - ProtectionStopped
- Protection
Paused - ProtectionPaused
- Backups
Suspended - BackupsSuspended
- Invalid
- Invalid
- IRPending
- IRPending
- Protected
- Protected
- Protection
Error - ProtectionError
- Protection
Stopped - ProtectionStopped
- Protection
Paused - ProtectionPaused
- Backups
Suspended - BackupsSuspended
- INVALID
- Invalid
- IR_PENDING
- IRPending
- PROTECTED
- Protected
- PROTECTION_ERROR
- ProtectionError
- PROTECTION_STOPPED
- ProtectionStopped
- PROTECTION_PAUSED
- ProtectionPaused
- BACKUPS_SUSPENDED
- BackupsSuspended
- "Invalid"
- Invalid
- "IRPending"
- IRPending
- "Protected"
- Protected
- "Protection
Error" - ProtectionError
- "Protection
Stopped" - ProtectionStopped
- "Protection
Paused" - ProtectionPaused
- "Backups
Suspended" - BackupsSuspended
ResourceHealthDetailsResponse, ResourceHealthDetailsResponseArgs
- Code int
- Health Code
- Message string
- Health Message
- Recommendations List<string>
- Health Recommended Actions
- Title string
- Health Title
- Code int
- Health Code
- Message string
- Health Message
- Recommendations []string
- Health Recommended Actions
- Title string
- Health Title
- code Integer
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
- code number
- Health Code
- message string
- Health Message
- recommendations string[]
- Health Recommended Actions
- title string
- Health Title
- code int
- Health Code
- message str
- Health Message
- recommendations Sequence[str]
- Health Recommended Actions
- title str
- Health Title
- code Number
- Health Code
- message String
- Health Message
- recommendations List<String>
- Health Recommended Actions
- title String
- Health Title
ResourceHealthStatus, ResourceHealthStatusArgs
- Healthy
- Healthy
- Transient
Degraded - TransientDegraded
- Persistent
Degraded - PersistentDegraded
- Transient
Unhealthy - TransientUnhealthy
- Persistent
Unhealthy - PersistentUnhealthy
- Invalid
- Invalid
- Resource
Health Status Healthy - Healthy
- Resource
Health Status Transient Degraded - TransientDegraded
- Resource
Health Status Persistent Degraded - PersistentDegraded
- Resource
Health Status Transient Unhealthy - TransientUnhealthy
- Resource
Health Status Persistent Unhealthy - PersistentUnhealthy
- Resource
Health Status Invalid - Invalid
- Healthy
- Healthy
- Transient
Degraded - TransientDegraded
- Persistent
Degraded - PersistentDegraded
- Transient
Unhealthy - TransientUnhealthy
- Persistent
Unhealthy - PersistentUnhealthy
- Invalid
- Invalid
- Healthy
- Healthy
- Transient
Degraded - TransientDegraded
- Persistent
Degraded - PersistentDegraded
- Transient
Unhealthy - TransientUnhealthy
- Persistent
Unhealthy - PersistentUnhealthy
- Invalid
- Invalid
- HEALTHY
- Healthy
- TRANSIENT_DEGRADED
- TransientDegraded
- PERSISTENT_DEGRADED
- PersistentDegraded
- TRANSIENT_UNHEALTHY
- TransientUnhealthy
- PERSISTENT_UNHEALTHY
- PersistentUnhealthy
- INVALID
- Invalid
- "Healthy"
- Healthy
- "Transient
Degraded" - TransientDegraded
- "Persistent
Degraded" - PersistentDegraded
- "Transient
Unhealthy" - TransientUnhealthy
- "Persistent
Unhealthy" - PersistentUnhealthy
- "Invalid"
- Invalid
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:recoveryservices:ProtectedItem VM;iaasvmcontainerv2;netsdktestrg;netvmtestv2vm1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupFabrics/{fabricName}/protectionContainers/{containerName}/protectedItems/{protectedItemName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0