azure-native.recoveryservices.ReplicationFabric
Explore with Pulumi AI
Fabric definition. API Version: 2018-07-10.
Example Usage
Creates an Azure Site Recovery fabric.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var replicationFabric = new AzureNative.RecoveryServices.ReplicationFabric("replicationFabric", new()
    {
        FabricName = "cloud1",
        Properties = new AzureNative.RecoveryServices.Inputs.FabricCreationInputPropertiesArgs
        {
            CustomDetails = 
            {
                { "instanceType", "FabricSpecificCreationInput" },
            },
        },
        ResourceGroupName = "resourceGroupPS1",
        ResourceName = "vault1",
    });
});
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.recoveryservices.ReplicationFabric;
import com.pulumi.azurenative.recoveryservices.ReplicationFabricArgs;
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 replicationFabric = new ReplicationFabric("replicationFabric", ReplicationFabricArgs.builder()        
            .fabricName("cloud1")
            .properties(Map.of("customDetails", Map.of("instanceType", "FabricSpecificCreationInput")))
            .resourceGroupName("resourceGroupPS1")
            .resourceName("vault1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const replicationFabric = new azure_native.recoveryservices.ReplicationFabric("replicationFabric", {
    fabricName: "cloud1",
    properties: {
        customDetails: {
            instanceType: "FabricSpecificCreationInput",
        },
    },
    resourceGroupName: "resourceGroupPS1",
    resourceName: "vault1",
});
import pulumi
import pulumi_azure_native as azure_native
replication_fabric = azure_native.recoveryservices.ReplicationFabric("replicationFabric",
    fabric_name="cloud1",
    properties=azure_native.recoveryservices.FabricPropertiesResponseArgs(
        custom_details={
            "instanceType": "FabricSpecificCreationInput",
        },
    ),
    resource_group_name="resourceGroupPS1",
    resource_name_="vault1")
resources:
  replicationFabric:
    type: azure-native:recoveryservices:ReplicationFabric
    properties:
      fabricName: cloud1
      properties:
        customDetails:
          instanceType: FabricSpecificCreationInput
      resourceGroupName: resourceGroupPS1
      resourceName: vault1
Create ReplicationFabric Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReplicationFabric(name: string, args: ReplicationFabricArgs, opts?: CustomResourceOptions);@overload
def ReplicationFabric(resource_name: str,
                      args: ReplicationFabricArgs,
                      opts: Optional[ResourceOptions] = None)
@overload
def ReplicationFabric(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      resource_group_name: Optional[str] = None,
                      resource_name_: Optional[str] = None,
                      fabric_name: Optional[str] = None,
                      properties: Optional[FabricCreationInputPropertiesArgs] = None)func NewReplicationFabric(ctx *Context, name string, args ReplicationFabricArgs, opts ...ResourceOption) (*ReplicationFabric, error)public ReplicationFabric(string name, ReplicationFabricArgs args, CustomResourceOptions? opts = null)
public ReplicationFabric(String name, ReplicationFabricArgs args)
public ReplicationFabric(String name, ReplicationFabricArgs args, CustomResourceOptions options)
type: azure-native:recoveryservices:ReplicationFabric
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 ReplicationFabricArgs
- 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 ReplicationFabricArgs
- 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 ReplicationFabricArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReplicationFabricArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReplicationFabricArgs
- 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 replicationFabricResource = new AzureNative.Recoveryservices.ReplicationFabric("replicationFabricResource", new()
{
    ResourceGroupName = "string",
    ResourceName = "string",
    FabricName = "string",
    Properties = 
    {
        { "customDetails", 
        {
            { "instanceType", "Azure" },
            { "location", "string" },
        } },
    },
});
example, err := recoveryservices.NewReplicationFabric(ctx, "replicationFabricResource", &recoveryservices.ReplicationFabricArgs{
	ResourceGroupName: "string",
	ResourceName:      "string",
	FabricName:        "string",
	Properties: map[string]interface{}{
		"customDetails": map[string]interface{}{
			"instanceType": "Azure",
			"location":     "string",
		},
	},
})
var replicationFabricResource = new ReplicationFabric("replicationFabricResource", ReplicationFabricArgs.builder()
    .resourceGroupName("string")
    .resourceName("string")
    .fabricName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
replication_fabric_resource = azure_native.recoveryservices.ReplicationFabric("replicationFabricResource",
    resource_group_name=string,
    resource_name_=string,
    fabric_name=string,
    properties={
        customDetails: {
            instanceType: Azure,
            location: string,
        },
    })
const replicationFabricResource = new azure_native.recoveryservices.ReplicationFabric("replicationFabricResource", {
    resourceGroupName: "string",
    resourceName: "string",
    fabricName: "string",
    properties: {
        customDetails: {
            instanceType: "Azure",
            location: "string",
        },
    },
});
type: azure-native:recoveryservices:ReplicationFabric
properties:
    fabricName: string
    properties:
        customDetails:
            instanceType: Azure
            location: string
    resourceGroupName: string
    resourceName: string
ReplicationFabric Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ReplicationFabric resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group where the recovery services vault is present.
- ResourceName string
- The name of the recovery services vault.
- FabricName string
- Name of the ASR fabric.
- Properties
Pulumi.Azure Native. Recovery Services. Inputs. Fabric Creation Input Properties 
- Fabric creation input.
- ResourceGroup stringName 
- The name of the resource group where the recovery services vault is present.
- ResourceName string
- The name of the recovery services vault.
- FabricName string
- Name of the ASR fabric.
- Properties
FabricCreation Input Properties Args 
- Fabric creation input.
- resourceGroup StringName 
- The name of the resource group where the recovery services vault is present.
- resourceName String
- The name of the recovery services vault.
- fabricName String
- Name of the ASR fabric.
- properties
FabricCreation Input Properties 
- Fabric creation input.
- resourceGroup stringName 
- The name of the resource group where the recovery services vault is present.
- resourceName string
- The name of the recovery services vault.
- fabricName string
- Name of the ASR fabric.
- properties
FabricCreation Input Properties 
- Fabric creation input.
- resource_group_ strname 
- The name of the resource group where the recovery services vault is present.
- resource_name str
- The name of the recovery services vault.
- fabric_name str
- Name of the ASR fabric.
- properties
FabricCreation Input Properties Args 
- Fabric creation input.
- resourceGroup StringName 
- The name of the resource group where the recovery services vault is present.
- resourceName String
- The name of the recovery services vault.
- fabricName String
- Name of the ASR fabric.
- properties Property Map
- Fabric creation input.
Outputs
All input properties are implicitly available as output properties. Additionally, the ReplicationFabric resource produces the following output properties:
Supporting Types
AgentDetailsResponse, AgentDetailsResponseArgs      
- agent_id str
- The Id of the agent running on the server.
- bios_id str
- The machine BIOS Id.
- disks
Sequence[AgentDisk Details Response] 
- The details of agent disks.
- fqdn str
- The machine FQDN.
- machine_id str
- The Id of the machine to which the agent is registered.
AgentDiskDetailsResponse, AgentDiskDetailsResponseArgs        
- CapacityIn doubleBytes 
- The disk capacity in bytes.
- DiskId string
- The disk Id.
- DiskName string
- The disk name.
- IsOSDisk string
- A value indicating whether the disk is the OS disk.
- LunId int
- The lun of disk.
- CapacityIn float64Bytes 
- The disk capacity in bytes.
- DiskId string
- The disk Id.
- DiskName string
- The disk name.
- IsOSDisk string
- A value indicating whether the disk is the OS disk.
- LunId int
- The lun of disk.
- capacityIn DoubleBytes 
- The disk capacity in bytes.
- diskId String
- The disk Id.
- diskName String
- The disk name.
- isOSDisk String
- A value indicating whether the disk is the OS disk.
- lunId Integer
- The lun of disk.
- capacityIn numberBytes 
- The disk capacity in bytes.
- diskId string
- The disk Id.
- diskName string
- The disk name.
- isOSDisk string
- A value indicating whether the disk is the OS disk.
- lunId number
- The lun of disk.
- capacity_in_ floatbytes 
- The disk capacity in bytes.
- disk_id str
- The disk Id.
- disk_name str
- The disk name.
- is_os_ strdisk 
- A value indicating whether the disk is the OS disk.
- lun_id int
- The lun of disk.
- capacityIn NumberBytes 
- The disk capacity in bytes.
- diskId String
- The disk Id.
- diskName String
- The disk name.
- isOSDisk String
- A value indicating whether the disk is the OS disk.
- lunId Number
- The lun of disk.
AzureFabricCreationInput, AzureFabricCreationInputArgs        
- Location string
- The Location.
- Location string
- The Location.
- location String
- The Location.
- location string
- The Location.
- location str
- The Location.
- location String
- The Location.
AzureFabricSpecificDetailsResponse, AzureFabricSpecificDetailsResponseArgs          
- ContainerIds List<string>
- The container Ids for the Azure fabric.
- Location string
- The Location for the Azure fabric.
- ContainerIds []string
- The container Ids for the Azure fabric.
- Location string
- The Location for the Azure fabric.
- containerIds List<String>
- The container Ids for the Azure fabric.
- location String
- The Location for the Azure fabric.
- containerIds string[]
- The container Ids for the Azure fabric.
- location string
- The Location for the Azure fabric.
- container_ids Sequence[str]
- The container Ids for the Azure fabric.
- location str
- The Location for the Azure fabric.
- containerIds List<String>
- The container Ids for the Azure fabric.
- location String
- The Location for the Azure fabric.
DataStoreResponse, DataStoreResponseArgs      
- Capacity string
- The capacity of data store in GBs.
- FreeSpace string
- The free space of data store in GBs.
- SymbolicName string
- The symbolic name of data store.
- Type string
- The type of data store.
- Uuid string
- The uuid of data store.
- Capacity string
- The capacity of data store in GBs.
- FreeSpace string
- The free space of data store in GBs.
- SymbolicName string
- The symbolic name of data store.
- Type string
- The type of data store.
- Uuid string
- The uuid of data store.
- capacity String
- The capacity of data store in GBs.
- freeSpace String
- The free space of data store in GBs.
- symbolicName String
- The symbolic name of data store.
- type String
- The type of data store.
- uuid String
- The uuid of data store.
- capacity string
- The capacity of data store in GBs.
- freeSpace string
- The free space of data store in GBs.
- symbolicName string
- The symbolic name of data store.
- type string
- The type of data store.
- uuid string
- The uuid of data store.
- capacity str
- The capacity of data store in GBs.
- free_space str
- The free space of data store in GBs.
- symbolic_name str
- The symbolic name of data store.
- type str
- The type of data store.
- uuid str
- The uuid of data store.
- capacity String
- The capacity of data store in GBs.
- freeSpace String
- The free space of data store in GBs.
- symbolicName String
- The symbolic name of data store.
- type String
- The type of data store.
- uuid String
- The uuid of data store.
DraDetailsResponse, DraDetailsResponseArgs      
- Health string
- The health of the DRA.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- The health errors.
- Id string
- The DRA Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the DRA.
- Name string
- The DRA name.
- Version string
- The DRA version.
- Health string
- The health of the DRA.
- HealthErrors []HealthError Response 
- The health errors.
- Id string
- The DRA Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the DRA.
- Name string
- The DRA name.
- Version string
- The DRA version.
- health String
- The health of the DRA.
- healthErrors List<HealthError Response> 
- The health errors.
- id String
- The DRA Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the DRA.
- name String
- The DRA name.
- version String
- The DRA version.
- health string
- The health of the DRA.
- healthErrors HealthError Response[] 
- The health errors.
- id string
- The DRA Id.
- lastHeartbeat stringUtc 
- The last heartbeat received from the DRA.
- name string
- The DRA name.
- version string
- The DRA version.
- health str
- The health of the DRA.
- health_errors Sequence[HealthError Response] 
- The health errors.
- id str
- The DRA Id.
- last_heartbeat_ strutc 
- The last heartbeat received from the DRA.
- name str
- The DRA name.
- version str
- The DRA version.
- health String
- The health of the DRA.
- healthErrors List<Property Map>
- The health errors.
- id String
- The DRA Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the DRA.
- name String
- The DRA name.
- version String
- The DRA version.
EncryptionDetailsResponse, EncryptionDetailsResponseArgs      
- KekCert stringExpiry Date 
- The key encryption key certificate expiry date.
- KekCert stringThumbprint 
- The key encryption key certificate thumbprint.
- KekState string
- The key encryption key state for the Vmm.
- KekCert stringExpiry Date 
- The key encryption key certificate expiry date.
- KekCert stringThumbprint 
- The key encryption key certificate thumbprint.
- KekState string
- The key encryption key state for the Vmm.
- kekCert StringExpiry Date 
- The key encryption key certificate expiry date.
- kekCert StringThumbprint 
- The key encryption key certificate thumbprint.
- kekState String
- The key encryption key state for the Vmm.
- kekCert stringExpiry Date 
- The key encryption key certificate expiry date.
- kekCert stringThumbprint 
- The key encryption key certificate thumbprint.
- kekState string
- The key encryption key state for the Vmm.
- kek_cert_ strexpiry_ date 
- The key encryption key certificate expiry date.
- kek_cert_ strthumbprint 
- The key encryption key certificate thumbprint.
- kek_state str
- The key encryption key state for the Vmm.
- kekCert StringExpiry Date 
- The key encryption key certificate expiry date.
- kekCert StringThumbprint 
- The key encryption key certificate thumbprint.
- kekState String
- The key encryption key state for the Vmm.
FabricCreationInputProperties, FabricCreationInputPropertiesArgs        
- CustomDetails AzureFabric | InCreation Input Mage | VMwareRcm Fabric Creation Input V2Fabric Creation Input 
- Fabric provider specific creation input.
- customDetails AzureFabric | InCreation Input Mage | VMwareRcm Fabric Creation Input V2Fabric Creation Input 
- Fabric provider specific creation input.
- customDetails AzureFabric | InCreation Input Mage | VMwareRcm Fabric Creation Input V2Fabric Creation Input 
- Fabric provider specific creation input.
- custom_details AzureFabric | InCreation Input Mage | VMwareRcm Fabric Creation Input V2Fabric Creation Input 
- Fabric provider specific creation input.
- customDetails Property Map | Property Map | Property Map
- Fabric provider specific creation input.
FabricPropertiesResponse, FabricPropertiesResponseArgs      
- BcdrState string
- BCDR state of the fabric.
- CustomDetails Pulumi.Azure | Pulumi.Native. Recovery Services. Inputs. Azure Fabric Specific Details Response Azure | Pulumi.Native. Recovery Services. Inputs. Hyper VSite Details Response Azure | Pulumi.Native. Recovery Services. Inputs. In Mage Rcm Fabric Specific Details Response Azure | Pulumi.Native. Recovery Services. Inputs. VMware Details Response Azure | Pulumi.Native. Recovery Services. Inputs. VMware V2Fabric Specific Details Response Azure Native. Recovery Services. Inputs. Vmm Details Response 
- Fabric specific settings.
- EncryptionDetails Pulumi.Azure Native. Recovery Services. Inputs. Encryption Details Response 
- Encryption details for the fabric.
- FriendlyName string
- Friendly name of the fabric.
- Health string
- Health of fabric.
- HealthError List<Pulumi.Details Azure Native. Recovery Services. Inputs. Health Error Response> 
- Fabric health error details.
- InternalIdentifier string
- Dra Registration Id.
- RolloverEncryption Pulumi.Details Azure Native. Recovery Services. Inputs. Encryption Details Response 
- Rollover encryption details for the fabric.
- BcdrState string
- BCDR state of the fabric.
- CustomDetails AzureFabric | HyperSpecific Details Response VSite | InDetails Response Mage | VMwareRcm Fabric Specific Details Response Details | VMwareResponse V2Fabric | VmmSpecific Details Response Details Response 
- Fabric specific settings.
- EncryptionDetails EncryptionDetails Response 
- Encryption details for the fabric.
- FriendlyName string
- Friendly name of the fabric.
- Health string
- Health of fabric.
- HealthError []HealthDetails Error Response 
- Fabric health error details.
- InternalIdentifier string
- Dra Registration Id.
- RolloverEncryption EncryptionDetails Details Response 
- Rollover encryption details for the fabric.
- bcdrState String
- BCDR state of the fabric.
- customDetails AzureFabric | HyperSpecific Details Response VSite | InDetails Response Mage | VMwareRcm Fabric Specific Details Response Details | VMwareResponse V2Fabric | VmmSpecific Details Response Details Response 
- Fabric specific settings.
- encryptionDetails EncryptionDetails Response 
- Encryption details for the fabric.
- friendlyName String
- Friendly name of the fabric.
- health String
- Health of fabric.
- healthError List<HealthDetails Error Response> 
- Fabric health error details.
- internalIdentifier String
- Dra Registration Id.
- rolloverEncryption EncryptionDetails Details Response 
- Rollover encryption details for the fabric.
- bcdrState string
- BCDR state of the fabric.
- customDetails AzureFabric | HyperSpecific Details Response VSite | InDetails Response Mage | VMwareRcm Fabric Specific Details Response Details | VMwareResponse V2Fabric | VmmSpecific Details Response Details Response 
- Fabric specific settings.
- encryptionDetails EncryptionDetails Response 
- Encryption details for the fabric.
- friendlyName string
- Friendly name of the fabric.
- health string
- Health of fabric.
- healthError HealthDetails Error Response[] 
- Fabric health error details.
- internalIdentifier string
- Dra Registration Id.
- rolloverEncryption EncryptionDetails Details Response 
- Rollover encryption details for the fabric.
- bcdr_state str
- BCDR state of the fabric.
- custom_details AzureFabric | HyperSpecific Details Response VSite | InDetails Response Mage | VMwareRcm Fabric Specific Details Response Details | VMwareResponse V2Fabric | VmmSpecific Details Response Details Response 
- Fabric specific settings.
- encryption_details EncryptionDetails Response 
- Encryption details for the fabric.
- friendly_name str
- Friendly name of the fabric.
- health str
- Health of fabric.
- health_error_ Sequence[Healthdetails Error Response] 
- Fabric health error details.
- internal_identifier str
- Dra Registration Id.
- rollover_encryption_ Encryptiondetails Details Response 
- Rollover encryption details for the fabric.
- bcdrState String
- BCDR state of the fabric.
- customDetails Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
- Fabric specific settings.
- encryptionDetails Property Map
- Encryption details for the fabric.
- friendlyName String
- Friendly name of the fabric.
- health String
- Health of fabric.
- healthError List<Property Map>Details 
- Fabric health error details.
- internalIdentifier String
- Dra Registration Id.
- rolloverEncryption Property MapDetails 
- Rollover encryption details for the fabric.
HealthErrorResponse, HealthErrorResponseArgs      
- CreationTime stringUtc 
- Error creation time (UTC)
- CustomerResolvability string
- Value indicating whether the health error is customer resolvable.
- EntityId string
- ID of the entity.
- ErrorCategory string
- Category of error.
- ErrorCode string
- Error code.
- ErrorId string
- The health error unique id.
- ErrorLevel string
- Level of error.
- ErrorMessage string
- Error message.
- ErrorSource string
- Source of error.
- ErrorType string
- Type of error.
- InnerHealth List<Pulumi.Errors Azure Native. Recovery Services. Inputs. Inner Health Error Response> 
- The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- PossibleCauses string
- Possible causes of error.
- RecommendedAction string
- Recommended action to resolve error.
- RecoveryProvider stringError Message 
- DRA error message.
- SummaryMessage string
- Summary message of the entity.
- CreationTime stringUtc 
- Error creation time (UTC)
- CustomerResolvability string
- Value indicating whether the health error is customer resolvable.
- EntityId string
- ID of the entity.
- ErrorCategory string
- Category of error.
- ErrorCode string
- Error code.
- ErrorId string
- The health error unique id.
- ErrorLevel string
- Level of error.
- ErrorMessage string
- Error message.
- ErrorSource string
- Source of error.
- ErrorType string
- Type of error.
- InnerHealth []InnerErrors Health Error Response 
- The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- PossibleCauses string
- Possible causes of error.
- RecommendedAction string
- Recommended action to resolve error.
- RecoveryProvider stringError Message 
- DRA error message.
- SummaryMessage string
- Summary message of the entity.
- creationTime StringUtc 
- Error creation time (UTC)
- customerResolvability String
- Value indicating whether the health error is customer resolvable.
- entityId String
- ID of the entity.
- errorCategory String
- Category of error.
- errorCode String
- Error code.
- errorId String
- The health error unique id.
- errorLevel String
- Level of error.
- errorMessage String
- Error message.
- errorSource String
- Source of error.
- errorType String
- Type of error.
- innerHealth List<InnerErrors Health Error Response> 
- The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possibleCauses String
- Possible causes of error.
- recommendedAction String
- Recommended action to resolve error.
- recoveryProvider StringError Message 
- DRA error message.
- summaryMessage String
- Summary message of the entity.
- creationTime stringUtc 
- Error creation time (UTC)
- customerResolvability string
- Value indicating whether the health error is customer resolvable.
- entityId string
- ID of the entity.
- errorCategory string
- Category of error.
- errorCode string
- Error code.
- errorId string
- The health error unique id.
- errorLevel string
- Level of error.
- errorMessage string
- Error message.
- errorSource string
- Source of error.
- errorType string
- Type of error.
- innerHealth InnerErrors Health Error Response[] 
- The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possibleCauses string
- Possible causes of error.
- recommendedAction string
- Recommended action to resolve error.
- recoveryProvider stringError Message 
- DRA error message.
- summaryMessage string
- Summary message of the entity.
- creation_time_ strutc 
- Error creation time (UTC)
- customer_resolvability str
- Value indicating whether the health error is customer resolvable.
- entity_id str
- ID of the entity.
- error_category str
- Category of error.
- error_code str
- Error code.
- error_id str
- The health error unique id.
- error_level str
- Level of error.
- error_message str
- Error message.
- error_source str
- Source of error.
- error_type str
- Type of error.
- inner_health_ Sequence[Innererrors Health Error Response] 
- The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possible_causes str
- Possible causes of error.
- recommended_action str
- Recommended action to resolve error.
- recovery_provider_ strerror_ message 
- DRA error message.
- summary_message str
- Summary message of the entity.
- creationTime StringUtc 
- Error creation time (UTC)
- customerResolvability String
- Value indicating whether the health error is customer resolvable.
- entityId String
- ID of the entity.
- errorCategory String
- Category of error.
- errorCode String
- Error code.
- errorId String
- The health error unique id.
- errorLevel String
- Level of error.
- errorMessage String
- Error message.
- errorSource String
- Source of error.
- errorType String
- Type of error.
- innerHealth List<Property Map>Errors 
- The inner health errors. HealthError having a list of HealthError as child errors is problematic. InnerHealthError is used because this will prevent an infinite loop of structures when Hydra tries to auto-generate the contract. We are exposing the related health errors as inner health errors and all API consumers can utilize this in the same fashion as Exception -> InnerException.
- possibleCauses String
- Possible causes of error.
- recommendedAction String
- Recommended action to resolve error.
- recoveryProvider StringError Message 
- DRA error message.
- summaryMessage String
- Summary message of the entity.
HyperVSiteDetailsResponse, HyperVSiteDetailsResponseArgs        
IdentityProviderInput, IdentityProviderInputArgs      
- string
- The base authority for Azure Active Directory authentication.
- ApplicationId string
- The application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- The intended Audience of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- ObjectId string
- The object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- TenantId string
- The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- string
- The base authority for Azure Active Directory authentication.
- ApplicationId string
- The application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- Audience string
- The intended Audience of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- ObjectId string
- The object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- TenantId string
- The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- String
- The base authority for Azure Active Directory authentication.
- applicationId String
- The application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- The intended Audience of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- objectId String
- The object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenantId String
- The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- string
- The base authority for Azure Active Directory authentication.
- applicationId string
- The application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience string
- The intended Audience of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- objectId string
- The object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenantId string
- The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- str
- The base authority for Azure Active Directory authentication.
- application_id str
- The application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience str
- The intended Audience of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- object_id str
- The object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenant_id str
- The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- String
- The base authority for Azure Active Directory authentication.
- applicationId String
- The application/client Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- audience String
- The intended Audience of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- objectId String
- The object Id of the service principal with which the on-premise management/data plane components would communicate with our Azure services.
- tenantId String
- The tenant Id for the service principal with which the on-premise management/data plane components would communicate with our Azure services.
InMageRcmFabricCreationInput, InMageRcmFabricCreationInputArgs            
- AuthCertificate string
- The certificate to be used for AAD authentication.
- PhysicalSite stringId 
- The ARM Id of the physical site.
- SourceAgent Pulumi.Identity Azure Native. Recovery Services. Inputs. Identity Provider Input 
- The identity provider input for source agent authentication.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- AuthCertificate string
- The certificate to be used for AAD authentication.
- PhysicalSite stringId 
- The ARM Id of the physical site.
- SourceAgent IdentityIdentity Provider Input 
- The identity provider input for source agent authentication.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- authCertificate String
- The certificate to be used for AAD authentication.
- physicalSite StringId 
- The ARM Id of the physical site.
- sourceAgent IdentityIdentity Provider Input 
- The identity provider input for source agent authentication.
- vmwareSite StringId 
- The ARM Id of the VMware site.
- authCertificate string
- The certificate to be used for AAD authentication.
- physicalSite stringId 
- The ARM Id of the physical site.
- sourceAgent IdentityIdentity Provider Input 
- The identity provider input for source agent authentication.
- vmwareSite stringId 
- The ARM Id of the VMware site.
- auth_certificate str
- The certificate to be used for AAD authentication.
- physical_site_ strid 
- The ARM Id of the physical site.
- source_agent_ Identityidentity Provider Input 
- The identity provider input for source agent authentication.
- vmware_site_ strid 
- The ARM Id of the VMware site.
- authCertificate String
- The certificate to be used for AAD authentication.
- physicalSite StringId 
- The ARM Id of the physical site.
- sourceAgent Property MapIdentity 
- The identity provider input for source agent authentication.
- vmwareSite StringId 
- The ARM Id of the VMware site.
InMageRcmFabricSpecificDetailsResponse, InMageRcmFabricSpecificDetailsResponseArgs              
- AgentDetails List<Pulumi.Azure Native. Recovery Services. Inputs. Agent Details Response> 
- The list of agent details.
- ControlPlane stringUri 
- The control plane Uri.
- DataPlane stringUri 
- The data plane Uri.
- Dras
List<Pulumi.Azure Native. Recovery Services. Inputs. Dra Details Response> 
- The list of DRAs.
- PhysicalSite stringId 
- The ARM Id of the physical site.
- ProcessServers List<Pulumi.Azure Native. Recovery Services. Inputs. Process Server Details Response> 
- The list of process servers.
- PushInstallers List<Pulumi.Azure Native. Recovery Services. Inputs. Push Installer Details Response> 
- The list of push installers.
- RcmProxies List<Pulumi.Azure Native. Recovery Services. Inputs. Rcm Proxy Details Response> 
- The list of RCM proxies.
- ReplicationAgents List<Pulumi.Azure Native. Recovery Services. Inputs. Replication Agent Details Response> 
- The list of replication agents.
- ReprotectAgents List<Pulumi.Azure Native. Recovery Services. Inputs. Reprotect Agent Details Response> 
- The list of reprotect agents.
- ServiceContainer stringId 
- The service container Id.
- ServiceEndpoint string
- The service endpoint.
- ServiceResource stringId 
- The service resource Id.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- AgentDetails []AgentDetails Response 
- The list of agent details.
- ControlPlane stringUri 
- The control plane Uri.
- DataPlane stringUri 
- The data plane Uri.
- Dras
[]DraDetails Response 
- The list of DRAs.
- PhysicalSite stringId 
- The ARM Id of the physical site.
- ProcessServers []ProcessServer Details Response 
- The list of process servers.
- PushInstallers []PushInstaller Details Response 
- The list of push installers.
- RcmProxies []RcmProxy Details Response 
- The list of RCM proxies.
- ReplicationAgents []ReplicationAgent Details Response 
- The list of replication agents.
- ReprotectAgents []ReprotectAgent Details Response 
- The list of reprotect agents.
- ServiceContainer stringId 
- The service container Id.
- ServiceEndpoint string
- The service endpoint.
- ServiceResource stringId 
- The service resource Id.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- agentDetails List<AgentDetails Response> 
- The list of agent details.
- controlPlane StringUri 
- The control plane Uri.
- dataPlane StringUri 
- The data plane Uri.
- dras
List<DraDetails Response> 
- The list of DRAs.
- physicalSite StringId 
- The ARM Id of the physical site.
- processServers List<ProcessServer Details Response> 
- The list of process servers.
- pushInstallers List<PushInstaller Details Response> 
- The list of push installers.
- rcmProxies List<RcmProxy Details Response> 
- The list of RCM proxies.
- replicationAgents List<ReplicationAgent Details Response> 
- The list of replication agents.
- reprotectAgents List<ReprotectAgent Details Response> 
- The list of reprotect agents.
- serviceContainer StringId 
- The service container Id.
- serviceEndpoint String
- The service endpoint.
- serviceResource StringId 
- The service resource Id.
- vmwareSite StringId 
- The ARM Id of the VMware site.
- agentDetails AgentDetails Response[] 
- The list of agent details.
- controlPlane stringUri 
- The control plane Uri.
- dataPlane stringUri 
- The data plane Uri.
- dras
DraDetails Response[] 
- The list of DRAs.
- physicalSite stringId 
- The ARM Id of the physical site.
- processServers ProcessServer Details Response[] 
- The list of process servers.
- pushInstallers PushInstaller Details Response[] 
- The list of push installers.
- rcmProxies RcmProxy Details Response[] 
- The list of RCM proxies.
- replicationAgents ReplicationAgent Details Response[] 
- The list of replication agents.
- reprotectAgents ReprotectAgent Details Response[] 
- The list of reprotect agents.
- serviceContainer stringId 
- The service container Id.
- serviceEndpoint string
- The service endpoint.
- serviceResource stringId 
- The service resource Id.
- vmwareSite stringId 
- The ARM Id of the VMware site.
- agent_details Sequence[AgentDetails Response] 
- The list of agent details.
- control_plane_ struri 
- The control plane Uri.
- data_plane_ struri 
- The data plane Uri.
- dras
Sequence[DraDetails Response] 
- The list of DRAs.
- physical_site_ strid 
- The ARM Id of the physical site.
- process_servers Sequence[ProcessServer Details Response] 
- The list of process servers.
- push_installers Sequence[PushInstaller Details Response] 
- The list of push installers.
- rcm_proxies Sequence[RcmProxy Details Response] 
- The list of RCM proxies.
- replication_agents Sequence[ReplicationAgent Details Response] 
- The list of replication agents.
- reprotect_agents Sequence[ReprotectAgent Details Response] 
- The list of reprotect agents.
- service_container_ strid 
- The service container Id.
- service_endpoint str
- The service endpoint.
- service_resource_ strid 
- The service resource Id.
- vmware_site_ strid 
- The ARM Id of the VMware site.
- agentDetails List<Property Map>
- The list of agent details.
- controlPlane StringUri 
- The control plane Uri.
- dataPlane StringUri 
- The data plane Uri.
- dras List<Property Map>
- The list of DRAs.
- physicalSite StringId 
- The ARM Id of the physical site.
- processServers List<Property Map>
- The list of process servers.
- pushInstallers List<Property Map>
- The list of push installers.
- rcmProxies List<Property Map>
- The list of RCM proxies.
- replicationAgents List<Property Map>
- The list of replication agents.
- reprotectAgents List<Property Map>
- The list of reprotect agents.
- serviceContainer StringId 
- The service container Id.
- serviceEndpoint String
- The service endpoint.
- serviceResource StringId 
- The service resource Id.
- vmwareSite StringId 
- The ARM Id of the VMware site.
InnerHealthErrorResponse, InnerHealthErrorResponseArgs        
- CreationTime stringUtc 
- Error creation time (UTC)
- EntityId string
- ID of the entity.
- ErrorCategory string
- Category of error.
- ErrorCode string
- Error code.
- ErrorLevel string
- Level of error.
- ErrorMessage string
- Error message.
- ErrorSource string
- Source of error.
- ErrorType string
- Type of error.
- PossibleCauses string
- Possible causes of error.
- RecommendedAction string
- Recommended action to resolve error.
- RecoveryProvider stringError Message 
- DRA error message.
- SummaryMessage string
- Summary message of the entity.
- CreationTime stringUtc 
- Error creation time (UTC)
- EntityId string
- ID of the entity.
- ErrorCategory string
- Category of error.
- ErrorCode string
- Error code.
- ErrorLevel string
- Level of error.
- ErrorMessage string
- Error message.
- ErrorSource string
- Source of error.
- ErrorType string
- Type of error.
- PossibleCauses string
- Possible causes of error.
- RecommendedAction string
- Recommended action to resolve error.
- RecoveryProvider stringError Message 
- DRA error message.
- SummaryMessage string
- Summary message of the entity.
- creationTime StringUtc 
- Error creation time (UTC)
- entityId String
- ID of the entity.
- errorCategory String
- Category of error.
- errorCode String
- Error code.
- errorLevel String
- Level of error.
- errorMessage String
- Error message.
- errorSource String
- Source of error.
- errorType String
- Type of error.
- possibleCauses String
- Possible causes of error.
- recommendedAction String
- Recommended action to resolve error.
- recoveryProvider StringError Message 
- DRA error message.
- summaryMessage String
- Summary message of the entity.
- creationTime stringUtc 
- Error creation time (UTC)
- entityId string
- ID of the entity.
- errorCategory string
- Category of error.
- errorCode string
- Error code.
- errorLevel string
- Level of error.
- errorMessage string
- Error message.
- errorSource string
- Source of error.
- errorType string
- Type of error.
- possibleCauses string
- Possible causes of error.
- recommendedAction string
- Recommended action to resolve error.
- recoveryProvider stringError Message 
- DRA error message.
- summaryMessage string
- Summary message of the entity.
- creation_time_ strutc 
- Error creation time (UTC)
- entity_id str
- ID of the entity.
- error_category str
- Category of error.
- error_code str
- Error code.
- error_level str
- Level of error.
- error_message str
- Error message.
- error_source str
- Source of error.
- error_type str
- Type of error.
- possible_causes str
- Possible causes of error.
- recommended_action str
- Recommended action to resolve error.
- recovery_provider_ strerror_ message 
- DRA error message.
- summary_message str
- Summary message of the entity.
- creationTime StringUtc 
- Error creation time (UTC)
- entityId String
- ID of the entity.
- errorCategory String
- Category of error.
- errorCode String
- Error code.
- errorLevel String
- Level of error.
- errorMessage String
- Error message.
- errorSource String
- Source of error.
- errorType String
- Type of error.
- possibleCauses String
- Possible causes of error.
- recommendedAction String
- Recommended action to resolve error.
- recoveryProvider StringError Message 
- DRA error message.
- summaryMessage String
- Summary message of the entity.
MasterTargetServerResponse, MasterTargetServerResponseArgs        
- AgentExpiry stringDate 
- Agent expiry date.
- AgentVersion string
- The version of the scout component on the server.
- AgentVersion Pulumi.Details Azure Native. Recovery Services. Inputs. Version Details Response 
- Agent version details.
- DataStores List<Pulumi.Azure Native. Recovery Services. Inputs. Data Store Response> 
- The list of data stores in the fabric.
- DiskCount int
- Disk count of the master target.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- Health errors.
- Id string
- The server Id.
- IpAddress string
- The IP address of the server.
- LastHeartbeat string
- The last heartbeat received from the server.
- MarsAgent stringExpiry Date 
- MARS agent expiry date.
- MarsAgent stringVersion 
- MARS agent version.
- MarsAgent Pulumi.Version Details Azure Native. Recovery Services. Inputs. Version Details Response 
- Mars agent version details.
- Name string
- The server name.
- OsType string
- The OS type of the server.
- OsVersion string
- OS Version of the master target.
- RetentionVolumes List<Pulumi.Azure Native. Recovery Services. Inputs. Retention Volume Response> 
- The retention volumes of Master target Server.
- ValidationErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- Validation errors.
- VersionStatus string
- Version status
- AgentExpiry stringDate 
- Agent expiry date.
- AgentVersion string
- The version of the scout component on the server.
- AgentVersion VersionDetails Details Response 
- Agent version details.
- DataStores []DataStore Response 
- The list of data stores in the fabric.
- DiskCount int
- Disk count of the master target.
- HealthErrors []HealthError Response 
- Health errors.
- Id string
- The server Id.
- IpAddress string
- The IP address of the server.
- LastHeartbeat string
- The last heartbeat received from the server.
- MarsAgent stringExpiry Date 
- MARS agent expiry date.
- MarsAgent stringVersion 
- MARS agent version.
- MarsAgent VersionVersion Details Details Response 
- Mars agent version details.
- Name string
- The server name.
- OsType string
- The OS type of the server.
- OsVersion string
- OS Version of the master target.
- RetentionVolumes []RetentionVolume Response 
- The retention volumes of Master target Server.
- ValidationErrors []HealthError Response 
- Validation errors.
- VersionStatus string
- Version status
- agentExpiry StringDate 
- Agent expiry date.
- agentVersion String
- The version of the scout component on the server.
- agentVersion VersionDetails Details Response 
- Agent version details.
- dataStores List<DataStore Response> 
- The list of data stores in the fabric.
- diskCount Integer
- Disk count of the master target.
- healthErrors List<HealthError Response> 
- Health errors.
- id String
- The server Id.
- ipAddress String
- The IP address of the server.
- lastHeartbeat String
- The last heartbeat received from the server.
- marsAgent StringExpiry Date 
- MARS agent expiry date.
- marsAgent StringVersion 
- MARS agent version.
- marsAgent VersionVersion Details Details Response 
- Mars agent version details.
- name String
- The server name.
- osType String
- The OS type of the server.
- osVersion String
- OS Version of the master target.
- retentionVolumes List<RetentionVolume Response> 
- The retention volumes of Master target Server.
- validationErrors List<HealthError Response> 
- Validation errors.
- versionStatus String
- Version status
- agentExpiry stringDate 
- Agent expiry date.
- agentVersion string
- The version of the scout component on the server.
- agentVersion VersionDetails Details Response 
- Agent version details.
- dataStores DataStore Response[] 
- The list of data stores in the fabric.
- diskCount number
- Disk count of the master target.
- healthErrors HealthError Response[] 
- Health errors.
- id string
- The server Id.
- ipAddress string
- The IP address of the server.
- lastHeartbeat string
- The last heartbeat received from the server.
- marsAgent stringExpiry Date 
- MARS agent expiry date.
- marsAgent stringVersion 
- MARS agent version.
- marsAgent VersionVersion Details Details Response 
- Mars agent version details.
- name string
- The server name.
- osType string
- The OS type of the server.
- osVersion string
- OS Version of the master target.
- retentionVolumes RetentionVolume Response[] 
- The retention volumes of Master target Server.
- validationErrors HealthError Response[] 
- Validation errors.
- versionStatus string
- Version status
- agent_expiry_ strdate 
- Agent expiry date.
- agent_version str
- The version of the scout component on the server.
- agent_version_ Versiondetails Details Response 
- Agent version details.
- data_stores Sequence[DataStore Response] 
- The list of data stores in the fabric.
- disk_count int
- Disk count of the master target.
- health_errors Sequence[HealthError Response] 
- Health errors.
- id str
- The server Id.
- ip_address str
- The IP address of the server.
- last_heartbeat str
- The last heartbeat received from the server.
- mars_agent_ strexpiry_ date 
- MARS agent expiry date.
- mars_agent_ strversion 
- MARS agent version.
- mars_agent_ Versionversion_ details Details Response 
- Mars agent version details.
- name str
- The server name.
- os_type str
- The OS type of the server.
- os_version str
- OS Version of the master target.
- retention_volumes Sequence[RetentionVolume Response] 
- The retention volumes of Master target Server.
- validation_errors Sequence[HealthError Response] 
- Validation errors.
- version_status str
- Version status
- agentExpiry StringDate 
- Agent expiry date.
- agentVersion String
- The version of the scout component on the server.
- agentVersion Property MapDetails 
- Agent version details.
- dataStores List<Property Map>
- The list of data stores in the fabric.
- diskCount Number
- Disk count of the master target.
- healthErrors List<Property Map>
- Health errors.
- id String
- The server Id.
- ipAddress String
- The IP address of the server.
- lastHeartbeat String
- The last heartbeat received from the server.
- marsAgent StringExpiry Date 
- MARS agent expiry date.
- marsAgent StringVersion 
- MARS agent version.
- marsAgent Property MapVersion Details 
- Mars agent version details.
- name String
- The server name.
- osType String
- The OS type of the server.
- osVersion String
- OS Version of the master target.
- retentionVolumes List<Property Map>
- The retention volumes of Master target Server.
- validationErrors List<Property Map>
- Validation errors.
- versionStatus String
- Version status
MobilityServiceUpdateResponse, MobilityServiceUpdateResponseArgs        
- OsType string
- The OS type.
- RebootStatus string
- The reboot status of the update - whether it is required or not.
- Version string
- The version of the latest update.
- OsType string
- The OS type.
- RebootStatus string
- The reboot status of the update - whether it is required or not.
- Version string
- The version of the latest update.
- osType String
- The OS type.
- rebootStatus String
- The reboot status of the update - whether it is required or not.
- version String
- The version of the latest update.
- osType string
- The OS type.
- rebootStatus string
- The reboot status of the update - whether it is required or not.
- version string
- The version of the latest update.
- os_type str
- The OS type.
- reboot_status str
- The reboot status of the update - whether it is required or not.
- version str
- The version of the latest update.
- osType String
- The OS type.
- rebootStatus String
- The reboot status of the update - whether it is required or not.
- version String
- The version of the latest update.
ProcessServerDetailsResponse, ProcessServerDetailsResponseArgs        
- AvailableMemory doubleIn Bytes 
- The available memory.
- AvailableSpace doubleIn Bytes 
- The available disk space.
- FreeSpace doublePercentage 
- The free disk space percentage.
- Health string
- The health of the process server.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- The health errors.
- HistoricHealth string
- The historic health of the process server based on the health in last 24 hours.
- Id string
- The process server Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the process server.
- MemoryUsage doublePercentage 
- The memory usage percentage.
- Name string
- The process server name.
- ProcessorUsage doublePercentage 
- The processor usage percentage.
- ThroughputIn doubleBytes 
- The throughput in bytes.
- ThroughputUpload doublePending Data In Bytes 
- The uploading pending data in bytes.
- TotalMemory doubleIn Bytes 
- The total memory.
- TotalSpace doubleIn Bytes 
- The total disk space.
- UsedMemory doubleIn Bytes 
- The used memory.
- UsedSpace doubleIn Bytes 
- The used disk space.
- Version string
- The process server version.
- AvailableMemory float64In Bytes 
- The available memory.
- AvailableSpace float64In Bytes 
- The available disk space.
- FreeSpace float64Percentage 
- The free disk space percentage.
- Health string
- The health of the process server.
- HealthErrors []HealthError Response 
- The health errors.
- HistoricHealth string
- The historic health of the process server based on the health in last 24 hours.
- Id string
- The process server Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the process server.
- MemoryUsage float64Percentage 
- The memory usage percentage.
- Name string
- The process server name.
- ProcessorUsage float64Percentage 
- The processor usage percentage.
- ThroughputIn float64Bytes 
- The throughput in bytes.
- ThroughputUpload float64Pending Data In Bytes 
- The uploading pending data in bytes.
- TotalMemory float64In Bytes 
- The total memory.
- TotalSpace float64In Bytes 
- The total disk space.
- UsedMemory float64In Bytes 
- The used memory.
- UsedSpace float64In Bytes 
- The used disk space.
- Version string
- The process server version.
- availableMemory DoubleIn Bytes 
- The available memory.
- availableSpace DoubleIn Bytes 
- The available disk space.
- freeSpace DoublePercentage 
- The free disk space percentage.
- health String
- The health of the process server.
- healthErrors List<HealthError Response> 
- The health errors.
- historicHealth String
- The historic health of the process server based on the health in last 24 hours.
- id String
- The process server Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the process server.
- memoryUsage DoublePercentage 
- The memory usage percentage.
- name String
- The process server name.
- processorUsage DoublePercentage 
- The processor usage percentage.
- throughputIn DoubleBytes 
- The throughput in bytes.
- throughputUpload DoublePending Data In Bytes 
- The uploading pending data in bytes.
- totalMemory DoubleIn Bytes 
- The total memory.
- totalSpace DoubleIn Bytes 
- The total disk space.
- usedMemory DoubleIn Bytes 
- The used memory.
- usedSpace DoubleIn Bytes 
- The used disk space.
- version String
- The process server version.
- availableMemory numberIn Bytes 
- The available memory.
- availableSpace numberIn Bytes 
- The available disk space.
- freeSpace numberPercentage 
- The free disk space percentage.
- health string
- The health of the process server.
- healthErrors HealthError Response[] 
- The health errors.
- historicHealth string
- The historic health of the process server based on the health in last 24 hours.
- id string
- The process server Id.
- lastHeartbeat stringUtc 
- The last heartbeat received from the process server.
- memoryUsage numberPercentage 
- The memory usage percentage.
- name string
- The process server name.
- processorUsage numberPercentage 
- The processor usage percentage.
- throughputIn numberBytes 
- The throughput in bytes.
- throughputUpload numberPending Data In Bytes 
- The uploading pending data in bytes.
- totalMemory numberIn Bytes 
- The total memory.
- totalSpace numberIn Bytes 
- The total disk space.
- usedMemory numberIn Bytes 
- The used memory.
- usedSpace numberIn Bytes 
- The used disk space.
- version string
- The process server version.
- available_memory_ floatin_ bytes 
- The available memory.
- available_space_ floatin_ bytes 
- The available disk space.
- free_space_ floatpercentage 
- The free disk space percentage.
- health str
- The health of the process server.
- health_errors Sequence[HealthError Response] 
- The health errors.
- historic_health str
- The historic health of the process server based on the health in last 24 hours.
- id str
- The process server Id.
- last_heartbeat_ strutc 
- The last heartbeat received from the process server.
- memory_usage_ floatpercentage 
- The memory usage percentage.
- name str
- The process server name.
- processor_usage_ floatpercentage 
- The processor usage percentage.
- throughput_in_ floatbytes 
- The throughput in bytes.
- throughput_upload_ floatpending_ data_ in_ bytes 
- The uploading pending data in bytes.
- total_memory_ floatin_ bytes 
- The total memory.
- total_space_ floatin_ bytes 
- The total disk space.
- used_memory_ floatin_ bytes 
- The used memory.
- used_space_ floatin_ bytes 
- The used disk space.
- version str
- The process server version.
- availableMemory NumberIn Bytes 
- The available memory.
- availableSpace NumberIn Bytes 
- The available disk space.
- freeSpace NumberPercentage 
- The free disk space percentage.
- health String
- The health of the process server.
- healthErrors List<Property Map>
- The health errors.
- historicHealth String
- The historic health of the process server based on the health in last 24 hours.
- id String
- The process server Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the process server.
- memoryUsage NumberPercentage 
- The memory usage percentage.
- name String
- The process server name.
- processorUsage NumberPercentage 
- The processor usage percentage.
- throughputIn NumberBytes 
- The throughput in bytes.
- throughputUpload NumberPending Data In Bytes 
- The uploading pending data in bytes.
- totalMemory NumberIn Bytes 
- The total memory.
- totalSpace NumberIn Bytes 
- The total disk space.
- usedMemory NumberIn Bytes 
- The used memory.
- usedSpace NumberIn Bytes 
- The used disk space.
- version String
- The process server version.
ProcessServerResponse, ProcessServerResponseArgs      
- Health string
- The health of Process Server.
- MarsCommunication stringStatus 
- The MARS communication status.
- MarsRegistration stringStatus 
- The MARS registration status.
- PsStats stringRefresh Time 
- The process server stats refresh time.
- ThroughputIn doubleBytes 
- The throughput in bytes.
- ThroughputIn doubleMBps 
- The throughput in MBps.
- ThroughputStatus string
- The throughput status.
- ThroughputUpload doublePending Data In Bytes 
- The uploading pending data in bytes.
- AgentExpiry stringDate 
- Agent expiry date.
- AgentVersion string
- The version of the scout component on the server.
- AgentVersion Pulumi.Details Azure Native. Recovery Services. Inputs. Version Details Response 
- The agent version details.
- AvailableMemory doubleIn Bytes 
- The available memory.
- AvailableSpace doubleIn Bytes 
- The available space.
- CpuLoad string
- The percentage of the CPU load.
- CpuLoad stringStatus 
- The CPU load status.
- FriendlyName string
- The Process Server's friendly name.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- Health errors.
- HostId string
- The agent generated Id.
- Id string
- The Process Server Id.
- IpAddress string
- The IP address of the server.
- LastHeartbeat string
- The last heartbeat received from the server.
- MachineCount string
- The servers configured with this PS.
- MemoryUsage stringStatus 
- The memory usage status.
- MobilityService List<Pulumi.Updates Azure Native. Recovery Services. Inputs. Mobility Service Update Response> 
- The list of the mobility service updates available on the Process Server.
- OsType string
- The OS type of the server.
- OsVersion string
- OS Version of the process server. Note: This will get populated if user has CS version greater than 9.12.0.0.
- PsService stringStatus 
- The PS service status.
- ReplicationPair stringCount 
- The number of replication pairs configured in this PS.
- SpaceUsage stringStatus 
- The space usage status.
- SslCert stringExpiry Date 
- The PS SSL cert expiry date.
- SslCert intExpiry Remaining Days 
- CS SSL cert expiry date.
- SystemLoad string
- The percentage of the system load.
- SystemLoad stringStatus 
- The system load status.
- TotalMemory doubleIn Bytes 
- The total memory.
- TotalSpace doubleIn Bytes 
- The total space.
- VersionStatus string
- Version status
- Health string
- The health of Process Server.
- MarsCommunication stringStatus 
- The MARS communication status.
- MarsRegistration stringStatus 
- The MARS registration status.
- PsStats stringRefresh Time 
- The process server stats refresh time.
- ThroughputIn float64Bytes 
- The throughput in bytes.
- ThroughputIn float64MBps 
- The throughput in MBps.
- ThroughputStatus string
- The throughput status.
- ThroughputUpload float64Pending Data In Bytes 
- The uploading pending data in bytes.
- AgentExpiry stringDate 
- Agent expiry date.
- AgentVersion string
- The version of the scout component on the server.
- AgentVersion VersionDetails Details Response 
- The agent version details.
- AvailableMemory float64In Bytes 
- The available memory.
- AvailableSpace float64In Bytes 
- The available space.
- CpuLoad string
- The percentage of the CPU load.
- CpuLoad stringStatus 
- The CPU load status.
- FriendlyName string
- The Process Server's friendly name.
- HealthErrors []HealthError Response 
- Health errors.
- HostId string
- The agent generated Id.
- Id string
- The Process Server Id.
- IpAddress string
- The IP address of the server.
- LastHeartbeat string
- The last heartbeat received from the server.
- MachineCount string
- The servers configured with this PS.
- MemoryUsage stringStatus 
- The memory usage status.
- MobilityService []MobilityUpdates Service Update Response 
- The list of the mobility service updates available on the Process Server.
- OsType string
- The OS type of the server.
- OsVersion string
- OS Version of the process server. Note: This will get populated if user has CS version greater than 9.12.0.0.
- PsService stringStatus 
- The PS service status.
- ReplicationPair stringCount 
- The number of replication pairs configured in this PS.
- SpaceUsage stringStatus 
- The space usage status.
- SslCert stringExpiry Date 
- The PS SSL cert expiry date.
- SslCert intExpiry Remaining Days 
- CS SSL cert expiry date.
- SystemLoad string
- The percentage of the system load.
- SystemLoad stringStatus 
- The system load status.
- TotalMemory float64In Bytes 
- The total memory.
- TotalSpace float64In Bytes 
- The total space.
- VersionStatus string
- Version status
- health String
- The health of Process Server.
- marsCommunication StringStatus 
- The MARS communication status.
- marsRegistration StringStatus 
- The MARS registration status.
- psStats StringRefresh Time 
- The process server stats refresh time.
- throughputIn DoubleBytes 
- The throughput in bytes.
- throughputIn DoubleMBps 
- The throughput in MBps.
- throughputStatus String
- The throughput status.
- throughputUpload DoublePending Data In Bytes 
- The uploading pending data in bytes.
- agentExpiry StringDate 
- Agent expiry date.
- agentVersion String
- The version of the scout component on the server.
- agentVersion VersionDetails Details Response 
- The agent version details.
- availableMemory DoubleIn Bytes 
- The available memory.
- availableSpace DoubleIn Bytes 
- The available space.
- cpuLoad String
- The percentage of the CPU load.
- cpuLoad StringStatus 
- The CPU load status.
- friendlyName String
- The Process Server's friendly name.
- healthErrors List<HealthError Response> 
- Health errors.
- hostId String
- The agent generated Id.
- id String
- The Process Server Id.
- ipAddress String
- The IP address of the server.
- lastHeartbeat String
- The last heartbeat received from the server.
- machineCount String
- The servers configured with this PS.
- memoryUsage StringStatus 
- The memory usage status.
- mobilityService List<MobilityUpdates Service Update Response> 
- The list of the mobility service updates available on the Process Server.
- osType String
- The OS type of the server.
- osVersion String
- OS Version of the process server. Note: This will get populated if user has CS version greater than 9.12.0.0.
- psService StringStatus 
- The PS service status.
- replicationPair StringCount 
- The number of replication pairs configured in this PS.
- spaceUsage StringStatus 
- The space usage status.
- sslCert StringExpiry Date 
- The PS SSL cert expiry date.
- sslCert IntegerExpiry Remaining Days 
- CS SSL cert expiry date.
- systemLoad String
- The percentage of the system load.
- systemLoad StringStatus 
- The system load status.
- totalMemory DoubleIn Bytes 
- The total memory.
- totalSpace DoubleIn Bytes 
- The total space.
- versionStatus String
- Version status
- health string
- The health of Process Server.
- marsCommunication stringStatus 
- The MARS communication status.
- marsRegistration stringStatus 
- The MARS registration status.
- psStats stringRefresh Time 
- The process server stats refresh time.
- throughputIn numberBytes 
- The throughput in bytes.
- throughputIn numberMBps 
- The throughput in MBps.
- throughputStatus string
- The throughput status.
- throughputUpload numberPending Data In Bytes 
- The uploading pending data in bytes.
- agentExpiry stringDate 
- Agent expiry date.
- agentVersion string
- The version of the scout component on the server.
- agentVersion VersionDetails Details Response 
- The agent version details.
- availableMemory numberIn Bytes 
- The available memory.
- availableSpace numberIn Bytes 
- The available space.
- cpuLoad string
- The percentage of the CPU load.
- cpuLoad stringStatus 
- The CPU load status.
- friendlyName string
- The Process Server's friendly name.
- healthErrors HealthError Response[] 
- Health errors.
- hostId string
- The agent generated Id.
- id string
- The Process Server Id.
- ipAddress string
- The IP address of the server.
- lastHeartbeat string
- The last heartbeat received from the server.
- machineCount string
- The servers configured with this PS.
- memoryUsage stringStatus 
- The memory usage status.
- mobilityService MobilityUpdates Service Update Response[] 
- The list of the mobility service updates available on the Process Server.
- osType string
- The OS type of the server.
- osVersion string
- OS Version of the process server. Note: This will get populated if user has CS version greater than 9.12.0.0.
- psService stringStatus 
- The PS service status.
- replicationPair stringCount 
- The number of replication pairs configured in this PS.
- spaceUsage stringStatus 
- The space usage status.
- sslCert stringExpiry Date 
- The PS SSL cert expiry date.
- sslCert numberExpiry Remaining Days 
- CS SSL cert expiry date.
- systemLoad string
- The percentage of the system load.
- systemLoad stringStatus 
- The system load status.
- totalMemory numberIn Bytes 
- The total memory.
- totalSpace numberIn Bytes 
- The total space.
- versionStatus string
- Version status
- health str
- The health of Process Server.
- mars_communication_ strstatus 
- The MARS communication status.
- mars_registration_ strstatus 
- The MARS registration status.
- ps_stats_ strrefresh_ time 
- The process server stats refresh time.
- throughput_in_ floatbytes 
- The throughput in bytes.
- throughput_in_ floatm_ bps 
- The throughput in MBps.
- throughput_status str
- The throughput status.
- throughput_upload_ floatpending_ data_ in_ bytes 
- The uploading pending data in bytes.
- agent_expiry_ strdate 
- Agent expiry date.
- agent_version str
- The version of the scout component on the server.
- agent_version_ Versiondetails Details Response 
- The agent version details.
- available_memory_ floatin_ bytes 
- The available memory.
- available_space_ floatin_ bytes 
- The available space.
- cpu_load str
- The percentage of the CPU load.
- cpu_load_ strstatus 
- The CPU load status.
- friendly_name str
- The Process Server's friendly name.
- health_errors Sequence[HealthError Response] 
- Health errors.
- host_id str
- The agent generated Id.
- id str
- The Process Server Id.
- ip_address str
- The IP address of the server.
- last_heartbeat str
- The last heartbeat received from the server.
- machine_count str
- The servers configured with this PS.
- memory_usage_ strstatus 
- The memory usage status.
- mobility_service_ Sequence[Mobilityupdates Service Update Response] 
- The list of the mobility service updates available on the Process Server.
- os_type str
- The OS type of the server.
- os_version str
- OS Version of the process server. Note: This will get populated if user has CS version greater than 9.12.0.0.
- ps_service_ strstatus 
- The PS service status.
- replication_pair_ strcount 
- The number of replication pairs configured in this PS.
- space_usage_ strstatus 
- The space usage status.
- ssl_cert_ strexpiry_ date 
- The PS SSL cert expiry date.
- ssl_cert_ intexpiry_ remaining_ days 
- CS SSL cert expiry date.
- system_load str
- The percentage of the system load.
- system_load_ strstatus 
- The system load status.
- total_memory_ floatin_ bytes 
- The total memory.
- total_space_ floatin_ bytes 
- The total space.
- version_status str
- Version status
- health String
- The health of Process Server.
- marsCommunication StringStatus 
- The MARS communication status.
- marsRegistration StringStatus 
- The MARS registration status.
- psStats StringRefresh Time 
- The process server stats refresh time.
- throughputIn NumberBytes 
- The throughput in bytes.
- throughputIn NumberMBps 
- The throughput in MBps.
- throughputStatus String
- The throughput status.
- throughputUpload NumberPending Data In Bytes 
- The uploading pending data in bytes.
- agentExpiry StringDate 
- Agent expiry date.
- agentVersion String
- The version of the scout component on the server.
- agentVersion Property MapDetails 
- The agent version details.
- availableMemory NumberIn Bytes 
- The available memory.
- availableSpace NumberIn Bytes 
- The available space.
- cpuLoad String
- The percentage of the CPU load.
- cpuLoad StringStatus 
- The CPU load status.
- friendlyName String
- The Process Server's friendly name.
- healthErrors List<Property Map>
- Health errors.
- hostId String
- The agent generated Id.
- id String
- The Process Server Id.
- ipAddress String
- The IP address of the server.
- lastHeartbeat String
- The last heartbeat received from the server.
- machineCount String
- The servers configured with this PS.
- memoryUsage StringStatus 
- The memory usage status.
- mobilityService List<Property Map>Updates 
- The list of the mobility service updates available on the Process Server.
- osType String
- The OS type of the server.
- osVersion String
- OS Version of the process server. Note: This will get populated if user has CS version greater than 9.12.0.0.
- psService StringStatus 
- The PS service status.
- replicationPair StringCount 
- The number of replication pairs configured in this PS.
- spaceUsage StringStatus 
- The space usage status.
- sslCert StringExpiry Date 
- The PS SSL cert expiry date.
- sslCert NumberExpiry Remaining Days 
- CS SSL cert expiry date.
- systemLoad String
- The percentage of the system load.
- systemLoad StringStatus 
- The system load status.
- totalMemory NumberIn Bytes 
- The total memory.
- totalSpace NumberIn Bytes 
- The total space.
- versionStatus String
- Version status
PushInstallerDetailsResponse, PushInstallerDetailsResponseArgs        
- Health string
- The health of the push installer.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- The health errors.
- Id string
- The push installer Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the push installer.
- Name string
- The push installer name.
- Version string
- The push installer version.
- Health string
- The health of the push installer.
- HealthErrors []HealthError Response 
- The health errors.
- Id string
- The push installer Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the push installer.
- Name string
- The push installer name.
- Version string
- The push installer version.
- health String
- The health of the push installer.
- healthErrors List<HealthError Response> 
- The health errors.
- id String
- The push installer Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the push installer.
- name String
- The push installer name.
- version String
- The push installer version.
- health string
- The health of the push installer.
- healthErrors HealthError Response[] 
- The health errors.
- id string
- The push installer Id.
- lastHeartbeat stringUtc 
- The last heartbeat received from the push installer.
- name string
- The push installer name.
- version string
- The push installer version.
- health str
- The health of the push installer.
- health_errors Sequence[HealthError Response] 
- The health errors.
- id str
- The push installer Id.
- last_heartbeat_ strutc 
- The last heartbeat received from the push installer.
- name str
- The push installer name.
- version str
- The push installer version.
- health String
- The health of the push installer.
- healthErrors List<Property Map>
- The health errors.
- id String
- The push installer Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the push installer.
- name String
- The push installer name.
- version String
- The push installer version.
RcmProxyDetailsResponse, RcmProxyDetailsResponseArgs        
- Health string
- The health of the RCM proxy.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- The health errors.
- Id string
- The RCM proxy Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the RCM proxy.
- Name string
- The RCM proxy name.
- Version string
- The RCM proxy version.
- Health string
- The health of the RCM proxy.
- HealthErrors []HealthError Response 
- The health errors.
- Id string
- The RCM proxy Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the RCM proxy.
- Name string
- The RCM proxy name.
- Version string
- The RCM proxy version.
- health String
- The health of the RCM proxy.
- healthErrors List<HealthError Response> 
- The health errors.
- id String
- The RCM proxy Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the RCM proxy.
- name String
- The RCM proxy name.
- version String
- The RCM proxy version.
- health string
- The health of the RCM proxy.
- healthErrors HealthError Response[] 
- The health errors.
- id string
- The RCM proxy Id.
- lastHeartbeat stringUtc 
- The last heartbeat received from the RCM proxy.
- name string
- The RCM proxy name.
- version string
- The RCM proxy version.
- health str
- The health of the RCM proxy.
- health_errors Sequence[HealthError Response] 
- The health errors.
- id str
- The RCM proxy Id.
- last_heartbeat_ strutc 
- The last heartbeat received from the RCM proxy.
- name str
- The RCM proxy name.
- version str
- The RCM proxy version.
- health String
- The health of the RCM proxy.
- healthErrors List<Property Map>
- The health errors.
- id String
- The RCM proxy Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the RCM proxy.
- name String
- The RCM proxy name.
- version String
- The RCM proxy version.
ReplicationAgentDetailsResponse, ReplicationAgentDetailsResponseArgs        
- Health string
- The health of the replication agent.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- The health errors.
- Id string
- The replication agent Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the replication agent.
- Name string
- The replication agent name.
- Version string
- The replication agent version.
- Health string
- The health of the replication agent.
- HealthErrors []HealthError Response 
- The health errors.
- Id string
- The replication agent Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the replication agent.
- Name string
- The replication agent name.
- Version string
- The replication agent version.
- health String
- The health of the replication agent.
- healthErrors List<HealthError Response> 
- The health errors.
- id String
- The replication agent Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the replication agent.
- name String
- The replication agent name.
- version String
- The replication agent version.
- health string
- The health of the replication agent.
- healthErrors HealthError Response[] 
- The health errors.
- id string
- The replication agent Id.
- lastHeartbeat stringUtc 
- The last heartbeat received from the replication agent.
- name string
- The replication agent name.
- version string
- The replication agent version.
- health str
- The health of the replication agent.
- health_errors Sequence[HealthError Response] 
- The health errors.
- id str
- The replication agent Id.
- last_heartbeat_ strutc 
- The last heartbeat received from the replication agent.
- name str
- The replication agent name.
- version str
- The replication agent version.
- health String
- The health of the replication agent.
- healthErrors List<Property Map>
- The health errors.
- id String
- The replication agent Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the replication agent.
- name String
- The replication agent name.
- version String
- The replication agent version.
ReprotectAgentDetailsResponse, ReprotectAgentDetailsResponseArgs        
- Health string
- The health of the reprotect agent.
- HealthErrors List<Pulumi.Azure Native. Recovery Services. Inputs. Health Error Response> 
- The health errors.
- Id string
- The reprotect agent Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the reprotect agent.
- Name string
- The reprotect agent name.
- Version string
- The version.
- Health string
- The health of the reprotect agent.
- HealthErrors []HealthError Response 
- The health errors.
- Id string
- The reprotect agent Id.
- LastHeartbeat stringUtc 
- The last heartbeat received from the reprotect agent.
- Name string
- The reprotect agent name.
- Version string
- The version.
- health String
- The health of the reprotect agent.
- healthErrors List<HealthError Response> 
- The health errors.
- id String
- The reprotect agent Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the reprotect agent.
- name String
- The reprotect agent name.
- version String
- The version.
- health string
- The health of the reprotect agent.
- healthErrors HealthError Response[] 
- The health errors.
- id string
- The reprotect agent Id.
- lastHeartbeat stringUtc 
- The last heartbeat received from the reprotect agent.
- name string
- The reprotect agent name.
- version string
- The version.
- health str
- The health of the reprotect agent.
- health_errors Sequence[HealthError Response] 
- The health errors.
- id str
- The reprotect agent Id.
- last_heartbeat_ strutc 
- The last heartbeat received from the reprotect agent.
- name str
- The reprotect agent name.
- version str
- The version.
- health String
- The health of the reprotect agent.
- healthErrors List<Property Map>
- The health errors.
- id String
- The reprotect agent Id.
- lastHeartbeat StringUtc 
- The last heartbeat received from the reprotect agent.
- name String
- The reprotect agent name.
- version String
- The version.
RetentionVolumeResponse, RetentionVolumeResponseArgs      
- CapacityIn doubleBytes 
- The volume capacity.
- FreeSpace doubleIn Bytes 
- The free space available in this volume.
- ThresholdPercentage int
- The threshold percentage.
- VolumeName string
- The volume name.
- CapacityIn float64Bytes 
- The volume capacity.
- FreeSpace float64In Bytes 
- The free space available in this volume.
- ThresholdPercentage int
- The threshold percentage.
- VolumeName string
- The volume name.
- capacityIn DoubleBytes 
- The volume capacity.
- freeSpace DoubleIn Bytes 
- The free space available in this volume.
- thresholdPercentage Integer
- The threshold percentage.
- volumeName String
- The volume name.
- capacityIn numberBytes 
- The volume capacity.
- freeSpace numberIn Bytes 
- The free space available in this volume.
- thresholdPercentage number
- The threshold percentage.
- volumeName string
- The volume name.
- capacity_in_ floatbytes 
- The volume capacity.
- free_space_ floatin_ bytes 
- The free space available in this volume.
- threshold_percentage int
- The threshold percentage.
- volume_name str
- The volume name.
- capacityIn NumberBytes 
- The volume capacity.
- freeSpace NumberIn Bytes 
- The free space available in this volume.
- thresholdPercentage Number
- The threshold percentage.
- volumeName String
- The volume name.
RunAsAccountResponse, RunAsAccountResponseArgs        
- AccountId string
- The CS RunAs account Id.
- AccountName string
- The CS RunAs account name.
- AccountId string
- The CS RunAs account Id.
- AccountName string
- The CS RunAs account name.
- accountId String
- The CS RunAs account Id.
- accountName String
- The CS RunAs account name.
- accountId string
- The CS RunAs account Id.
- accountName string
- The CS RunAs account name.
- account_id str
- The CS RunAs account Id.
- account_name str
- The CS RunAs account name.
- accountId String
- The CS RunAs account Id.
- accountName String
- The CS RunAs account name.
VMwareDetailsResponse, VMwareDetailsResponseArgs      
- AgentCount string
- The number of source and target servers configured to talk to this CS.
- AgentExpiry stringDate 
- Agent expiry date.
- AgentVersion string
- The agent Version.
- AgentVersion Pulumi.Details Azure Native. Recovery Services. Inputs. Version Details Response 
- The agent version details.
- AvailableMemory doubleIn Bytes 
- The available memory.
- AvailableSpace doubleIn Bytes 
- The available space.
- CpuLoad string
- The percentage of the CPU load.
- CpuLoad stringStatus 
- The CPU load status.
- CsService stringStatus 
- The CS service status.
- DatabaseServer stringLoad 
- The database server load.
- DatabaseServer stringLoad Status 
- The database server load status.
- HostName string
- The host name.
- IpAddress string
- The IP address.
- LastHeartbeat string
- The last heartbeat received from CS server.
- MasterTarget List<Pulumi.Servers Azure Native. Recovery Services. Inputs. Master Target Server Response> 
- The list of Master Target servers associated with the fabric.
- MemoryUsage stringStatus 
- The memory usage status.
- ProcessServer stringCount 
- The number of process servers.
- ProcessServers List<Pulumi.Azure Native. Recovery Services. Inputs. Process Server Response> 
- The list of Process Servers associated with the fabric.
- ProtectedServers string
- The number of protected servers.
- PsTemplate stringVersion 
- PS template version.
- ReplicationPair stringCount 
- The number of replication pairs configured in this CS.
- RunAs List<Pulumi.Accounts Azure Native. Recovery Services. Inputs. Run As Account Response> 
- The list of run as accounts created on the server.
- SpaceUsage stringStatus 
- The space usage status.
- SslCert stringExpiry Date 
- CS SSL cert expiry date.
- SslCert intExpiry Remaining Days 
- CS SSL cert expiry date.
- SystemLoad string
- The percentage of the system load.
- SystemLoad stringStatus 
- The system load status.
- TotalMemory doubleIn Bytes 
- The total memory.
- TotalSpace doubleIn Bytes 
- The total space.
- VersionStatus string
- Version status
- WebLoad string
- The web load.
- WebLoad stringStatus 
- The web load status.
- AgentCount string
- The number of source and target servers configured to talk to this CS.
- AgentExpiry stringDate 
- Agent expiry date.
- AgentVersion string
- The agent Version.
- AgentVersion VersionDetails Details Response 
- The agent version details.
- AvailableMemory float64In Bytes 
- The available memory.
- AvailableSpace float64In Bytes 
- The available space.
- CpuLoad string
- The percentage of the CPU load.
- CpuLoad stringStatus 
- The CPU load status.
- CsService stringStatus 
- The CS service status.
- DatabaseServer stringLoad 
- The database server load.
- DatabaseServer stringLoad Status 
- The database server load status.
- HostName string
- The host name.
- IpAddress string
- The IP address.
- LastHeartbeat string
- The last heartbeat received from CS server.
- MasterTarget []MasterServers Target Server Response 
- The list of Master Target servers associated with the fabric.
- MemoryUsage stringStatus 
- The memory usage status.
- ProcessServer stringCount 
- The number of process servers.
- ProcessServers []ProcessServer Response 
- The list of Process Servers associated with the fabric.
- ProtectedServers string
- The number of protected servers.
- PsTemplate stringVersion 
- PS template version.
- ReplicationPair stringCount 
- The number of replication pairs configured in this CS.
- RunAs []RunAccounts As Account Response 
- The list of run as accounts created on the server.
- SpaceUsage stringStatus 
- The space usage status.
- SslCert stringExpiry Date 
- CS SSL cert expiry date.
- SslCert intExpiry Remaining Days 
- CS SSL cert expiry date.
- SystemLoad string
- The percentage of the system load.
- SystemLoad stringStatus 
- The system load status.
- TotalMemory float64In Bytes 
- The total memory.
- TotalSpace float64In Bytes 
- The total space.
- VersionStatus string
- Version status
- WebLoad string
- The web load.
- WebLoad stringStatus 
- The web load status.
- agentCount String
- The number of source and target servers configured to talk to this CS.
- agentExpiry StringDate 
- Agent expiry date.
- agentVersion String
- The agent Version.
- agentVersion VersionDetails Details Response 
- The agent version details.
- availableMemory DoubleIn Bytes 
- The available memory.
- availableSpace DoubleIn Bytes 
- The available space.
- cpuLoad String
- The percentage of the CPU load.
- cpuLoad StringStatus 
- The CPU load status.
- csService StringStatus 
- The CS service status.
- databaseServer StringLoad 
- The database server load.
- databaseServer StringLoad Status 
- The database server load status.
- hostName String
- The host name.
- ipAddress String
- The IP address.
- lastHeartbeat String
- The last heartbeat received from CS server.
- masterTarget List<MasterServers Target Server Response> 
- The list of Master Target servers associated with the fabric.
- memoryUsage StringStatus 
- The memory usage status.
- processServer StringCount 
- The number of process servers.
- processServers List<ProcessServer Response> 
- The list of Process Servers associated with the fabric.
- protectedServers String
- The number of protected servers.
- psTemplate StringVersion 
- PS template version.
- replicationPair StringCount 
- The number of replication pairs configured in this CS.
- runAs List<RunAccounts As Account Response> 
- The list of run as accounts created on the server.
- spaceUsage StringStatus 
- The space usage status.
- sslCert StringExpiry Date 
- CS SSL cert expiry date.
- sslCert IntegerExpiry Remaining Days 
- CS SSL cert expiry date.
- systemLoad String
- The percentage of the system load.
- systemLoad StringStatus 
- The system load status.
- totalMemory DoubleIn Bytes 
- The total memory.
- totalSpace DoubleIn Bytes 
- The total space.
- versionStatus String
- Version status
- webLoad String
- The web load.
- webLoad StringStatus 
- The web load status.
- agentCount string
- The number of source and target servers configured to talk to this CS.
- agentExpiry stringDate 
- Agent expiry date.
- agentVersion string
- The agent Version.
- agentVersion VersionDetails Details Response 
- The agent version details.
- availableMemory numberIn Bytes 
- The available memory.
- availableSpace numberIn Bytes 
- The available space.
- cpuLoad string
- The percentage of the CPU load.
- cpuLoad stringStatus 
- The CPU load status.
- csService stringStatus 
- The CS service status.
- databaseServer stringLoad 
- The database server load.
- databaseServer stringLoad Status 
- The database server load status.
- hostName string
- The host name.
- ipAddress string
- The IP address.
- lastHeartbeat string
- The last heartbeat received from CS server.
- masterTarget MasterServers Target Server Response[] 
- The list of Master Target servers associated with the fabric.
- memoryUsage stringStatus 
- The memory usage status.
- processServer stringCount 
- The number of process servers.
- processServers ProcessServer Response[] 
- The list of Process Servers associated with the fabric.
- protectedServers string
- The number of protected servers.
- psTemplate stringVersion 
- PS template version.
- replicationPair stringCount 
- The number of replication pairs configured in this CS.
- runAs RunAccounts As Account Response[] 
- The list of run as accounts created on the server.
- spaceUsage stringStatus 
- The space usage status.
- sslCert stringExpiry Date 
- CS SSL cert expiry date.
- sslCert numberExpiry Remaining Days 
- CS SSL cert expiry date.
- systemLoad string
- The percentage of the system load.
- systemLoad stringStatus 
- The system load status.
- totalMemory numberIn Bytes 
- The total memory.
- totalSpace numberIn Bytes 
- The total space.
- versionStatus string
- Version status
- webLoad string
- The web load.
- webLoad stringStatus 
- The web load status.
- agent_count str
- The number of source and target servers configured to talk to this CS.
- agent_expiry_ strdate 
- Agent expiry date.
- agent_version str
- The agent Version.
- agent_version_ Versiondetails Details Response 
- The agent version details.
- available_memory_ floatin_ bytes 
- The available memory.
- available_space_ floatin_ bytes 
- The available space.
- cpu_load str
- The percentage of the CPU load.
- cpu_load_ strstatus 
- The CPU load status.
- cs_service_ strstatus 
- The CS service status.
- database_server_ strload 
- The database server load.
- database_server_ strload_ status 
- The database server load status.
- host_name str
- The host name.
- ip_address str
- The IP address.
- last_heartbeat str
- The last heartbeat received from CS server.
- master_target_ Sequence[Masterservers Target Server Response] 
- The list of Master Target servers associated with the fabric.
- memory_usage_ strstatus 
- The memory usage status.
- process_server_ strcount 
- The number of process servers.
- process_servers Sequence[ProcessServer Response] 
- The list of Process Servers associated with the fabric.
- protected_servers str
- The number of protected servers.
- ps_template_ strversion 
- PS template version.
- replication_pair_ strcount 
- The number of replication pairs configured in this CS.
- run_as_ Sequence[Runaccounts As Account Response] 
- The list of run as accounts created on the server.
- space_usage_ strstatus 
- The space usage status.
- ssl_cert_ strexpiry_ date 
- CS SSL cert expiry date.
- ssl_cert_ intexpiry_ remaining_ days 
- CS SSL cert expiry date.
- system_load str
- The percentage of the system load.
- system_load_ strstatus 
- The system load status.
- total_memory_ floatin_ bytes 
- The total memory.
- total_space_ floatin_ bytes 
- The total space.
- version_status str
- Version status
- web_load str
- The web load.
- web_load_ strstatus 
- The web load status.
- agentCount String
- The number of source and target servers configured to talk to this CS.
- agentExpiry StringDate 
- Agent expiry date.
- agentVersion String
- The agent Version.
- agentVersion Property MapDetails 
- The agent version details.
- availableMemory NumberIn Bytes 
- The available memory.
- availableSpace NumberIn Bytes 
- The available space.
- cpuLoad String
- The percentage of the CPU load.
- cpuLoad StringStatus 
- The CPU load status.
- csService StringStatus 
- The CS service status.
- databaseServer StringLoad 
- The database server load.
- databaseServer StringLoad Status 
- The database server load status.
- hostName String
- The host name.
- ipAddress String
- The IP address.
- lastHeartbeat String
- The last heartbeat received from CS server.
- masterTarget List<Property Map>Servers 
- The list of Master Target servers associated with the fabric.
- memoryUsage StringStatus 
- The memory usage status.
- processServer StringCount 
- The number of process servers.
- processServers List<Property Map>
- The list of Process Servers associated with the fabric.
- protectedServers String
- The number of protected servers.
- psTemplate StringVersion 
- PS template version.
- replicationPair StringCount 
- The number of replication pairs configured in this CS.
- runAs List<Property Map>Accounts 
- The list of run as accounts created on the server.
- spaceUsage StringStatus 
- The space usage status.
- sslCert StringExpiry Date 
- CS SSL cert expiry date.
- sslCert NumberExpiry Remaining Days 
- CS SSL cert expiry date.
- systemLoad String
- The percentage of the system load.
- systemLoad StringStatus 
- The system load status.
- totalMemory NumberIn Bytes 
- The total memory.
- totalSpace NumberIn Bytes 
- The total space.
- versionStatus String
- Version status
- webLoad String
- The web load.
- webLoad StringStatus 
- The web load status.
VMwareV2FabricCreationInput, VMwareV2FabricCreationInputArgs        
- MigrationSolution stringId 
- The ARM Id of the migration solution.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- MigrationSolution stringId 
- The ARM Id of the migration solution.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- migrationSolution StringId 
- The ARM Id of the migration solution.
- vmwareSite StringId 
- The ARM Id of the VMware site.
- migrationSolution stringId 
- The ARM Id of the migration solution.
- vmwareSite stringId 
- The ARM Id of the VMware site.
- migration_solution_ strid 
- The ARM Id of the migration solution.
- vmware_site_ strid 
- The ARM Id of the VMware site.
- migrationSolution StringId 
- The ARM Id of the migration solution.
- vmwareSite StringId 
- The ARM Id of the VMware site.
VMwareV2FabricSpecificDetailsResponse, VMwareV2FabricSpecificDetailsResponseArgs          
- MigrationSolution stringId 
- The Migration solution ARM Id.
- ServiceEndpoint string
- The service endpoint.
- ServiceResource stringId 
- The service resource Id.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- MigrationSolution stringId 
- The Migration solution ARM Id.
- ServiceEndpoint string
- The service endpoint.
- ServiceResource stringId 
- The service resource Id.
- VmwareSite stringId 
- The ARM Id of the VMware site.
- migrationSolution StringId 
- The Migration solution ARM Id.
- serviceEndpoint String
- The service endpoint.
- serviceResource StringId 
- The service resource Id.
- vmwareSite StringId 
- The ARM Id of the VMware site.
- migrationSolution stringId 
- The Migration solution ARM Id.
- serviceEndpoint string
- The service endpoint.
- serviceResource stringId 
- The service resource Id.
- vmwareSite stringId 
- The ARM Id of the VMware site.
- migration_solution_ strid 
- The Migration solution ARM Id.
- service_endpoint str
- The service endpoint.
- service_resource_ strid 
- The service resource Id.
- vmware_site_ strid 
- The ARM Id of the VMware site.
- migrationSolution StringId 
- The Migration solution ARM Id.
- serviceEndpoint String
- The service endpoint.
- serviceResource StringId 
- The service resource Id.
- vmwareSite StringId 
- The ARM Id of the VMware site.
VersionDetailsResponse, VersionDetailsResponseArgs      
- ExpiryDate string
- Version expiry date.
- Status string
- A value indicating whether security update required.
- Version string
- The agent version.
- ExpiryDate string
- Version expiry date.
- Status string
- A value indicating whether security update required.
- Version string
- The agent version.
- expiryDate String
- Version expiry date.
- status String
- A value indicating whether security update required.
- version String
- The agent version.
- expiryDate string
- Version expiry date.
- status string
- A value indicating whether security update required.
- version string
- The agent version.
- expiry_date str
- Version expiry date.
- status str
- A value indicating whether security update required.
- version str
- The agent version.
- expiryDate String
- Version expiry date.
- status String
- A value indicating whether security update required.
- version String
- The agent version.
VmmDetailsResponse, VmmDetailsResponseArgs      
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:recoveryservices:ReplicationFabric cloud1 /Subscriptions/c183865e-6077-46f2-a3b1-deb0f4f4650a/resourceGroups/resourceGroupPS1/providers/Microsoft.RecoveryServices/vaults/vault1/replicationFabrics/cloud1 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0