azure-native.recoveryservices.ProtectionContainer
Explore with Pulumi AI
Base class for container with backup items. Containers with specific workloads are derived from this class. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2021-02-01.
Other available API versions: 2023-06-01, 2023-08-01, 2024-01-01, 2024-02-01, 2024-04-01, 2024-04-30-preview.
Example Usage
RegisterAzure Storage ProtectionContainers
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var protectionContainer = new AzureNative.RecoveryServices.ProtectionContainer("protectionContainer", new()
{
ContainerName = "StorageContainer;Storage;SwaggerTestRg;swaggertestsa",
FabricName = "Azure",
Properties = new AzureNative.RecoveryServices.Inputs.AzureStorageContainerArgs
{
AcquireStorageAccountLock = AzureNative.RecoveryServices.AcquireStorageAccountLock.Acquire,
BackupManagementType = AzureNative.RecoveryServices.BackupManagementType.AzureStorage,
ContainerType = "StorageContainer",
FriendlyName = "swaggertestsa",
SourceResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/SwaggerTestRg/providers/Microsoft.Storage/storageAccounts/swaggertestsa",
},
ResourceGroupName = "SwaggerTestRg",
VaultName = "swaggertestvault",
});
});
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.NewProtectionContainer(ctx, "protectionContainer", &recoveryservices.ProtectionContainerArgs{
ContainerName: pulumi.String("StorageContainer;Storage;SwaggerTestRg;swaggertestsa"),
FabricName: pulumi.String("Azure"),
Properties: &recoveryservices.AzureStorageContainerArgs{
AcquireStorageAccountLock: pulumi.String(recoveryservices.AcquireStorageAccountLockAcquire),
BackupManagementType: pulumi.String(recoveryservices.BackupManagementTypeAzureStorage),
ContainerType: pulumi.String("StorageContainer"),
FriendlyName: pulumi.String("swaggertestsa"),
SourceResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/SwaggerTestRg/providers/Microsoft.Storage/storageAccounts/swaggertestsa"),
},
ResourceGroupName: pulumi.String("SwaggerTestRg"),
VaultName: pulumi.String("swaggertestvault"),
})
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.ProtectionContainer;
import com.pulumi.azurenative.recoveryservices.ProtectionContainerArgs;
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 protectionContainer = new ProtectionContainer("protectionContainer", ProtectionContainerArgs.builder()
.containerName("StorageContainer;Storage;SwaggerTestRg;swaggertestsa")
.fabricName("Azure")
.properties(AzureStorageContainerArgs.builder()
.acquireStorageAccountLock("Acquire")
.backupManagementType("AzureStorage")
.containerType("StorageContainer")
.friendlyName("swaggertestsa")
.sourceResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/SwaggerTestRg/providers/Microsoft.Storage/storageAccounts/swaggertestsa")
.build())
.resourceGroupName("SwaggerTestRg")
.vaultName("swaggertestvault")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
protection_container = azure_native.recoveryservices.ProtectionContainer("protectionContainer",
container_name="StorageContainer;Storage;SwaggerTestRg;swaggertestsa",
fabric_name="Azure",
properties=azure_native.recoveryservices.AzureStorageContainerArgs(
acquire_storage_account_lock=azure_native.recoveryservices.AcquireStorageAccountLock.ACQUIRE,
backup_management_type=azure_native.recoveryservices.BackupManagementType.AZURE_STORAGE,
container_type="StorageContainer",
friendly_name="swaggertestsa",
source_resource_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/SwaggerTestRg/providers/Microsoft.Storage/storageAccounts/swaggertestsa",
),
resource_group_name="SwaggerTestRg",
vault_name="swaggertestvault")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const protectionContainer = new azure_native.recoveryservices.ProtectionContainer("protectionContainer", {
containerName: "StorageContainer;Storage;SwaggerTestRg;swaggertestsa",
fabricName: "Azure",
properties: {
acquireStorageAccountLock: azure_native.recoveryservices.AcquireStorageAccountLock.Acquire,
backupManagementType: azure_native.recoveryservices.BackupManagementType.AzureStorage,
containerType: "StorageContainer",
friendlyName: "swaggertestsa",
sourceResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/SwaggerTestRg/providers/Microsoft.Storage/storageAccounts/swaggertestsa",
},
resourceGroupName: "SwaggerTestRg",
vaultName: "swaggertestvault",
});
resources:
protectionContainer:
type: azure-native:recoveryservices:ProtectionContainer
properties:
containerName: StorageContainer;Storage;SwaggerTestRg;swaggertestsa
fabricName: Azure
properties:
acquireStorageAccountLock: Acquire
backupManagementType: AzureStorage
containerType: StorageContainer
friendlyName: swaggertestsa
sourceResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/SwaggerTestRg/providers/Microsoft.Storage/storageAccounts/swaggertestsa
resourceGroupName: SwaggerTestRg
vaultName: swaggertestvault
Create ProtectionContainer Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProtectionContainer(name: string, args: ProtectionContainerArgs, opts?: CustomResourceOptions);
@overload
def ProtectionContainer(resource_name: str,
args: ProtectionContainerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProtectionContainer(resource_name: str,
opts: Optional[ResourceOptions] = None,
fabric_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
vault_name: Optional[str] = None,
container_name: Optional[str] = None,
e_tag: Optional[str] = None,
location: Optional[str] = None,
properties: Optional[Union[AzureBackupServerContainerArgs, AzureIaaSClassicComputeVMContainerArgs, AzureIaaSComputeVMContainerArgs, AzureSQLAGWorkloadContainerProtectionContainerArgs, AzureSqlContainerArgs, AzureStorageContainerArgs, AzureVMAppContainerProtectionContainerArgs, AzureWorkloadContainerArgs, DpmContainerArgs, GenericContainerArgs, IaaSVMContainerArgs, MabContainerArgs]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewProtectionContainer(ctx *Context, name string, args ProtectionContainerArgs, opts ...ResourceOption) (*ProtectionContainer, error)
public ProtectionContainer(string name, ProtectionContainerArgs args, CustomResourceOptions? opts = null)
public ProtectionContainer(String name, ProtectionContainerArgs args)
public ProtectionContainer(String name, ProtectionContainerArgs args, CustomResourceOptions options)
type: azure-native:recoveryservices:ProtectionContainer
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 ProtectionContainerArgs
- 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 ProtectionContainerArgs
- 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 ProtectionContainerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProtectionContainerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProtectionContainerArgs
- 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 protectionContainerResource = new AzureNative.RecoveryServices.ProtectionContainer("protectionContainerResource", new()
{
FabricName = "string",
ResourceGroupName = "string",
VaultName = "string",
ContainerName = "string",
ETag = "string",
Location = "string",
Properties = new AzureNative.RecoveryServices.Inputs.AzureBackupServerContainerArgs
{
ContainerType = "AzureBackupServerContainer",
ExtendedInfo = new AzureNative.RecoveryServices.Inputs.DPMContainerExtendedInfoArgs
{
LastRefreshedAt = "string",
},
ContainerId = "string",
CanReRegister = false,
DpmAgentVersion = "string",
DpmServers = new[]
{
"string",
},
BackupManagementType = "string",
FriendlyName = "string",
HealthStatus = "string",
ProtectableObjectType = "string",
ProtectedItemCount = 0,
ProtectionStatus = "string",
RegistrationStatus = "string",
UpgradeAvailable = false,
},
Tags =
{
{ "string", "string" },
},
});
example, err := recoveryservices.NewProtectionContainer(ctx, "protectionContainerResource", &recoveryservices.ProtectionContainerArgs{
FabricName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
VaultName: pulumi.String("string"),
ContainerName: pulumi.String("string"),
ETag: pulumi.String("string"),
Location: pulumi.String("string"),
Properties: &recoveryservices.AzureBackupServerContainerArgs{
ContainerType: pulumi.String("AzureBackupServerContainer"),
ExtendedInfo: &recoveryservices.DPMContainerExtendedInfoArgs{
LastRefreshedAt: pulumi.String("string"),
},
ContainerId: pulumi.String("string"),
CanReRegister: pulumi.Bool(false),
DpmAgentVersion: pulumi.String("string"),
DpmServers: pulumi.StringArray{
pulumi.String("string"),
},
BackupManagementType: pulumi.String("string"),
FriendlyName: pulumi.String("string"),
HealthStatus: pulumi.String("string"),
ProtectableObjectType: pulumi.String("string"),
ProtectedItemCount: pulumi.Float64(0),
ProtectionStatus: pulumi.String("string"),
RegistrationStatus: pulumi.String("string"),
UpgradeAvailable: pulumi.Bool(false),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var protectionContainerResource = new ProtectionContainer("protectionContainerResource", ProtectionContainerArgs.builder()
.fabricName("string")
.resourceGroupName("string")
.vaultName("string")
.containerName("string")
.eTag("string")
.location("string")
.properties(AzureBackupServerContainerArgs.builder()
.containerType("AzureBackupServerContainer")
.extendedInfo(DPMContainerExtendedInfoArgs.builder()
.lastRefreshedAt("string")
.build())
.containerId("string")
.canReRegister(false)
.dpmAgentVersion("string")
.dpmServers("string")
.backupManagementType("string")
.friendlyName("string")
.healthStatus("string")
.protectableObjectType("string")
.protectedItemCount(0)
.protectionStatus("string")
.registrationStatus("string")
.upgradeAvailable(false)
.build())
.tags(Map.of("string", "string"))
.build());
protection_container_resource = azure_native.recoveryservices.ProtectionContainer("protectionContainerResource",
fabric_name="string",
resource_group_name="string",
vault_name="string",
container_name="string",
e_tag="string",
location="string",
properties=azure_native.recoveryservices.AzureBackupServerContainerArgs(
container_type="AzureBackupServerContainer",
extended_info=azure_native.recoveryservices.DPMContainerExtendedInfoArgs(
last_refreshed_at="string",
),
container_id="string",
can_re_register=False,
dpm_agent_version="string",
dpm_servers=["string"],
backup_management_type="string",
friendly_name="string",
health_status="string",
protectable_object_type="string",
protected_item_count=0,
protection_status="string",
registration_status="string",
upgrade_available=False,
),
tags={
"string": "string",
})
const protectionContainerResource = new azure_native.recoveryservices.ProtectionContainer("protectionContainerResource", {
fabricName: "string",
resourceGroupName: "string",
vaultName: "string",
containerName: "string",
eTag: "string",
location: "string",
properties: {
containerType: "AzureBackupServerContainer",
extendedInfo: {
lastRefreshedAt: "string",
},
containerId: "string",
canReRegister: false,
dpmAgentVersion: "string",
dpmServers: ["string"],
backupManagementType: "string",
friendlyName: "string",
healthStatus: "string",
protectableObjectType: "string",
protectedItemCount: 0,
protectionStatus: "string",
registrationStatus: "string",
upgradeAvailable: false,
},
tags: {
string: "string",
},
});
type: azure-native:recoveryservices:ProtectionContainer
properties:
containerName: string
eTag: string
fabricName: string
location: string
properties:
backupManagementType: string
canReRegister: false
containerId: string
containerType: AzureBackupServerContainer
dpmAgentVersion: string
dpmServers:
- string
extendedInfo:
lastRefreshedAt: string
friendlyName: string
healthStatus: string
protectableObjectType: string
protectedItemCount: 0
protectionStatus: string
registrationStatus: string
upgradeAvailable: false
resourceGroupName: string
tags:
string: string
vaultName: string
ProtectionContainer 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 ProtectionContainer resource accepts the following input properties:
- Fabric
Name string - Fabric name associated with the container.
- 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.
- Container
Name string - Name of the container to be registered.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Properties
Pulumi.
Azure | Pulumi.Native. Recovery Services. Inputs. Azure Backup Server Container Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SClassic Compute VMContainer Azure | Pulumi.Native. Recovery Services. Inputs. Azure Iaa SCompute VMContainer Azure | Pulumi.Native. Recovery Services. Inputs. Azure SQLAGWorkload Container Protection Container Azure | Pulumi.Native. Recovery Services. Inputs. Azure Sql Container Azure | Pulumi.Native. Recovery Services. Inputs. Azure Storage Container Azure | Pulumi.Native. Recovery Services. Inputs. Azure VMApp Container Protection Container Azure | Pulumi.Native. Recovery Services. Inputs. Azure Workload Container Azure | Pulumi.Native. Recovery Services. Inputs. Dpm Container Azure | Pulumi.Native. Recovery Services. Inputs. Generic Container Azure | Pulumi.Native. Recovery Services. Inputs. Iaa SVMContainer Azure Native. Recovery Services. Inputs. Mab Container - ProtectionContainerResource properties
- Dictionary<string, string>
- Resource tags.
- Fabric
Name string - Fabric name associated with the container.
- 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.
- Container
Name string - Name of the container to be registered.
- ETag string
- Optional ETag.
- Location string
- Resource location.
- Properties
Azure
Backup | AzureServer Container Args Iaa | AzureSClassic Compute VMContainer Args Iaa | AzureSCompute VMContainer Args SQLAGWorkload | AzureContainer Protection Container Args Sql | AzureContainer Args Storage | AzureContainer Args VMApp | AzureContainer Protection Container Args Workload | DpmContainer Args Container | GenericArgs Container | IaaArgs SVMContainer | MabArgs Container Args - ProtectionContainerResource properties
- map[string]string
- Resource tags.
- fabric
Name String - Fabric name associated with the container.
- 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.
- container
Name String - Name of the container to be registered.
- e
Tag String - Optional ETag.
- location String
- Resource location.
- properties
Azure
Backup | AzureServer Container Iaa | AzureSClassic Compute VMContainer Iaa | AzureSCompute VMContainer SQLAGWorkload | AzureContainer Protection Container Sql | AzureContainer Storage | AzureContainer VMApp | AzureContainer Protection Container Workload | DpmContainer Container | GenericContainer | IaaSVMContainer | MabContainer - ProtectionContainerResource properties
- Map<String,String>
- Resource tags.
- fabric
Name string - Fabric name associated with the container.
- 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.
- container
Name string - Name of the container to be registered.
- e
Tag string - Optional ETag.
- location string
- Resource location.
- properties
Azure
Backup | AzureServer Container Iaa | AzureSClassic Compute VMContainer Iaa | AzureSCompute VMContainer SQLAGWorkload | AzureContainer Protection Container Sql | AzureContainer Storage | AzureContainer VMApp | AzureContainer Protection Container Workload | DpmContainer Container | GenericContainer | IaaSVMContainer | MabContainer - ProtectionContainerResource properties
- {[key: string]: string}
- Resource tags.
- fabric_
name str - Fabric name associated with the container.
- 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.
- container_
name str - Name of the container to be registered.
- e_
tag str - Optional ETag.
- location str
- Resource location.
- properties
Azure
Backup | AzureServer Container Args Iaa | AzureSClassic Compute VMContainer Args Iaa | AzureSCompute VMContainer Args SQLAGWorkload | AzureContainer Protection Container Args Sql | AzureContainer Args Storage | AzureContainer Args VMApp | AzureContainer Protection Container Args Workload | DpmContainer Args Container | GenericArgs Container | IaaArgs SVMContainer | MabArgs Container Args - ProtectionContainerResource properties
- Mapping[str, str]
- Resource tags.
- fabric
Name String - Fabric name associated with the container.
- 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.
- container
Name String - Name of the container to be registered.
- 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
- ProtectionContainerResource properties
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ProtectionContainer resource produces the following output properties:
Supporting Types
AcquireStorageAccountLock, AcquireStorageAccountLockArgs
- Acquire
- Acquire
- Not
Acquire - NotAcquire
- Acquire
Storage Account Lock Acquire - Acquire
- Acquire
Storage Account Lock Not Acquire - NotAcquire
- Acquire
- Acquire
- Not
Acquire - NotAcquire
- Acquire
- Acquire
- Not
Acquire - NotAcquire
- ACQUIRE
- Acquire
- NOT_ACQUIRE
- NotAcquire
- "Acquire"
- Acquire
- "Not
Acquire" - NotAcquire
AzureBackupServerContainer, AzureBackupServerContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers List<string> - List of BackupEngines protecting the container
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. DPMContainer Extended Info - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers []string - List of BackupEngines protecting the container
- Extended
Info DPMContainerExtended Info - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- can
Re booleanRegister - Specifies whether the container is re-registrable.
- container
Id string - ID of container.
- dpm
Agent stringVersion - Backup engine Agent version
- dpm
Servers string[] - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info - Extended Info of the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of protected items in the BackupEngine
- protection
Status string - Protection status of the container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available boolean - To check if upgrade available
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- can_
re_ boolregister - Specifies whether the container is re-registrable.
- container_
id str - ID of container.
- dpm_
agent_ strversion - Backup engine Agent version
- dpm_
servers Sequence[str] - List of BackupEngines protecting the container
- extended_
info DPMContainerExtended Info - Extended Info of the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of protected items in the BackupEngine
- protection_
status str - Protection status of the container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- upgrade_
available bool - To check if upgrade available
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info Property Map - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
AzureBackupServerContainerResponse, AzureBackupServerContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers List<string> - List of BackupEngines protecting the container
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. DPMContainer Extended Info Response - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- Backup
Management stringType - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers []string - List of BackupEngines protecting the container
- Extended
Info DPMContainerExtended Info Response - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- backup
Management StringType - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info Response - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
- backup
Management stringType - Type of backup management for the container.
- can
Re booleanRegister - Specifies whether the container is re-registrable.
- container
Id string - ID of container.
- dpm
Agent stringVersion - Backup engine Agent version
- dpm
Servers string[] - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info Response - Extended Info of the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of protected items in the BackupEngine
- protection
Status string - Protection status of the container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available boolean - To check if upgrade available
- backup_
management_ strtype - Type of backup management for the container.
- can_
re_ boolregister - Specifies whether the container is re-registrable.
- container_
id str - ID of container.
- dpm_
agent_ strversion - Backup engine Agent version
- dpm_
servers Sequence[str] - List of BackupEngines protecting the container
- extended_
info DPMContainerExtended Info Response - Extended Info of the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of protected items in the BackupEngine
- protection_
status str - Protection status of the container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- upgrade_
available bool - To check if upgrade available
- backup
Management StringType - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info Property Map - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
AzureIaaSClassicComputeVMContainer, AzureIaaSClassicComputeVMContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- virtual_
machine_ strid - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual_
machine_ strversion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
AzureIaaSClassicComputeVMContainerResponse, AzureIaaSClassicComputeVMContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management stringType - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup_
management_ strtype - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- virtual_
machine_ strid - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual_
machine_ strversion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
AzureIaaSComputeVMContainer, AzureIaaSComputeVMContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- virtual_
machine_ strid - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual_
machine_ strversion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
AzureIaaSComputeVMContainerResponse, AzureIaaSComputeVMContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management stringType - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup_
management_ strtype - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- virtual_
machine_ strid - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual_
machine_ strversion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
AzureSQLAGWorkloadContainerProtectionContainer, AzureSQLAGWorkloadContainerProtectionContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Workload Container Extended Info - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string | Pulumi.Azure Native. Recovery Services. Operation Type - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string | Pulumi.Azure Native. Recovery Services. Workload Type - Workload type for which registration was sent.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string | OperationType - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string | WorkloadType - Workload type for which registration was sent.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String | OperationType - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String | WorkloadType - Workload type for which registration was sent.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- last
Updated stringTime - Time stamp when this container was updated.
- operation
Type string | OperationType - Re-Do Operation
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type string | WorkloadType - Workload type for which registration was sent.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- extended_
info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- last_
updated_ strtime - Time stamp when this container was updated.
- operation_
type str | OperationType - Re-Do Operation
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- source_
resource_ strid - ARM ID of the virtual machine represented by this Azure Workload Container
- workload_
type str | WorkloadType - Workload type for which registration was sent.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- extended
Info Property Map - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String | "Invalid" | "Register" | "Reregister" - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" | "SAPHana DBInstance" - Workload type for which registration was sent.
AzureSQLAGWorkloadContainerProtectionContainerResponse, AzureSQLAGWorkloadContainerProtectionContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Workload Container Extended Info Response - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string - Workload type for which registration was sent.
- Backup
Management stringType - Type of backup management for the container.
- Extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string - Workload type for which registration was sent.
- backup
Management StringType - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String - Workload type for which registration was sent.
- backup
Management stringType - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- last
Updated stringTime - Time stamp when this container was updated.
- operation
Type string - Re-Do Operation
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type string - Workload type for which registration was sent.
- backup_
management_ strtype - Type of backup management for the container.
- extended_
info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- last_
updated_ strtime - Time stamp when this container was updated.
- operation_
type str - Re-Do Operation
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- source_
resource_ strid - ARM ID of the virtual machine represented by this Azure Workload Container
- workload_
type str - Workload type for which registration was sent.
- backup
Management StringType - Type of backup management for the container.
- extended
Info Property Map - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String - Workload type for which registration was sent.
AzureSqlContainer, AzureSqlContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
AzureSqlContainerResponse, AzureSqlContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- backup
Management stringType - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup_
management_ strtype - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
AzureStorageContainer, AzureStorageContainerArgs
- Acquire
Storage string | Pulumi.Account Lock Azure Native. Recovery Services. Acquire Storage Account Lock - Whether storage account lock is to be acquired for this container or not.
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Source
Resource stringId - Fully qualified ARM url.
- Storage
Account stringVersion - Storage account version.
- Acquire
Storage string | AcquireAccount Lock Storage Account Lock - Whether storage account lock is to be acquired for this container or not.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Source
Resource stringId - Fully qualified ARM url.
- Storage
Account stringVersion - Storage account version.
- acquire
Storage String | AcquireAccount Lock Storage Account Lock - Whether storage account lock is to be acquired for this container or not.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- source
Resource StringId - Fully qualified ARM url.
- storage
Account StringVersion - Storage account version.
- acquire
Storage string | AcquireAccount Lock Storage Account Lock - Whether storage account lock is to be acquired for this container or not.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of items backed up in this container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- source
Resource stringId - Fully qualified ARM url.
- storage
Account stringVersion - Storage account version.
- acquire_
storage_ str | Acquireaccount_ lock Storage Account Lock - Whether storage account lock is to be acquired for this container or not.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of items backed up in this container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- source_
resource_ strid - Fully qualified ARM url.
- storage_
account_ strversion - Storage account version.
- acquire
Storage String | "Acquire" | "NotAccount Lock Acquire" - Whether storage account lock is to be acquired for this container or not.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- source
Resource StringId - Fully qualified ARM url.
- storage
Account StringVersion - Storage account version.
AzureStorageContainerResponse, AzureStorageContainerResponseArgs
- Acquire
Storage stringAccount Lock - Whether storage account lock is to be acquired for this container or not.
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Source
Resource stringId - Fully qualified ARM url.
- Storage
Account stringVersion - Storage account version.
- Acquire
Storage stringAccount Lock - Whether storage account lock is to be acquired for this container or not.
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Source
Resource stringId - Fully qualified ARM url.
- Storage
Account stringVersion - Storage account version.
- acquire
Storage StringAccount Lock - Whether storage account lock is to be acquired for this container or not.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- source
Resource StringId - Fully qualified ARM url.
- storage
Account StringVersion - Storage account version.
- acquire
Storage stringAccount Lock - Whether storage account lock is to be acquired for this container or not.
- backup
Management stringType - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of items backed up in this container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- source
Resource stringId - Fully qualified ARM url.
- storage
Account stringVersion - Storage account version.
- acquire_
storage_ straccount_ lock - Whether storage account lock is to be acquired for this container or not.
- backup_
management_ strtype - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of items backed up in this container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- source_
resource_ strid - Fully qualified ARM url.
- storage_
account_ strversion - Storage account version.
- acquire
Storage StringAccount Lock - Whether storage account lock is to be acquired for this container or not.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- source
Resource StringId - Fully qualified ARM url.
- storage
Account StringVersion - Storage account version.
AzureVMAppContainerProtectionContainer, AzureVMAppContainerProtectionContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Workload Container Extended Info - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string | Pulumi.Azure Native. Recovery Services. Operation Type - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string | Pulumi.Azure Native. Recovery Services. Workload Type - Workload type for which registration was sent.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string | OperationType - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string | WorkloadType - Workload type for which registration was sent.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String | OperationType - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String | WorkloadType - Workload type for which registration was sent.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- last
Updated stringTime - Time stamp when this container was updated.
- operation
Type string | OperationType - Re-Do Operation
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type string | WorkloadType - Workload type for which registration was sent.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- extended_
info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- last_
updated_ strtime - Time stamp when this container was updated.
- operation_
type str | OperationType - Re-Do Operation
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- source_
resource_ strid - ARM ID of the virtual machine represented by this Azure Workload Container
- workload_
type str | WorkloadType - Workload type for which registration was sent.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- extended
Info Property Map - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String | "Invalid" | "Register" | "Reregister" - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" | "SAPHana DBInstance" - Workload type for which registration was sent.
AzureVMAppContainerProtectionContainerResponse, AzureVMAppContainerProtectionContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Workload Container Extended Info Response - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string - Workload type for which registration was sent.
- Backup
Management stringType - Type of backup management for the container.
- Extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string - Workload type for which registration was sent.
- backup
Management StringType - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String - Workload type for which registration was sent.
- backup
Management stringType - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- last
Updated stringTime - Time stamp when this container was updated.
- operation
Type string - Re-Do Operation
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type string - Workload type for which registration was sent.
- backup_
management_ strtype - Type of backup management for the container.
- extended_
info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- last_
updated_ strtime - Time stamp when this container was updated.
- operation_
type str - Re-Do Operation
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- source_
resource_ strid - ARM ID of the virtual machine represented by this Azure Workload Container
- workload_
type str - Workload type for which registration was sent.
- backup
Management StringType - Type of backup management for the container.
- extended
Info Property Map - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String - Workload type for which registration was sent.
AzureWorkloadContainer, AzureWorkloadContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Workload Container Extended Info - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string | Pulumi.Azure Native. Recovery Services. Operation Type - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string | Pulumi.Azure Native. Recovery Services. Workload Type - Workload type for which registration was sent.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string | OperationType - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string | WorkloadType - Workload type for which registration was sent.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String | OperationType - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String | WorkloadType - Workload type for which registration was sent.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- last
Updated stringTime - Time stamp when this container was updated.
- operation
Type string | OperationType - Re-Do Operation
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type string | WorkloadType - Workload type for which registration was sent.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- extended_
info AzureWorkload Container Extended Info - Additional details of a workload container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- last_
updated_ strtime - Time stamp when this container was updated.
- operation_
type str | OperationType - Re-Do Operation
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- source_
resource_ strid - ARM ID of the virtual machine represented by this Azure Workload Container
- workload_
type str | WorkloadType - Workload type for which registration was sent.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- extended
Info Property Map - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String | "Invalid" | "Register" | "Reregister" - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String | "Invalid" | "VM" | "FileFolder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" | "SAPHana DBInstance" - Workload type for which registration was sent.
AzureWorkloadContainerExtendedInfo, AzureWorkloadContainerExtendedInfoArgs
- Host
Server stringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- Inquiry
Info Pulumi.Azure Native. Recovery Services. Inputs. Inquiry Info - Inquiry Status for the container.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info> - List of the nodes in case of distributed container.
- Host
Server stringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- Inquiry
Info InquiryInfo - Inquiry Status for the container.
- Nodes
List []DistributedNodes Info - List of the nodes in case of distributed container.
- host
Server StringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry
Info InquiryInfo - Inquiry Status for the container.
- nodes
List List<DistributedNodes Info> - List of the nodes in case of distributed container.
- host
Server stringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry
Info InquiryInfo - Inquiry Status for the container.
- nodes
List DistributedNodes Info[] - List of the nodes in case of distributed container.
- host_
server_ strname - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry_
info InquiryInfo - Inquiry Status for the container.
- nodes_
list Sequence[DistributedNodes Info] - List of the nodes in case of distributed container.
- host
Server StringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry
Info Property Map - Inquiry Status for the container.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
AzureWorkloadContainerExtendedInfoResponse, AzureWorkloadContainerExtendedInfoResponseArgs
- Host
Server stringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- Inquiry
Info Pulumi.Azure Native. Recovery Services. Inputs. Inquiry Info Response - Inquiry Status for the container.
- Nodes
List List<Pulumi.Azure Native. Recovery Services. Inputs. Distributed Nodes Info Response> - List of the nodes in case of distributed container.
- Host
Server stringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- Inquiry
Info InquiryInfo Response - Inquiry Status for the container.
- Nodes
List []DistributedNodes Info Response - List of the nodes in case of distributed container.
- host
Server StringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry
Info InquiryInfo Response - Inquiry Status for the container.
- nodes
List List<DistributedNodes Info Response> - List of the nodes in case of distributed container.
- host
Server stringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry
Info InquiryInfo Response - Inquiry Status for the container.
- nodes
List DistributedNodes Info Response[] - List of the nodes in case of distributed container.
- host_
server_ strname - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry_
info InquiryInfo Response - Inquiry Status for the container.
- nodes_
list Sequence[DistributedNodes Info Response] - List of the nodes in case of distributed container.
- host
Server StringName - Host Os Name in case of Stand Alone and Cluster Name in case of distributed container.
- inquiry
Info Property Map - Inquiry Status for the container.
- nodes
List List<Property Map> - List of the nodes in case of distributed container.
AzureWorkloadContainerResponse, AzureWorkloadContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Azure Workload Container Extended Info Response - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string - Workload type for which registration was sent.
- Backup
Management stringType - Type of backup management for the container.
- Extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Last
Updated stringTime - Time stamp when this container was updated.
- Operation
Type string - Re-Do Operation
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- Workload
Type string - Workload type for which registration was sent.
- backup
Management StringType - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String - Workload type for which registration was sent.
- backup
Management stringType - Type of backup management for the container.
- extended
Info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- last
Updated stringTime - Time stamp when this container was updated.
- operation
Type string - Re-Do Operation
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- source
Resource stringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type string - Workload type for which registration was sent.
- backup_
management_ strtype - Type of backup management for the container.
- extended_
info AzureWorkload Container Extended Info Response - Additional details of a workload container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- last_
updated_ strtime - Time stamp when this container was updated.
- operation_
type str - Re-Do Operation
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- source_
resource_ strid - ARM ID of the virtual machine represented by this Azure Workload Container
- workload_
type str - Workload type for which registration was sent.
- backup
Management StringType - Type of backup management for the container.
- extended
Info Property Map - Additional details of a workload container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- last
Updated StringTime - Time stamp when this container was updated.
- operation
Type String - Re-Do Operation
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- source
Resource StringId - ARM ID of the virtual machine represented by this Azure Workload Container
- workload
Type String - Workload type for which registration was sent.
BackupItemType, BackupItemTypeArgs
- Invalid
- Invalid
- VM
- VM
- File
Folder - FileFolder
- Azure
Sql Db - AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMware
VM - VMwareVM
- System
State - SystemState
- Client
- Client
- Generic
Data Source - GenericDataSource
- SQLData
Base - SQLDataBase
- Azure
File Share - AzureFileShare
- SAPHana
Database - SAPHanaDatabase
- SAPAse
Database - SAPAseDatabase
- SAPHana
DBInstance - SAPHanaDBInstance
- Backup
Item Type Invalid - Invalid
- Backup
Item Type VM - VM
- Backup
Item Type File Folder - FileFolder
- Backup
Item Type Azure Sql Db - AzureSqlDb
- Backup
Item Type SQLDB - SQLDB
- Backup
Item Type Exchange - Exchange
- Backup
Item Type Sharepoint - Sharepoint
- Backup
Item Type VMware VM - VMwareVM
- Backup
Item Type System State - SystemState
- Backup
Item Type Client - Client
- Backup
Item Type Generic Data Source - GenericDataSource
- Backup
Item Type SQLData Base - SQLDataBase
- Backup
Item Type Azure File Share - AzureFileShare
- Backup
Item Type SAPHana Database - SAPHanaDatabase
- Backup
Item Type SAPAse Database - SAPAseDatabase
- Backup
Item Type SAPHana DBInstance - SAPHanaDBInstance
- Invalid
- Invalid
- VM
- VM
- File
Folder - FileFolder
- Azure
Sql Db - AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMware
VM - VMwareVM
- System
State - SystemState
- Client
- Client
- Generic
Data Source - GenericDataSource
- SQLData
Base - SQLDataBase
- Azure
File Share - AzureFileShare
- SAPHana
Database - SAPHanaDatabase
- SAPAse
Database - SAPAseDatabase
- SAPHana
DBInstance - SAPHanaDBInstance
- Invalid
- Invalid
- VM
- VM
- File
Folder - FileFolder
- Azure
Sql Db - AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMware
VM - VMwareVM
- System
State - SystemState
- Client
- Client
- Generic
Data Source - GenericDataSource
- SQLData
Base - SQLDataBase
- Azure
File Share - AzureFileShare
- SAPHana
Database - SAPHanaDatabase
- SAPAse
Database - SAPAseDatabase
- SAPHana
DBInstance - SAPHanaDBInstance
- INVALID
- Invalid
- VM
- VM
- FILE_FOLDER
- FileFolder
- AZURE_SQL_DB
- AzureSqlDb
- SQLDB
- SQLDB
- EXCHANGE
- Exchange
- SHAREPOINT
- Sharepoint
- V_MWARE_VM
- VMwareVM
- SYSTEM_STATE
- SystemState
- CLIENT
- Client
- GENERIC_DATA_SOURCE
- GenericDataSource
- SQL_DATA_BASE
- SQLDataBase
- AZURE_FILE_SHARE
- AzureFileShare
- SAP_HANA_DATABASE
- SAPHanaDatabase
- SAPASE_DATABASE
- SAPAseDatabase
- SAP_HANA_DB_INSTANCE
- SAPHanaDBInstance
- "Invalid"
- Invalid
- "VM"
- VM
- "File
Folder" - FileFolder
- "Azure
Sql Db" - AzureSqlDb
- "SQLDB"
- SQLDB
- "Exchange"
- Exchange
- "Sharepoint"
- Sharepoint
- "VMware
VM" - VMwareVM
- "System
State" - SystemState
- "Client"
- Client
- "Generic
Data Source" - GenericDataSource
- "SQLData
Base" - SQLDataBase
- "Azure
File Share" - AzureFileShare
- "SAPHana
Database" - SAPHanaDatabase
- "SAPAse
Database" - SAPAseDatabase
- "SAPHana
DBInstance" - SAPHanaDBInstance
BackupManagementType, BackupManagementTypeArgs
- Invalid
- Invalid
- Azure
Iaas VM - AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- Azure
Backup Server - AzureBackupServer
- Azure
Sql - AzureSql
- Azure
Storage - AzureStorage
- Azure
Workload - AzureWorkload
- Default
Backup - DefaultBackup
- Backup
Management Type Invalid - Invalid
- Backup
Management Type Azure Iaas VM - AzureIaasVM
- Backup
Management Type MAB - MAB
- Backup
Management Type DPM - DPM
- Backup
Management Type Azure Backup Server - AzureBackupServer
- Backup
Management Type Azure Sql - AzureSql
- Backup
Management Type Azure Storage - AzureStorage
- Backup
Management Type Azure Workload - AzureWorkload
- Backup
Management Type Default Backup - DefaultBackup
- Invalid
- Invalid
- Azure
Iaas VM - AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- Azure
Backup Server - AzureBackupServer
- Azure
Sql - AzureSql
- Azure
Storage - AzureStorage
- Azure
Workload - AzureWorkload
- Default
Backup - DefaultBackup
- Invalid
- Invalid
- Azure
Iaas VM - AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- Azure
Backup Server - AzureBackupServer
- Azure
Sql - AzureSql
- Azure
Storage - AzureStorage
- Azure
Workload - AzureWorkload
- Default
Backup - DefaultBackup
- INVALID
- Invalid
- AZURE_IAAS_VM
- AzureIaasVM
- MAB
- MAB
- DPM
- DPM
- AZURE_BACKUP_SERVER
- AzureBackupServer
- AZURE_SQL
- AzureSql
- AZURE_STORAGE
- AzureStorage
- AZURE_WORKLOAD
- AzureWorkload
- DEFAULT_BACKUP
- DefaultBackup
- "Invalid"
- Invalid
- "Azure
Iaas VM" - AzureIaasVM
- "MAB"
- MAB
- "DPM"
- DPM
- "Azure
Backup Server" - AzureBackupServer
- "Azure
Sql" - AzureSql
- "Azure
Storage" - AzureStorage
- "Azure
Workload" - AzureWorkload
- "Default
Backup" - DefaultBackup
ContainerIdentityInfo, ContainerIdentityInfoArgs
- Aad
Tenant stringId - Protection container identity - AAD Tenant
- Audience string
- Protection container identity - Audience
- Service
Principal stringClient Id - Protection container identity - AAD Service Principal
- Unique
Name string - Unique name of the container
- Aad
Tenant stringId - Protection container identity - AAD Tenant
- Audience string
- Protection container identity - Audience
- Service
Principal stringClient Id - Protection container identity - AAD Service Principal
- Unique
Name string - Unique name of the container
- aad
Tenant StringId - Protection container identity - AAD Tenant
- audience String
- Protection container identity - Audience
- service
Principal StringClient Id - Protection container identity - AAD Service Principal
- unique
Name String - Unique name of the container
- aad
Tenant stringId - Protection container identity - AAD Tenant
- audience string
- Protection container identity - Audience
- service
Principal stringClient Id - Protection container identity - AAD Service Principal
- unique
Name string - Unique name of the container
- aad_
tenant_ strid - Protection container identity - AAD Tenant
- audience str
- Protection container identity - Audience
- service_
principal_ strclient_ id - Protection container identity - AAD Service Principal
- unique_
name str - Unique name of the container
- aad
Tenant StringId - Protection container identity - AAD Tenant
- audience String
- Protection container identity - Audience
- service
Principal StringClient Id - Protection container identity - AAD Service Principal
- unique
Name String - Unique name of the container
ContainerIdentityInfoResponse, ContainerIdentityInfoResponseArgs
- Aad
Tenant stringId - Protection container identity - AAD Tenant
- Audience string
- Protection container identity - Audience
- Service
Principal stringClient Id - Protection container identity - AAD Service Principal
- Unique
Name string - Unique name of the container
- Aad
Tenant stringId - Protection container identity - AAD Tenant
- Audience string
- Protection container identity - Audience
- Service
Principal stringClient Id - Protection container identity - AAD Service Principal
- Unique
Name string - Unique name of the container
- aad
Tenant StringId - Protection container identity - AAD Tenant
- audience String
- Protection container identity - Audience
- service
Principal StringClient Id - Protection container identity - AAD Service Principal
- unique
Name String - Unique name of the container
- aad
Tenant stringId - Protection container identity - AAD Tenant
- audience string
- Protection container identity - Audience
- service
Principal stringClient Id - Protection container identity - AAD Service Principal
- unique
Name string - Unique name of the container
- aad_
tenant_ strid - Protection container identity - AAD Tenant
- audience str
- Protection container identity - Audience
- service_
principal_ strclient_ id - Protection container identity - AAD Service Principal
- unique_
name str - Unique name of the container
- aad
Tenant StringId - Protection container identity - AAD Tenant
- audience String
- Protection container identity - Audience
- service
Principal StringClient Id - Protection container identity - AAD Service Principal
- unique
Name String - Unique name of the container
DPMContainerExtendedInfo, DPMContainerExtendedInfoArgs
- Last
Refreshed stringAt - Last refresh time of the DPMContainer.
- Last
Refreshed stringAt - Last refresh time of the DPMContainer.
- last
Refreshed StringAt - Last refresh time of the DPMContainer.
- last
Refreshed stringAt - Last refresh time of the DPMContainer.
- last_
refreshed_ strat - Last refresh time of the DPMContainer.
- last
Refreshed StringAt - Last refresh time of the DPMContainer.
DPMContainerExtendedInfoResponse, DPMContainerExtendedInfoResponseArgs
- Last
Refreshed stringAt - Last refresh time of the DPMContainer.
- Last
Refreshed stringAt - Last refresh time of the DPMContainer.
- last
Refreshed StringAt - Last refresh time of the DPMContainer.
- last
Refreshed stringAt - Last refresh time of the DPMContainer.
- last_
refreshed_ strat - Last refresh time of the DPMContainer.
- last
Refreshed StringAt - Last refresh time of the DPMContainer.
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
DpmContainer, DpmContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers List<string> - List of BackupEngines protecting the container
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. DPMContainer Extended Info - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers []string - List of BackupEngines protecting the container
- Extended
Info DPMContainerExtended Info - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- can
Re booleanRegister - Specifies whether the container is re-registrable.
- container
Id string - ID of container.
- dpm
Agent stringVersion - Backup engine Agent version
- dpm
Servers string[] - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info - Extended Info of the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of protected items in the BackupEngine
- protection
Status string - Protection status of the container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available boolean - To check if upgrade available
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- can_
re_ boolregister - Specifies whether the container is re-registrable.
- container_
id str - ID of container.
- dpm_
agent_ strversion - Backup engine Agent version
- dpm_
servers Sequence[str] - List of BackupEngines protecting the container
- extended_
info DPMContainerExtended Info - Extended Info of the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of protected items in the BackupEngine
- protection_
status str - Protection status of the container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- upgrade_
available bool - To check if upgrade available
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info Property Map - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
DpmContainerResponse, DpmContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers List<string> - List of BackupEngines protecting the container
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. DPMContainer Extended Info Response - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- Backup
Management stringType - Type of backup management for the container.
- Can
Re boolRegister - Specifies whether the container is re-registrable.
- Container
Id string - ID of container.
- Dpm
Agent stringVersion - Backup engine Agent version
- Dpm
Servers []string - List of BackupEngines protecting the container
- Extended
Info DPMContainerExtended Info Response - Extended Info of the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of protected items in the BackupEngine
- Protection
Status string - Protection status of the container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Upgrade
Available bool - To check if upgrade available
- backup
Management StringType - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info Response - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
- backup
Management stringType - Type of backup management for the container.
- can
Re booleanRegister - Specifies whether the container is re-registrable.
- container
Id string - ID of container.
- dpm
Agent stringVersion - Backup engine Agent version
- dpm
Servers string[] - List of BackupEngines protecting the container
- extended
Info DPMContainerExtended Info Response - Extended Info of the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of protected items in the BackupEngine
- protection
Status string - Protection status of the container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available boolean - To check if upgrade available
- backup_
management_ strtype - Type of backup management for the container.
- can_
re_ boolregister - Specifies whether the container is re-registrable.
- container_
id str - ID of container.
- dpm_
agent_ strversion - Backup engine Agent version
- dpm_
servers Sequence[str] - List of BackupEngines protecting the container
- extended_
info DPMContainerExtended Info Response - Extended Info of the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of protected items in the BackupEngine
- protection_
status str - Protection status of the container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- upgrade_
available bool - To check if upgrade available
- backup
Management StringType - Type of backup management for the container.
- can
Re BooleanRegister - Specifies whether the container is re-registrable.
- container
Id String - ID of container.
- dpm
Agent StringVersion - Backup engine Agent version
- dpm
Servers List<String> - List of BackupEngines protecting the container
- extended
Info Property Map - Extended Info of the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of protected items in the BackupEngine
- protection
Status String - Protection status of the container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- upgrade
Available Boolean - To check if upgrade available
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.
GenericContainer, GenericContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Extended
Information Pulumi.Azure Native. Recovery Services. Inputs. Generic Container Extended Info - Extended information (not returned in List container API calls)
- Fabric
Name string - Name of the container's fabric
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Extended
Information GenericContainer Extended Info - Extended information (not returned in List container API calls)
- Fabric
Name string - Name of the container's fabric
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- extended
Information GenericContainer Extended Info - Extended information (not returned in List container API calls)
- fabric
Name String - Name of the container's fabric
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- extended
Information GenericContainer Extended Info - Extended information (not returned in List container API calls)
- fabric
Name string - Name of the container's fabric
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- extended_
information GenericContainer Extended Info - Extended information (not returned in List container API calls)
- fabric_
name str - Name of the container's fabric
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- extended
Information Property Map - Extended information (not returned in List container API calls)
- fabric
Name String - Name of the container's fabric
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
GenericContainerExtendedInfo, GenericContainerExtendedInfoArgs
- Container
Identity Pulumi.Info Azure Native. Recovery Services. Inputs. Container Identity Info - Container identity information
- Raw
Cert stringData - Public key of container cert
- Service
Endpoints Dictionary<string, string> - Azure Backup Service Endpoints for the container
- Container
Identity ContainerInfo Identity Info - Container identity information
- Raw
Cert stringData - Public key of container cert
- Service
Endpoints map[string]string - Azure Backup Service Endpoints for the container
- container
Identity ContainerInfo Identity Info - Container identity information
- raw
Cert StringData - Public key of container cert
- service
Endpoints Map<String,String> - Azure Backup Service Endpoints for the container
- container
Identity ContainerInfo Identity Info - Container identity information
- raw
Cert stringData - Public key of container cert
- service
Endpoints {[key: string]: string} - Azure Backup Service Endpoints for the container
- container_
identity_ Containerinfo Identity Info - Container identity information
- raw_
cert_ strdata - Public key of container cert
- service_
endpoints Mapping[str, str] - Azure Backup Service Endpoints for the container
- container
Identity Property MapInfo - Container identity information
- raw
Cert StringData - Public key of container cert
- service
Endpoints Map<String> - Azure Backup Service Endpoints for the container
GenericContainerExtendedInfoResponse, GenericContainerExtendedInfoResponseArgs
- Container
Identity Pulumi.Info Azure Native. Recovery Services. Inputs. Container Identity Info Response - Container identity information
- Raw
Cert stringData - Public key of container cert
- Service
Endpoints Dictionary<string, string> - Azure Backup Service Endpoints for the container
- Container
Identity ContainerInfo Identity Info Response - Container identity information
- Raw
Cert stringData - Public key of container cert
- Service
Endpoints map[string]string - Azure Backup Service Endpoints for the container
- container
Identity ContainerInfo Identity Info Response - Container identity information
- raw
Cert StringData - Public key of container cert
- service
Endpoints Map<String,String> - Azure Backup Service Endpoints for the container
- container
Identity ContainerInfo Identity Info Response - Container identity information
- raw
Cert stringData - Public key of container cert
- service
Endpoints {[key: string]: string} - Azure Backup Service Endpoints for the container
- container_
identity_ Containerinfo Identity Info Response - Container identity information
- raw_
cert_ strdata - Public key of container cert
- service_
endpoints Mapping[str, str] - Azure Backup Service Endpoints for the container
- container
Identity Property MapInfo - Container identity information
- raw
Cert StringData - Public key of container cert
- service
Endpoints Map<String> - Azure Backup Service Endpoints for the container
GenericContainerResponse, GenericContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Extended
Information Pulumi.Azure Native. Recovery Services. Inputs. Generic Container Extended Info Response - Extended information (not returned in List container API calls)
- Fabric
Name string - Name of the container's fabric
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Backup
Management stringType - Type of backup management for the container.
- Extended
Information GenericContainer Extended Info Response - Extended information (not returned in List container API calls)
- Fabric
Name string - Name of the container's fabric
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup
Management StringType - Type of backup management for the container.
- extended
Information GenericContainer Extended Info Response - Extended information (not returned in List container API calls)
- fabric
Name String - Name of the container's fabric
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- backup
Management stringType - Type of backup management for the container.
- extended
Information GenericContainer Extended Info Response - Extended information (not returned in List container API calls)
- fabric
Name string - Name of the container's fabric
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- backup_
management_ strtype - Type of backup management for the container.
- extended_
information GenericContainer Extended Info Response - Extended information (not returned in List container API calls)
- fabric_
name str - Name of the container's fabric
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- backup
Management StringType - Type of backup management for the container.
- extended
Information Property Map - Extended information (not returned in List container API calls)
- fabric
Name String - Name of the container's fabric
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
IaaSVMContainer, IaaSVMContainerArgs
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- virtual_
machine_ strid - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual_
machine_ strversion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
IaaSVMContainerResponse, IaaSVMContainerResponseArgs
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- Backup
Management stringType - Type of backup management for the container.
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Resource
Group string - Resource group name of Recovery Services Vault.
- Virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- Virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management stringType - Type of backup management for the container.
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- protectable
Object stringType - Type of the protectable object associated with this container
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- resource
Group string - Resource group name of Recovery Services Vault.
- virtual
Machine stringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine stringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup_
management_ strtype - Type of backup management for the container.
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- resource_
group str - Resource group name of Recovery Services Vault.
- virtual_
machine_ strid - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual_
machine_ strversion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
- backup
Management StringType - Type of backup management for the container.
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- protectable
Object StringType - Type of the protectable object associated with this container
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- resource
Group String - Resource group name of Recovery Services Vault.
- virtual
Machine StringId - Fully qualified ARM url of the virtual machine represented by this Azure IaaS VM container.
- virtual
Machine StringVersion - Specifies whether the container represents a Classic or an Azure Resource Manager VM.
InquiryInfo, InquiryInfoArgs
- Inquiry
Details List<Pulumi.Azure Native. Recovery Services. Inputs. Workload Inquiry Details> - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- Status string
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- Inquiry
Details []WorkloadInquiry Details - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- Status string
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- inquiry
Details List<WorkloadInquiry Details> - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status String
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- inquiry
Details WorkloadInquiry Details[] - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status string
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- inquiry_
details Sequence[WorkloadInquiry Details] - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status str
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- inquiry
Details List<Property Map> - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status String
- Inquiry Status for this container such as InProgress | Failed | Succeeded
InquiryInfoResponse, InquiryInfoResponseArgs
- Error
Detail Pulumi.Azure Native. Recovery Services. Inputs. Error Detail Response - Error Details if the Status is non-success.
- Inquiry
Details List<Pulumi.Azure Native. Recovery Services. Inputs. Workload Inquiry Details Response> - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- Status string
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- Error
Detail ErrorDetail Response - Error Details if the Status is non-success.
- Inquiry
Details []WorkloadInquiry Details Response - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- Status string
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- error
Detail ErrorDetail Response - Error Details if the Status is non-success.
- inquiry
Details List<WorkloadInquiry Details Response> - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status String
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- error
Detail ErrorDetail Response - Error Details if the Status is non-success.
- inquiry
Details WorkloadInquiry Details Response[] - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status string
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- error_
detail ErrorDetail Response - Error Details if the Status is non-success.
- inquiry_
details Sequence[WorkloadInquiry Details Response] - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status str
- Inquiry Status for this container such as InProgress | Failed | Succeeded
- error
Detail Property Map - Error Details if the Status is non-success.
- inquiry
Details List<Property Map> - Inquiry Details which will have workload specific details. For e.g. - For SQL and oracle this will contain different details.
- status String
- Inquiry Status for this container such as InProgress | Failed | Succeeded
InquiryValidation, InquiryValidationArgs
- Status string
- Status for the Inquiry Validation.
- Status string
- Status for the Inquiry Validation.
- status String
- Status for the Inquiry Validation.
- status string
- Status for the Inquiry Validation.
- status str
- Status for the Inquiry Validation.
- status String
- Status for the Inquiry Validation.
InquiryValidationResponse, InquiryValidationResponseArgs
- Additional
Detail string - Error Additional Detail in case the status is non-success.
- Protectable
Item objectCount - Dictionary to store the count of ProtectableItems with key POType.
- Error
Detail Pulumi.Azure Native. Recovery Services. Inputs. Error Detail Response - Error Detail in case the status is non-success.
- Status string
- Status for the Inquiry Validation.
- Additional
Detail string - Error Additional Detail in case the status is non-success.
- Protectable
Item interface{}Count - Dictionary to store the count of ProtectableItems with key POType.
- Error
Detail ErrorDetail Response - Error Detail in case the status is non-success.
- Status string
- Status for the Inquiry Validation.
- additional
Detail String - Error Additional Detail in case the status is non-success.
- protectable
Item ObjectCount - Dictionary to store the count of ProtectableItems with key POType.
- error
Detail ErrorDetail Response - Error Detail in case the status is non-success.
- status String
- Status for the Inquiry Validation.
- additional
Detail string - Error Additional Detail in case the status is non-success.
- protectable
Item anyCount - Dictionary to store the count of ProtectableItems with key POType.
- error
Detail ErrorDetail Response - Error Detail in case the status is non-success.
- status string
- Status for the Inquiry Validation.
- additional_
detail str - Error Additional Detail in case the status is non-success.
- protectable_
item_ Anycount - Dictionary to store the count of ProtectableItems with key POType.
- error_
detail ErrorDetail Response - Error Detail in case the status is non-success.
- status str
- Status for the Inquiry Validation.
- additional
Detail String - Error Additional Detail in case the status is non-success.
- protectable
Item AnyCount - Dictionary to store the count of ProtectableItems with key POType.
- error
Detail Property Map - Error Detail in case the status is non-success.
- status String
- Status for the Inquiry Validation.
MABContainerHealthDetails, MABContainerHealthDetailsArgs
- 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
MABContainerHealthDetailsResponse, MABContainerHealthDetailsResponseArgs
- 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
MabContainer, MabContainerArgs
- Agent
Version string - Agent version of this container.
- Backup
Management string | Pulumi.Type Azure Native. Recovery Services. Backup Management Type - Type of backup management for the container.
- Can
Re boolRegister - Can the container be registered one more time.
- Container
Health stringState - Health state of mab container.
- Container
Id double - ContainerID represents the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Mab Container Extended Info - Additional information for this container
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Mab
Container List<Pulumi.Health Details Azure Native. Recovery Services. Inputs. MABContainer Health Details> - Health details on this mab container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Agent
Version string - Agent version of this container.
- Backup
Management string | BackupType Management Type - Type of backup management for the container.
- Can
Re boolRegister - Can the container be registered one more time.
- Container
Health stringState - Health state of mab container.
- Container
Id float64 - ContainerID represents the container.
- Extended
Info MabContainer Extended Info - Additional information for this container
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Mab
Container []MABContainerHealth Details Health Details - Health details on this mab container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- agent
Version String - Agent version of this container.
- backup
Management String | BackupType Management Type - Type of backup management for the container.
- can
Re BooleanRegister - Can the container be registered one more time.
- container
Health StringState - Health state of mab container.
- container
Id Double - ContainerID represents the container.
- extended
Info MabContainer Extended Info - Additional information for this container
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- mab
Container List<MABContainerHealth Details Health Details> - Health details on this mab container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- agent
Version string - Agent version of this container.
- backup
Management string | BackupType Management Type - Type of backup management for the container.
- can
Re booleanRegister - Can the container be registered one more time.
- container
Health stringState - Health state of mab container.
- container
Id number - ContainerID represents the container.
- extended
Info MabContainer Extended Info - Additional information for this container
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- mab
Container MABContainerHealth Details Health Details[] - Health details on this mab container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of items backed up in this container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- agent_
version str - Agent version of this container.
- backup_
management_ str | Backuptype Management Type - Type of backup management for the container.
- can_
re_ boolregister - Can the container be registered one more time.
- container_
health_ strstate - Health state of mab container.
- container_
id float - ContainerID represents the container.
- extended_
info MabContainer Extended Info - Additional information for this container
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- mab_
container_ Sequence[MABContainerhealth_ details Health Details] - Health details on this mab container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of items backed up in this container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- agent
Version String - Agent version of this container.
- backup
Management String | "Invalid" | "AzureType Iaas VM" | "MAB" | "DPM" | "Azure Backup Server" | "Azure Sql" | "Azure Storage" | "Azure Workload" | "Default Backup" - Type of backup management for the container.
- can
Re BooleanRegister - Can the container be registered one more time.
- container
Health StringState - Health state of mab container.
- container
Id Number - ContainerID represents the container.
- extended
Info Property Map - Additional information for this container
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- mab
Container List<Property Map>Health Details - Health details on this mab container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
MabContainerExtendedInfo, MabContainerExtendedInfoArgs
- Backup
Item string | Pulumi.Type Azure Native. Recovery Services. Backup Item Type - Type of backup items associated with this container.
- Backup
Items List<string> - List of backup items associated with this container.
- Last
Backup stringStatus - Latest backup status of this container.
- Last
Refreshed stringAt - Time stamp when this container was refreshed.
- Policy
Name string - Backup policy associated with this container.
- Backup
Item string | BackupType Item Type - Type of backup items associated with this container.
- Backup
Items []string - List of backup items associated with this container.
- Last
Backup stringStatus - Latest backup status of this container.
- Last
Refreshed stringAt - Time stamp when this container was refreshed.
- Policy
Name string - Backup policy associated with this container.
- backup
Item String | BackupType Item Type - Type of backup items associated with this container.
- backup
Items List<String> - List of backup items associated with this container.
- last
Backup StringStatus - Latest backup status of this container.
- last
Refreshed StringAt - Time stamp when this container was refreshed.
- policy
Name String - Backup policy associated with this container.
- backup
Item string | BackupType Item Type - Type of backup items associated with this container.
- backup
Items string[] - List of backup items associated with this container.
- last
Backup stringStatus - Latest backup status of this container.
- last
Refreshed stringAt - Time stamp when this container was refreshed.
- policy
Name string - Backup policy associated with this container.
- backup_
item_ str | Backuptype Item Type - Type of backup items associated with this container.
- backup_
items Sequence[str] - List of backup items associated with this container.
- last_
backup_ strstatus - Latest backup status of this container.
- last_
refreshed_ strat - Time stamp when this container was refreshed.
- policy_
name str - Backup policy associated with this container.
- backup
Item String | "Invalid" | "VM" | "FileType Folder" | "Azure Sql Db" | "SQLDB" | "Exchange" | "Sharepoint" | "VMware VM" | "System State" | "Client" | "Generic Data Source" | "SQLData Base" | "Azure File Share" | "SAPHana Database" | "SAPAse Database" | "SAPHana DBInstance" - Type of backup items associated with this container.
- backup
Items List<String> - List of backup items associated with this container.
- last
Backup StringStatus - Latest backup status of this container.
- last
Refreshed StringAt - Time stamp when this container was refreshed.
- policy
Name String - Backup policy associated with this container.
MabContainerExtendedInfoResponse, MabContainerExtendedInfoResponseArgs
- Backup
Item stringType - Type of backup items associated with this container.
- Backup
Items List<string> - List of backup items associated with this container.
- Last
Backup stringStatus - Latest backup status of this container.
- Last
Refreshed stringAt - Time stamp when this container was refreshed.
- Policy
Name string - Backup policy associated with this container.
- Backup
Item stringType - Type of backup items associated with this container.
- Backup
Items []string - List of backup items associated with this container.
- Last
Backup stringStatus - Latest backup status of this container.
- Last
Refreshed stringAt - Time stamp when this container was refreshed.
- Policy
Name string - Backup policy associated with this container.
- backup
Item StringType - Type of backup items associated with this container.
- backup
Items List<String> - List of backup items associated with this container.
- last
Backup StringStatus - Latest backup status of this container.
- last
Refreshed StringAt - Time stamp when this container was refreshed.
- policy
Name String - Backup policy associated with this container.
- backup
Item stringType - Type of backup items associated with this container.
- backup
Items string[] - List of backup items associated with this container.
- last
Backup stringStatus - Latest backup status of this container.
- last
Refreshed stringAt - Time stamp when this container was refreshed.
- policy
Name string - Backup policy associated with this container.
- backup_
item_ strtype - Type of backup items associated with this container.
- backup_
items Sequence[str] - List of backup items associated with this container.
- last_
backup_ strstatus - Latest backup status of this container.
- last_
refreshed_ strat - Time stamp when this container was refreshed.
- policy_
name str - Backup policy associated with this container.
- backup
Item StringType - Type of backup items associated with this container.
- backup
Items List<String> - List of backup items associated with this container.
- last
Backup StringStatus - Latest backup status of this container.
- last
Refreshed StringAt - Time stamp when this container was refreshed.
- policy
Name String - Backup policy associated with this container.
MabContainerResponse, MabContainerResponseArgs
- Agent
Version string - Agent version of this container.
- Backup
Management stringType - Type of backup management for the container.
- Can
Re boolRegister - Can the container be registered one more time.
- Container
Health stringState - Health state of mab container.
- Container
Id double - ContainerID represents the container.
- Extended
Info Pulumi.Azure Native. Recovery Services. Inputs. Mab Container Extended Info Response - Additional information for this container
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Mab
Container List<Pulumi.Health Details Azure Native. Recovery Services. Inputs. MABContainer Health Details Response> - Health details on this mab container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item doubleCount - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- Agent
Version string - Agent version of this container.
- Backup
Management stringType - Type of backup management for the container.
- Can
Re boolRegister - Can the container be registered one more time.
- Container
Health stringState - Health state of mab container.
- Container
Id float64 - ContainerID represents the container.
- Extended
Info MabContainer Extended Info Response - Additional information for this container
- Friendly
Name string - Friendly name of the container.
- Health
Status string - Status of health of the container.
- Mab
Container []MABContainerHealth Details Health Details Response - Health details on this mab container.
- Protectable
Object stringType - Type of the protectable object associated with this container
- Protected
Item float64Count - Number of items backed up in this container.
- Registration
Status string - Status of registration of the container with the Recovery Services Vault.
- agent
Version String - Agent version of this container.
- backup
Management StringType - Type of backup management for the container.
- can
Re BooleanRegister - Can the container be registered one more time.
- container
Health StringState - Health state of mab container.
- container
Id Double - ContainerID represents the container.
- extended
Info MabContainer Extended Info Response - Additional information for this container
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- mab
Container List<MABContainerHealth Details Health Details Response> - Health details on this mab container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item DoubleCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
- agent
Version string - Agent version of this container.
- backup
Management stringType - Type of backup management for the container.
- can
Re booleanRegister - Can the container be registered one more time.
- container
Health stringState - Health state of mab container.
- container
Id number - ContainerID represents the container.
- extended
Info MabContainer Extended Info Response - Additional information for this container
- friendly
Name string - Friendly name of the container.
- health
Status string - Status of health of the container.
- mab
Container MABContainerHealth Details Health Details Response[] - Health details on this mab container.
- protectable
Object stringType - Type of the protectable object associated with this container
- protected
Item numberCount - Number of items backed up in this container.
- registration
Status string - Status of registration of the container with the Recovery Services Vault.
- agent_
version str - Agent version of this container.
- backup_
management_ strtype - Type of backup management for the container.
- can_
re_ boolregister - Can the container be registered one more time.
- container_
health_ strstate - Health state of mab container.
- container_
id float - ContainerID represents the container.
- extended_
info MabContainer Extended Info Response - Additional information for this container
- friendly_
name str - Friendly name of the container.
- health_
status str - Status of health of the container.
- mab_
container_ Sequence[MABContainerhealth_ details Health Details Response] - Health details on this mab container.
- protectable_
object_ strtype - Type of the protectable object associated with this container
- protected_
item_ floatcount - Number of items backed up in this container.
- registration_
status str - Status of registration of the container with the Recovery Services Vault.
- agent
Version String - Agent version of this container.
- backup
Management StringType - Type of backup management for the container.
- can
Re BooleanRegister - Can the container be registered one more time.
- container
Health StringState - Health state of mab container.
- container
Id Number - ContainerID represents the container.
- extended
Info Property Map - Additional information for this container
- friendly
Name String - Friendly name of the container.
- health
Status String - Status of health of the container.
- mab
Container List<Property Map>Health Details - Health details on this mab container.
- protectable
Object StringType - Type of the protectable object associated with this container
- protected
Item NumberCount - Number of items backed up in this container.
- registration
Status String - Status of registration of the container with the Recovery Services Vault.
OperationType, OperationTypeArgs
- Invalid
- Invalid
- Register
- Register
- Reregister
- Reregister
- Operation
Type Invalid - Invalid
- Operation
Type Register - Register
- Operation
Type Reregister - Reregister
- Invalid
- Invalid
- Register
- Register
- Reregister
- Reregister
- Invalid
- Invalid
- Register
- Register
- Reregister
- Reregister
- INVALID
- Invalid
- REGISTER
- Register
- REREGISTER
- Reregister
- "Invalid"
- Invalid
- "Register"
- Register
- "Reregister"
- Reregister
WorkloadInquiryDetails, WorkloadInquiryDetailsArgs
- Inquiry
Validation Pulumi.Azure Native. Recovery Services. Inputs. Inquiry Validation - Inquiry validation such as permissions and other backup validations.
- Item
Count double - Contains the protectable item Count inside this Container.
- Type string
- Type of the Workload such as SQL, Oracle etc.
- Inquiry
Validation InquiryValidation - Inquiry validation such as permissions and other backup validations.
- Item
Count float64 - Contains the protectable item Count inside this Container.
- Type string
- Type of the Workload such as SQL, Oracle etc.
- inquiry
Validation InquiryValidation - Inquiry validation such as permissions and other backup validations.
- item
Count Double - Contains the protectable item Count inside this Container.
- type String
- Type of the Workload such as SQL, Oracle etc.
- inquiry
Validation InquiryValidation - Inquiry validation such as permissions and other backup validations.
- item
Count number - Contains the protectable item Count inside this Container.
- type string
- Type of the Workload such as SQL, Oracle etc.
- inquiry_
validation InquiryValidation - Inquiry validation such as permissions and other backup validations.
- item_
count float - Contains the protectable item Count inside this Container.
- type str
- Type of the Workload such as SQL, Oracle etc.
- inquiry
Validation Property Map - Inquiry validation such as permissions and other backup validations.
- item
Count Number - Contains the protectable item Count inside this Container.
- type String
- Type of the Workload such as SQL, Oracle etc.
WorkloadInquiryDetailsResponse, WorkloadInquiryDetailsResponseArgs
- Inquiry
Validation Pulumi.Azure Native. Recovery Services. Inputs. Inquiry Validation Response - Inquiry validation such as permissions and other backup validations.
- Item
Count double - Contains the protectable item Count inside this Container.
- Type string
- Type of the Workload such as SQL, Oracle etc.
- Inquiry
Validation InquiryValidation Response - Inquiry validation such as permissions and other backup validations.
- Item
Count float64 - Contains the protectable item Count inside this Container.
- Type string
- Type of the Workload such as SQL, Oracle etc.
- inquiry
Validation InquiryValidation Response - Inquiry validation such as permissions and other backup validations.
- item
Count Double - Contains the protectable item Count inside this Container.
- type String
- Type of the Workload such as SQL, Oracle etc.
- inquiry
Validation InquiryValidation Response - Inquiry validation such as permissions and other backup validations.
- item
Count number - Contains the protectable item Count inside this Container.
- type string
- Type of the Workload such as SQL, Oracle etc.
- inquiry_
validation InquiryValidation Response - Inquiry validation such as permissions and other backup validations.
- item_
count float - Contains the protectable item Count inside this Container.
- type str
- Type of the Workload such as SQL, Oracle etc.
- inquiry
Validation Property Map - Inquiry validation such as permissions and other backup validations.
- item
Count Number - Contains the protectable item Count inside this Container.
- type String
- Type of the Workload such as SQL, Oracle etc.
WorkloadType, WorkloadTypeArgs
- Invalid
- Invalid
- VM
- VM
- File
Folder - FileFolder
- Azure
Sql Db - AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMware
VM - VMwareVM
- System
State - SystemState
- Client
- Client
- Generic
Data Source - GenericDataSource
- SQLData
Base - SQLDataBase
- Azure
File Share - AzureFileShare
- SAPHana
Database - SAPHanaDatabase
- SAPAse
Database - SAPAseDatabase
- SAPHana
DBInstance - SAPHanaDBInstance
- Workload
Type Invalid - Invalid
- Workload
Type VM - VM
- Workload
Type File Folder - FileFolder
- Workload
Type Azure Sql Db - AzureSqlDb
- Workload
Type SQLDB - SQLDB
- Workload
Type Exchange - Exchange
- Workload
Type Sharepoint - Sharepoint
- Workload
Type VMware VM - VMwareVM
- Workload
Type System State - SystemState
- Workload
Type Client - Client
- Workload
Type Generic Data Source - GenericDataSource
- Workload
Type SQLData Base - SQLDataBase
- Workload
Type Azure File Share - AzureFileShare
- Workload
Type SAPHana Database - SAPHanaDatabase
- Workload
Type SAPAse Database - SAPAseDatabase
- Workload
Type SAPHana DBInstance - SAPHanaDBInstance
- Invalid
- Invalid
- VM
- VM
- File
Folder - FileFolder
- Azure
Sql Db - AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMware
VM - VMwareVM
- System
State - SystemState
- Client
- Client
- Generic
Data Source - GenericDataSource
- SQLData
Base - SQLDataBase
- Azure
File Share - AzureFileShare
- SAPHana
Database - SAPHanaDatabase
- SAPAse
Database - SAPAseDatabase
- SAPHana
DBInstance - SAPHanaDBInstance
- Invalid
- Invalid
- VM
- VM
- File
Folder - FileFolder
- Azure
Sql Db - AzureSqlDb
- SQLDB
- SQLDB
- Exchange
- Exchange
- Sharepoint
- Sharepoint
- VMware
VM - VMwareVM
- System
State - SystemState
- Client
- Client
- Generic
Data Source - GenericDataSource
- SQLData
Base - SQLDataBase
- Azure
File Share - AzureFileShare
- SAPHana
Database - SAPHanaDatabase
- SAPAse
Database - SAPAseDatabase
- SAPHana
DBInstance - SAPHanaDBInstance
- INVALID
- Invalid
- VM
- VM
- FILE_FOLDER
- FileFolder
- AZURE_SQL_DB
- AzureSqlDb
- SQLDB
- SQLDB
- EXCHANGE
- Exchange
- SHAREPOINT
- Sharepoint
- V_MWARE_VM
- VMwareVM
- SYSTEM_STATE
- SystemState
- CLIENT
- Client
- GENERIC_DATA_SOURCE
- GenericDataSource
- SQL_DATA_BASE
- SQLDataBase
- AZURE_FILE_SHARE
- AzureFileShare
- SAP_HANA_DATABASE
- SAPHanaDatabase
- SAPASE_DATABASE
- SAPAseDatabase
- SAP_HANA_DB_INSTANCE
- SAPHanaDBInstance
- "Invalid"
- Invalid
- "VM"
- VM
- "File
Folder" - FileFolder
- "Azure
Sql Db" - AzureSqlDb
- "SQLDB"
- SQLDB
- "Exchange"
- Exchange
- "Sharepoint"
- Sharepoint
- "VMware
VM" - VMwareVM
- "System
State" - SystemState
- "Client"
- Client
- "Generic
Data Source" - GenericDataSource
- "SQLData
Base" - SQLDataBase
- "Azure
File Share" - AzureFileShare
- "SAPHana
Database" - SAPHanaDatabase
- "SAPAse
Database" - SAPAseDatabase
- "SAPHana
DBInstance" - SAPHanaDBInstance
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:recoveryservices:ProtectionContainer StorageContainer;Storage;SwaggerTestRg;swaggertestsa /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.RecoveryServices/vaults/{vaultName}/backupFabrics/{fabricName}/protectionContainers/{containerName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0