Share via


Microsoft.RecoveryServices vaults/replicationFabrics/replicationProtectionContainers 2016-08-10

Bicep-Ressourcendefinition

Der Ressourcentyp vaults/replicationFabrics/replicationProtectionContainers kann bereitgestellt werden in:

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.

Ressourcenformat

Um eine Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers-Ressource zu erstellen, fügen Sie der Vorlage den folgenden Bicep hinzu.

resource symbolicname 'Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10' = {
  name: 'string'
  parent: resourceSymbolicName
  properties: {
    providerSpecificInput: [
      {
        instanceType: 'string'
        // For remaining properties, see ReplicationProviderSpecificContainerCreationInput objects
      }
    ]
  }
}

ReplicationProviderSpecificContainerCreationInput-Objekte

Legen Sie die instanceType-Eigenschaft fest, um den Typ des Objekts anzugeben.

Verwenden Sie für A2A Folgendes:

  instanceType: 'A2A'

Eigenschaftswerte

vaults/replicationFabrics/replicationProtectionConta...

Name BESCHREIBUNG Wert
name Der Ressourcenname

Erfahren Sie, wie Sie Namen und Typen für untergeordnete Ressourcen in Bicep festlegen.
Zeichenfolge (erforderlich)
parent In Bicep können Sie die übergeordnete Ressource für eine untergeordnete Ressource angeben. Sie müssen diese Eigenschaft nur hinzufügen, wenn die untergeordnete Ressource außerhalb der übergeordneten Ressource deklariert wird.

Weitere Informationen finden Sie unter Untergeordnete Ressource außerhalb der übergeordneten Ressource.
Symbolischer Name für ressource vom Typ: replicationFabrics
properties Erstellen Sie Schutzcontainereingabeeigenschaften. CreateProtectionContainerInputPropertiesOrProtection...

CreateProtectionContainerInputPropertiesOrProtection...

Name BESCHREIBUNG Wert
providerSpecificInput Anbieterspezifische Eingaben für die Containererstellung. ReplicationProviderSpecificContainerCreationInput[]

ReplicationProviderSpecificContainerCreationInput

Name BESCHREIBUNG Wert
instanceType Festlegen des Objekttyps A2A (erforderlich)

A2AContainerCreationInput

Name BESCHREIBUNG Wert
instanceType Der Klassentyp. "A2A" (erforderlich)

Ressourcendefinition mit einer ARM-Vorlage

Der Ressourcentyp vaults/replicationFabrics/replicationProtectionContainers kann bereitgestellt werden in:

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.

Ressourcenformat

Um eine Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers-Ressource zu erstellen, fügen Sie der Vorlage den folgenden JSON-Code hinzu.

{
  "type": "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers",
  "apiVersion": "2016-08-10",
  "name": "string",
  "properties": {
    "providerSpecificInput": [
      {
        "instanceType": "string"
        // For remaining properties, see ReplicationProviderSpecificContainerCreationInput objects
      }
    ]
  }
}

ReplicationProviderSpecificContainerCreationInput-Objekte

Legen Sie die instanceType-Eigenschaft fest, um den Typ des Objekts anzugeben.

Verwenden Sie für A2A Folgendes:

  "instanceType": "A2A"

Eigenschaftswerte

vaults/replicationFabrics/replicationProtectionConta...

Name BESCHREIBUNG Wert
type Ressourcentyp "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers"
apiVersion Die Version der Ressourcen-API '2016-08-10'
name Der Ressourcenname

Erfahren Sie, wie Sie Namen und Typen für untergeordnete Ressourcen in JSON ARM-Vorlagen festlegen.
Zeichenfolge (erforderlich)
properties Erstellen Sie Schutzcontainereingabeeigenschaften. CreateProtectionContainerInputPropertiesOrProtection...

CreateProtectionContainerInputPropertiesOrProtection...

Name BESCHREIBUNG Wert
providerSpecificInput Anbieterspezifische Eingaben für die Containererstellung. ReplicationProviderSpecificContainerCreationInput[]

ReplicationProviderSpecificContainerCreationInput

Name BESCHREIBUNG Wert
instanceType Festlegen des Objekttyps A2A (erforderlich)

A2AContainerCreationInput

Name BESCHREIBUNG Wert
instanceType Der Klassentyp. "A2A" (erforderlich)

Terraform-Ressourcendefinition (AzAPI-Anbieter)

Der Ressourcentyp vaults/replicationFabrics/replicationProtectionContainers kann für Folgendes bereitgestellt werden:

  • Ressourcengruppen

Eine Liste der geänderten Eigenschaften in jeder API-Version finden Sie unter Änderungsprotokoll.

Ressourcenformat

Um eine Ressource Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers zu erstellen, fügen Sie der Vorlage die folgende Terraform-Ressource hinzu.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10"
  name = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      providerSpecificInput = [
        {
          instanceType = "string"
          // For remaining properties, see ReplicationProviderSpecificContainerCreationInput objects
        }
      ]
    }
  })
}

ReplicationProviderSpecificContainerCreationInput-Objekte

Legen Sie die instanceType-Eigenschaft fest, um den Objekttyp anzugeben.

Verwenden Sie für A2A Folgendes:

  instanceType = "A2A"

Eigenschaftswerte

vaults/replicationFabrics/replicationProtectionConta...

Name BESCHREIBUNG Wert
type Der Ressourcentyp "Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers@2016-08-10"
name Der Ressourcenname Zeichenfolge (erforderlich)
parent_id Die ID der Ressource, die das übergeordnete Element für diese Ressource ist. ID für Ressource vom Typ: replicationFabrics
properties Erstellen von Schutzcontainer-Eingabeeigenschaften. CreateProtectionContainerInputPropertiesOrProtection...

CreateProtectionContainerInputPropertiesOrProtection...

Name BESCHREIBUNG Wert
providerSpecificInput Anbieterspezifische Eingaben für die Containererstellung. ReplicationProviderSpecificContainerCreationInput[]

ReplicationProviderSpecificContainerCreationInput

Name BESCHREIBUNG Wert
instanceType Festlegen des Objekttyps A2A (erforderlich)

A2AContainerCreationInput

Name BESCHREIBUNG Wert
instanceType Der Klassentyp. "A2A" (erforderlich)