Start-AzureSiteRecoveryProtectionProfileDissociationJob
Startet einen Dissoziationsauftrag für eine Replikationsrichtlinie, die einem Site Recovery-Schutzcontainer zugeordnet ist.
Hinweis
Die Cmdlets, auf die in dieser Dokumentation verwiesen wird, dienen zum Verwalten von Azure-Legacyressourcen, die Azure Dienst-Manager (ASM) APIs verwenden. Dieses ältere PowerShell-Modul wird beim Erstellen neuer Ressourcen nicht empfohlen, da ASM für den Ruhestand geplant ist. Weitere Informationen finden Sie unter Einstellung des Azure Service Manager.
Das Az PowerShell-Modul ist das empfohlene PowerShell-Modul zum Verwalten von Azure Resource Manager (ARM)-Ressourcen mit PowerShell.
Syntax
Start-AzureSiteRecoveryProtectionProfileDissociationJob
-ProtectionProfile <ASRProtectionProfile>
-PrimaryProtectionContainer <ASRProtectionContainer>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Start-AzureSiteRecoveryProtectionProfileDissociationJob
-ProtectionProfile <ASRProtectionProfile>
-PrimaryProtectionContainer <ASRProtectionContainer>
-RecoveryProtectionContainer <ASRProtectionContainer>
[-Profile <AzureSMProfile>]
[<CommonParameters>]
Beschreibung
Das Cmdlet Start-AzureSiteRecoveryProtectionProfileDissociationJob initiiert einen Dissoziationsauftrag für die Replikationsrichtlinie, die einem Azure Site Recovery-Schutzcontainer zugeordnet ist.
Beispiele
Beispiel 1: Aufheben der Abgrenzung eines Schutzprofils
PS C:\> $ProtectionContainer01 = Get-AzureSiteRecoveryProtectionContainer -Id "5ba2ea95-856d-4033-9ca3-91e3e2c080b9"
PS C:\> $ProtectionContainer02 = Get-AzureSiteRecoveryProtectionContainer -Id "cf011f2a-aa19-443c-9f60-357f6b8afb77"
PS C:\> Start-AzureSiteRecoveryProtectionProfileDissociationJob -PrimaryProtectionContainer $ProtectionContainer01 -ProtectionProfile $ProtectionContainer01.AvailableProtectionProfiles[0] -RecoveryProtectionContainer $ProtectionContainer02
Name : MyProtectionProfile
ID : 51978b0f-9241-4153-9171-2e19344f0805
ClientRequestId : bb6f3200-b7c6-4c6f-bcbc-a70bb9946f03-2015-01-30 02:55:55Z-P
State : NotStarted
StateDescription : NotStarted
StartTime :
EndTime :
AllowedActions :
Tasks : {}
Errors : {}
Der erste Befehl ruft einen Schutzcontainer mithilfe des Cmdlets "Get-AzureSiteRecoveryProtectionContainer " ab und speichert diesen Container dann in der Variablen $ProtectionContainer 01.
Der zweite Befehl ruft einen Schutzcontainer ab und speichert ihn dann in der Variablen $ProtectionContainer 02.
Mit dem letzten Befehl wird das Schutzprofil vom container getrennt, der in $ProtectionContainer 01 als primärer Schutzcontainer gespeichert ist. Mit dem Befehl wird der in $ProtectionContainer 02 gespeicherte Container als Wiederherstellungsschutzcontainer deaktiviert.
Parameter
-PrimaryProtectionContainer
Gibt einen primären Schutzcontainer an.
Typ: | ASRProtectionContainer |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-Profile
Gibt das Azure-Profil an, aus dem dieses Cmdlet liest. Wenn Sie kein Profil angeben, liest dieses Cmdlet aus dem lokalen Standardprofil.
Typ: | AzureSMProfile |
Position: | Named |
Standardwert: | None |
Erforderlich: | False |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |
-ProtectionProfile
Gibt die Schutzprofileinstellungen an, die von den Schutzcontainern getrennt werden sollen. Gibt die Schutzprofileinstellungen an, die auf die Schutzcontainer angewendet werden sollen. Verwenden Sie das Cmdlet New-AzureSiteRecoveryProtectionProfileObject, um ein ASRProtectionProfile-Objekt abzurufen.
Typ: | ASRProtectionProfile |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | True |
Platzhalterzeichen akzeptieren: | False |
-RecoveryProtectionContainer
Gibt einen Wiederherstellungsschutzcontainer an.
Typ: | ASRProtectionContainer |
Position: | Named |
Standardwert: | None |
Erforderlich: | True |
Pipelineeingabe akzeptieren: | False |
Platzhalterzeichen akzeptieren: | False |