AzureRM PowerShell 모듈 6.0.0의 주요 변경 내용
Warning
AzureRM PowerShell 모듈은 2024년 2월 29일부터 공식적으로 사용되지 않습니다. 사용자는 지속적인 지원 및 업데이트를 보장하기 위해 AzureRM에서 Az PowerShell 모듈로 마이그레이션하는 것이 좋습니다.
AzureRM 모듈은 여전히 작동할 수 있지만 더 이상 기본 또는 지원되지 않으므로 사용자의 재량에 따라 계속 사용할 수 있습니다. Az 모듈로 전환하는 방법에 대한 지침은 마이그레이션 리소스를 참조하세요.
이 문서는 Microsoft Azure PowerShell cmdlet 소비자를 위한 호환성이 손상되는 변경 알림 및 마이그레이션 가이드 역할을 합니다. 각 섹션에서는 호환성이 손상되는 변경의 추진력과 최소 저항의 마이그레이션 경로를 모두 설명합니다. 심층 컨텍스트의 경우 각 변경 내용과 연결된 끌어오기 요청을 참조하세요.
목차
- 일반적인 주요 변경 내용
- AzureRM.Compute cmdlet의 주요 변경 내용
- AzureRM.DataLakeStore cmdlet의 주요 변경 내용
- AzureRM.Dns cmdlet의 주요 변경 내용
- AzureRM.Insights cmdlet의 주요 변경 내용
- AzureRM.KeyVault cmdlet의 주요 변경 내용
- AzureRM.Network cmdlet의 주요 변경 내용
- AzureRM.RedisCache cmdlet의 주요 변경 내용
- AzureRM.Resources cmdlet의 주요 변경 내용
- AzureRM.Storage cmdlet의 주요 변경 내용
- 제거된 모듈
일반적인 주요 변경 내용
필요한 최소 PowerShell 버전이 5.0으로 부딪쳤습니다.
이전에는 Azure PowerShell에서 cmdlet을 실행하기 위해 적어도 버전 3.0의 PowerShell이 필요했습니다. 앞으로 이 요구 사항은 PowerShell 버전 5.0으로 높아질 것입니다. PowerShell 5.0으로 업그레이드하는 방법에 대한 자세한 내용은 이 표를 참조하세요.
기본적으로 사용하도록 설정된 컨텍스트 자동 저장
컨텍스트 자동 저장은 새 PowerShell 세션과 다른 PowerShell 세션 간에 사용할 수 있는 Azure 로그인 정보의 스토리지입니다. 컨텍스트 자동 저장에 대한 자세한 내용은 이 문서를 참조하세요.
이전에는 기본적으로 컨텍스트 자동 저장을 사용하지 않도록 설정했습니다. 즉, 컨텍스트 지속성을 설정하기 위해 cmdlet을 실행할 Enable-AzureRmContextAutosave
때까지 사용자의 Azure 인증 정보가 세션 간에 저장되지 않았습니다. 앞으로 컨텍스트 자동 저장은 기본적으로 사용하도록 설정됩니다. 즉, 저장된 컨텍스트 자동 저장 설정이 없는 사용자는 다음에 로그인할 때 컨텍스트가 저장됩니다. 사용자는 cmdlet을 사용하여 이 기능을 옵트아웃할 Disable-AzureRmContextAutosave
수 있습니다.
참고 항목
이전에 컨텍스트 자동 저장을 사용하지 않도록 설정한 사용자 또는 컨텍스트 자동 저장을 사용하도록 설정하고 기존 컨텍스트를 사용하는 사용자는 이 변경의 영향을 받지 않습니다.
태그 별칭 제거
매개 변수의 Tags
Tag
별칭이 수많은 cmdlet에서 제거되었습니다. 다음은 이 영향을 받는 모듈(및 해당 cmdlet) 목록입니다.
AzureRM.ApiManagement
New-AzureRmApiManagement
New-AzureRmApiManagementProperty
Set-AzureRmApiManagementProperty
AzureRM.Automation
Set-AzureRmAutomationRunbook
AzureRM.Cdn
New-AzureRmCdnEndpoint
New-AzureRmCdnProfile
AzureRM.Compute
New-AzureRmVM
Update-AzureRmVM
AzureRM.DataFactories
New-AzureRmDataFactories
AzureRM.DataLakeAnalytics
New-AzureRmDataLakeAnalyticsAccount
AzureRM.DataLakeStore
New-AzureRmDataLakeStoreAccount
Set-AzureRmDataLakeStoreAccount
AzureRM.MachineLearning
Update-AzureRmMlCommitmentPlan
AzureRM.Media
Set-AzureRmMediaService
AzureRM.OperationalInsights
New-AzureRmOperationalInsightsSavedSearch
New-AzureRmOperationalInsightsWorkspace
Set-AzureRmOperationalInsightsSavedSearch
Set-AzureRmOperationalInsightsWorkspace
AzureRM.Compute cmdlet의 주요 변경 내용
기타
- 형식
PSDisk
PSSnapshot
에 중첩되고 각각과 간에StandardLRS
PremiumLRS
Standard_LRS
Premium_LRS
변경된 sku 이름 속성
$disk = Get-AzureRmDisk -ResourceGroupName 'MyResourceGroup' -DiskName 'MyDiskName'
$disk.Sku.Name # This will now return Standard_LRS or Premium_LRS
$snapshot = Get-AzureRmSnapshot -ResourceGroupName 'MyResourceGroup' -SnapshotName 'MySnapshotName'
$snapshot.Sku.Name # This will now return Standard_LRS or Premium_LRS
- 스토리지 계정 유형 속성은 각각 형식
PSVirtualMachine
PSVirtualMachineScaleSet
에 중첩되어PSImage
있으며, 형식과 형식에서Premium_LRS
StandardLRS
PremiumLRS
Standard_LRS
각각 변경되었습니다.
$vm = Get-AzureRmVM -ResourceGroupName "MyResourceGroup" -Name "MyVM"
$vm.StorageProfile.DataDisks[0].ManagedDisk.StorageAccountType # This will now return Standard_LRS or Premium_LRS
Add-AzureRmImageDataDisk
StorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Add-AzureRmVMDataDisk
StorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Add-AzureRmVmssDataDisk
StorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
New-AzureRmAvailabilitySet
Managed
매개 변수가Sku
을 위해 제거되었습니다
# Old
New-AzureRmAvailabilitySet -ResourceGroupName "MyRG" -Name "MyAvailabilitySet" -Location "West US" -Managed
# New
New-AzureRmAvailabilitySet -ResourceGroupName "MyRG" -Name "MyAvailabilitySet" -Location "West US" -Sku "Aligned"
New-AzureRmDiskConfig
SkuName
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
New-AzureRmDiskUpdateConfig
SkuName
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
New-AzureRmSnapshotConfig
SkuName
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
New-AzureRmSnapshotUpdateConfig
SkuName
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Set-AzureRmImageOsDisk
StorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Set-AzureRmVMAEMExtension
- 매개 변수
DisableWAD
가 제거되었습니다.- Windows Azure Diagnostics는 기본적으로 사용하지 않도록 설정됩니다.
Set-AzureRmVMDataDisk
StorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Set-AzureRmVMOSDisk
StorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Set-AzureRmVmssStorageProfile
ManagedDisk
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
Update-AzureRmVmss
ManagedDiskStorageAccountType
매개 변수에 허용되는 값이 각각StandardLRS
및PremiumLRS
에서Standard_LRS
및Premium_LRS
로 변경되었습니다.
AzureRM.DataLakeStore cmdlet의 주요 변경 내용
Export-AzureRmDataLakeStoreItem
- 매개 변수
PerFileThreadCount
가ConcurrentFileCount
제거되었습니다. 앞으로Concurrency
매개 변수를 사용하세요.
# Old
Export-AzureRmDataLakeStoreItem -Account contoso -Path /test -Destination C:\test -Recurse -Resume -PerFileThreadCount 2 -ConcurrentFileCount 80
# New
Export-AzureRmDataLakeStoreItem -Account contoso -Path /test -Destination C:\test -Recurse -Resume -Concurrency 160
Import-AzureRmDataLakeStoreItem
- 매개 변수
PerFileThreadCount
가ConcurrentFileCount
제거되었습니다. 앞으로Concurrency
매개 변수를 사용하세요.
# Old
Import-AzureRmDataLakeStoreItem -Account contoso -Path C:\test -Destination /test -Recurse -Resume -ForceBinary -PerFileThreadCount 2 -ConcurrentFileCount 80
# New
Import-AzureRmDataLakeStoreItem -Account contoso -Path C:\test -Destination /test -Recurse -Resume -ForceBinary -Concurrency 160
Remove-AzureRmDataLakeStoreItem
- 매개 변수
Clean
가 제거되었습니다.
# Old
Remove-AzureRmDataLakeStoreItem -Account "ContosoADL" -path /myFolder -Recurse -Clean
# New
Remove-AzureRmDataLakeStoreItem -Account "ContosoADL" -path /myFolder -Recurse
AzureRM.Dns cmdlet의 주요 변경 내용
New-AzureRmDnsRecordSet
Force
매개 변수가 제거되었습니다.
Remove-AzureRmDnsRecordSet
Force
매개 변수가 제거되었습니다.
Remove-AzureRmDnsZone
Force
매개 변수가 제거되었습니다.
AzureRM.Insights cmdlet의 주요 변경 내용
Add-AzureRmAutoscaleSetting
- 매개 변수 별칭이
AutoscaleProfiles
Notifications
제거되었습니다.
Add-AzureRmLogProfile
- 매개 변수 별칭이
Categories
Locations
제거되었습니다.
Add-AzureRmMetricAlertRule
- 매개 변수 별칭이
Actions
제거되었습니다.
Add-AzureRmWebtestAlertRule
- 매개 변수 별칭이
Actions
제거되었습니다.
Get-AzureRmLog
- 매개 변수 별칭이
MaxRecords
MaxEvents
제거되었습니다.
Get-AzureRmMetricDefinition
- 매개 변수 별칭이
MetricNames
제거되었습니다.
New-AzureRmAlertRuleEmail
- 매개 변수 별칭이
CustomEmails
SendToServiceOwners
제거되었습니다.
New-AzureRmAlertRuleWebhook
- 매개 변수 별칭이
Properties
제거되었습니다.
New-AzureRmAutoscaleNotification
- 매개 변수 별칭이
CustomEmails
SendEmailToSubscriptionCoAdministrators
Webhooks
제거되었습니다.
New-AzureRmAutoscaleProfile
Rules
,ScheduleDays
,ScheduleHours
및ScheduleMinutes
매개 변수 별칭이 제거되었습니다.
New-AzureRmAutoscaleWebhook
- 매개 변수 별칭이
Properties
제거되었습니다.
AzureRM.KeyVault cmdlet의 주요 변경 내용
Add-AzureKeyVaultCertificate
CertificatePolicy
매개 변수가 필수가 되었습니다.
Set-AzureKeyVaultManagedStorageSasDefinition
- 액세스 토큰을 구성하는 개별 매개 변수는 더 이상 허용되지 않습니다. 대신 명시적 토큰 매개 변수(예:
Service
또는Permissions
)를 다른 곳에 정의된 액세스 토큰 샘플에 해당하는 제네릭TemplateUri
매개 변수(아마도 Storage PowerShell cmdlet을 사용하거나 Storage 설명서에 따라 수동으로 구성됨)로 바꿉니다. cmdlet은ValidityPeriod
매개 변수를 유지합니다.
Azure Storage에 대한 공유 액세스 토큰 작성에 대한 자세한 내용은 각각 설명서 페이지를 참조하세요.
# Old
$sas = Set-AzureKeyVaultManagedStorageSasDefinition -VaultName myVault -Name myKey -Service Blob -Permissions 'rcw' -ValidityPeriod 180d
# New
$sctx=New-AzureStorageContext -StorageAccountName $sa.StorageAccountName -Protocol Https -StorageAccountKey Key1
$start=[System.DateTime]::Now.AddDays(-1)
$end=[System.DateTime]::Now.AddMonths(1)
$at=New-AzureStorageAccountSasToken -Service blob -ResourceType Service,Container,Object -Permission "racwdlup" -Protocol HttpsOnly -StartTime $start -ExpiryTime $end -Context $sctx
$sas=Set-AzureKeyVaultManagedStorageSasDefinition -AccountName $sa.StorageAccountName -VaultName $kv.VaultName -Name accountsas -TemplateUri $at -SasType 'account' -ValidityPeriod ([System.Timespan]::FromDays(30))
Set-AzureKeyVaultCertificateIssuer
IssuerProvider
매개 변수가 필수가 되었습니다.
Undo-AzureKeyVaultCertificateRemoval
- 이 cmdlet의 출력이 .로
CertificateBundle
PSKeyVaultCertificate
변경되었습니다.
Undo-AzureRmKeyVaultRemoval
ResourceGroupName
가 매개 변수 집합에서InputObject
제거되고 대신 매개 변수의ResourceId
속성에서InputObject
가져옵니다.
Set-AzureRmKeyVaultAccessPolicy
all
권한이PermissionsToKeys
,PermissionsToSecrets
및PermissionsToCertificates
에서 제거되었습니다.
일반
ValueFromPipelineByPropertyName
파이핑InputObject
을 사용하도록 설정된 모든 cmdlet에서 속성이 제거되었습니다. 영향을 받는 cmdlet은 다음과 같습니다.Add-AzureKeyVaultCertificate
Add-AzureKeyVaultCertificateContact
Add-AzureKeyVaultKey
Backup-AzureKeyVaultKey
Backup-AzureKeyVaultSecret
Get-AzureKeyVaultCertficate
Get-AzureKeyVaultCertificateContact
Get-AzureKeyVaultCertificateIssuer
Get-AzureKeyVaultCertificateOperation
Get-AzureKeyVaultCertificatePolicy
Get-AzureKeyVaultKey
Get-AzureKeyVaultManagedStorageAccount
Get-AzureKeyVaultManagedStorageSasDefinition
Get-AzureKeyVaultSecret
Remove-AzureRmKeyVault
Remove-AzureRmKeyVaultAccessPolicy
Remove-AzureKeyVaultCertificate
Remove-AzureKeyVaultCertificateContact
Remove-AzureKeyVaultCertificateIssuer
Remove-AzureKeyVaultCertificateOperation
Remove-AzureKeyVaultKey
Remove-AzureKeyVaultManagedStorageAccount
Remove-AzureKeyVaultManagedStorageSasDefinition
Remove-AzureKeyVaultSecret
Restore-AzureKeyVaultKey
Restore-AzureKeyVaultSecret
Set-AzureRmKeyVaultAccessPolicy
Set-AzureKeyVaultCertificateAttribute
Set-AzureKeyVaultCertificateIssuer
Set-AzureKeyVaultCertificatePolicy
Set-AzureKeyVaultKeyAttribute
Set-AzureKeyVaultManagedStorageSasDefinition
Set-AzureKeyVaultSecret
Set-AzureKeyVaultSecretAttribute
Stop-AzureKeyVaultCertificateOperation
Undo-AzureKeyVaultCertificateRemoval
Undo-AzureKeyVaultKeyRemoval
Undo-AzureRmKeyVaultRemoval
Undo-AzureKeyVaultSecretRemoval
Update-AzureKeyVaultManagedStorageAccount
Update-AzureKeyVaultManagedStorageAccountKey
ConfirmImpact
수준이 모든 cmdlet에서 제거되었습니다. 영향을 받는 cmdlet은 다음과 같습니다.Remove-AzureRmKeyVault
Remove-AzureKeyVaultCertificate
Remove-AzureKeyVaultCertificateIssuer
Remove-AzureKeyVaultCertificateOperation
Remove-AzureKeyVaultKey
Remove-AzureKeyVaultManagedStorageAccount
Remove-AzureKeyVaultManagedStorageSasDefinition
Remove-AzureKeyVaultSecret
Stop-AzureKeyVaultCertificateOperation
Update-AzureKeyVaultManagedStorageAccountKey
IKeyVaultDataServiceClient
모든 인증서 작업이 SDK 형식 대신 PSType을 반환하도록 업데이트되었습니다. 다음 내용이 포함됩니다.SetCertificateContacts
GetCertificateContacts
GetCertificate
GetDeletedCertificate
MergeCertificate
ImportCertificate
DeleteCertificate
RecoverCertificate
EnrollCertificate
UpdateCertificate
GetCertificateOperation
DeleteCertificateOperation
CancelCertificateOperation
GetCertificatePolicy
UpdateCertificatePolicy
GetCertificateIssuer
SetCertificateIssuer
DeleteCertificateIssuer
AzureRM.Network cmdlet의 주요 변경 내용
Add-AzureRmApplicationGatewayBackendHttpSettings
ProbeEnabled
매개 변수가 제거되었습니다.
Add-AzureRmVirtualNetworkPeering
- 매개 변수 별칭이
AlloowGatewayTransit
제거되었습니다.
New-AzureRmApplicationGatewayBackendHttpSettings
ProbeEnabled
매개 변수가 제거되었습니다.
Set-AzureRmApplicationGatewayBackendHttp설정
ProbeEnabled
매개 변수가 제거되었습니다.
AzureRM.RedisCache cmdlet의 주요 변경 내용
New-AzureRmRedisCache
Subnet
및VirtualNetwork
매개 변수가SubnetId
를 위해 제거되었습니다.RedisVersion
매개 변수가 제거되었습니다.MaxMemoryPolicy
매개 변수가RedisConfiguration
을 위해 제거되었습니다
# Old
New-AzureRmRedisCache -ResourceGroupName "MyRG" -Name "MyRedisCache" -Location "North Central US" -MaxMemoryPolicy "allkeys-lru"
# New
New-AzureRmRedisCache -ResourceGroupName "MyRG" -Name "MyRedisCache" -Location "North Central US" -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"}
Set-AzureRmRedisCache
MaxMemoryPolicy
매개 변수가RedisConfiguration
을 위해 제거되었습니다
# Old
Set-AzureRmRedisCache -ResourceGroupName "MyRG" -Name "MyRedisCache" -MaxMemoryPolicy "allkeys-lru"
# New
Set-AzureRmRedisCache -ResourceGroupName "MyRG" -Name "MyRedisCache" -RedisConfiguration @{"maxmemory-policy" = "allkeys-lru"}
AzureRM.Resources cmdlet의 주요 변경 내용
Find-AzureRmResource
- 이 cmdlet이 제거되고 기능이 로 이동되었습니다.
Get-AzureRmResource
# Old
Find-AzureRmResource -ResourceType "Microsoft.Web/sites" -ResourceGroupNameContains "ResourceGroup"
Find-AzureRmResource -ResourceType "Microsoft.Web/sites" -ResourceNameContains "test"
# New
Get-AzureRmResource -ResourceType "Microsoft.Web/sites" -ResourceGroupName "*ResourceGroup*"
Get-AzureRmResource -ResourceType "Microsoft.Web/sites" -Name "*test*"
Find-AzureRmResourceGroup
- 이 cmdlet이 제거되고 기능이 로 이동되었습니다.
Get-AzureRmResourceGroup
# Old
Find-AzureRmResourceGroup
Find-AzureRmResourceGroup -Tag @{ "testtag" = $null }
Find-AzureRmResourceGroup -Tag @{ "testtag" = "testval" }
# New
Get-AzureRmResourceGroup
Get-AzureRmResourceGroup -Tag @{ "testtag" = $null }
Get-AzureRmResourceGroup -Tag @{ "testtag" = "testval" }
Get-AzureRmRoleDefinition
AtScopeAndBelow
매개 변수가 제거되었습니다.
# Old
Get-AzureRmRoleDefinition [other required parameters] -AtScopeAndBelow
# New
Get-AzureRmRoleDefinition [other required parameters]
AzureRM.Storage cmdlet의 주요 변경 내용
New-AzureRmStorageAccount
EnableEncryptionService
매개 변수가 제거되었습니다.
Set-AzureRmStorageAccount
- 매개 변수
EnableEncryptionService
가DisableEncryptionService
제거되었습니다.
제거된 모듈
AzureRM.ServerManagement
서버 관리 도구 서비스는 작년에 사용 중지되었으며, 그 결과 SMTAzureRM.ServerManagement
에 해당하는 모듈이 제거되었으며 AzureRM
앞으로의 배송이 중지됩니다.
AzureRM.SiteRecovery
AzureRM.SiteRecovery
모듈은 모듈의 AzureRM.SiteRecovery
기능 상위 집합으로 대체AzureRM.RecoveryServices.SiteRecovery
되고 해당 cmdlet의 새 집합을 포함합니다. 이전 cmdlet에서 새 cmdlet으로의 매핑의 전체 목록은 아래에서 찾을 수 있습니다.
사용되지 않는 cmdlet | 해당 cmdlet | 별칭 |
---|---|---|
Edit-AzureRmSiteRecoveryRecoveryPlan |
Edit-AzureRmRecoveryServicesAsrRecoveryPlan |
Edit-ASRRecoveryPlan |
Get-AzureRmSiteRecoveryFabric |
Get-AzureRmRecoveryServicesAsrFabric |
Get-ASRFabric |
Get-AzureRmSiteRecoveryJob |
Get-AzureRmRecoveryServicesAsrJob |
Get-ASRJob |
Get-AzureRmSiteRecoveryNetwork |
Get-AzureRmRecoveryServicesAsrNetwork |
Get-ASRNetwork |
Get-AzureRmSiteRecoveryNetworkMapping |
Get-AzureRmRecoveryServicesAsrNetworkMapping |
Get-ASRNetworkMapping |
Get-AzureRmSiteRecoveryPolicy |
Get-AzureRmRecoveryServicesAsrPolicy |
Get-ASRPolicy |
Get-AzureRmSiteRecoveryProtectableItem |
Get-AzureRmRecoveryServicesAsrProtectableItem |
Get-ASRProtectableItem |
Get-AzureRmSiteRecoveryProtectionContainer |
Get-AzureRmRecoveryServicesAsrProtectionContainer |
Get-ASRProtectionContainer |
Get-AzureRmSiteRecoveryProtectionContainerMapping |
Get-AzureRmRecoveryServicesAsrProtectionContainerMapping |
Get-ASRProtectionContainerMapping |
Get-AzureRmSiteRecoveryProtectionEntity |
Get-AzureRmRecoveryServicesAsrProtectableItem |
Get-ASRProtectableItem |
Get-AzureRmSiteRecoveryRecoveryPlan |
Get-AzureRmRecoveryServicesAsrRecoveryPlan |
Get-ASRRecoveryPlan |
Get-AzureRmSiteRecoveryRecoveryPoint |
Get-AzureRmRecoveryServicesAsrRecoveryPoint |
Get-ASRRecoveryPoint |
Get-AzureRmSiteRecoveryReplicationProtectedItem |
Get-AzureRmRecoveryServicesAsrReplicationProtectedItem |
Get-ASRReplicationProtectedItem |
Get-AzureRmSiteRecoveryServer |
Get-AzureRmRecoveryServicesAsrServicesProvider |
Get-ASRServicesProvider |
Get-AzureRmSiteRecoveryServicesProvider |
Get-AzureRmRecoveryServicesAsrServicesProvider |
Get-ASRServicesProvider |
Get-AzureRmSiteRecoverySite |
Get-AzureRmRecoveryServicesAsrFabric |
Get-ASRFabric |
Get-AzureRmSiteRecoveryStorageClassification |
Get-AzureRmRecoveryServicesAsrStorageClassification |
Get-ASRStorageClassification |
Get-AzureRmSiteRecoveryStorageClassificationMapping |
Get-AzureRmRecoveryServicesAsrStorageClassificationMapping |
Get-ASRStorageClassificationMapping |
Get-AzureRmSiteRecoveryVault |
Get-AzureRmRecoveryServicesVault |
|
Get-AzureRmSiteRecoveryVaultSettings |
Get-AzureRmRecoveryServicesAsrVaultContext |
|
Get-AzureRmSiteRecoveryVaultSettingsFile |
Get-AzureRmRecoveryServicesVaultSettingsFile |
|
Get-AzureRmSiteRecoveryVM |
Get-AzureRmRecoveryServicesAsrReplicationProtectedItem |
Get-ASRReplicationProtectedItem |
Import-AzureRmSiteRecoveryVaultSettingsFile |
Import-AzureRmRecoveryServicesAsrVaultSettingsFile |
|
New-AzureRmSiteRecoveryFabric |
New-AzureRmRecoveryServicesAsrFabric |
New-ASRFabric |
New-AzureRmSiteRecoveryNetworkMapping |
New-AzureRmRecoveryServicesAsrNetworkMapping |
New-ASRNetworkMapping |
New-AzureRmSiteRecoveryPolicy |
New-AzureRmRecoveryServicesAsrPolicy |
New-ASRPolicy |
New-AzureRmSiteRecoveryProtectionContainerMapping |
New-AzureRmRecoveryServicesAsrProtectionContainerMapping |
New-ASRProtectionContainerMapping |
New-AzureRmSiteRecoveryRecoveryPlan |
New-AzureRmRecoveryServicesAsrRecoveryPlan |
New-ASRRecoveryPlan |
New-AzureRmSiteRecoveryReplicationProtectedItem |
New-AzureRmRecoveryServicesAsrReplicationProtectedItem |
New-ASRReplicationProtectedItem |
New-AzureRmSiteRecoverySite |
New-AzureRmRecoveryServicesAsrFabric |
New-ASRFabric |
New-AzureRmSiteRecoveryStorageClassificationMapping |
New-AzureRmRecoveryServicesAsrStorageClassificationMapping |
New-ASRStorageClassificationMapping |
New-AzureRmSiteRecoveryVault |
New-AzureRmRecoveryServicesVault |
|
Remove-AzureRmSiteRecoveryFabric |
Remove-AzureRmRecoveryServicesAsrFabric |
Remove-ASRFabric |
Remove-AzureRmSiteRecoveryNetworkMapping |
Remove-AzureRmRecoveryServicesAsrNetworkMapping |
Remove-ASRNetworkMapping |
Remove-AzureRmSiteRecoveryPolicy |
Remove-AzureRmRecoveryServicesAsrPolicy |
Remove-ASRPolicy |
Remove-AzureRmSiteRecoveryProtectionContainerMapping |
Remove-AzureRmRecoveryServicesAsrProtectionContainerMapping |
Remove-ASRProtectionContainerMapping |
Remove-AzureRmSiteRecoveryRecoveryPlan |
Remove-AzureRmRecoveryServicesAsrRecoveryPlan |
Remove-ASRRecoveryPlan |
Remove-AzureRmSiteRecoveryReplicationProtectedItem |
Remove-AzureRmRecoveryServicesAsrReplicationProtectedItem |
Remove-ASRReplicationProtectedItem |
Remove-AzureRmSiteRecoveryServer |
Remove-AzureRmRecoveryServicesAsrServicesProvider |
|
Remove-AzureRmSiteRecoveryServicesProvider |
Remove-AzureRmRecoveryServicesAsrServicesProvider |
Remove-ASRServicesProvider |
Remove-AzureRmSiteRecoverySite |
Remove-AzureRmRecoveryServicesAsrFabric |
Remove-ASRFabric |
Remove-AzureRmSiteRecoveryStorageClassificationMapping |
Remove-AzureRmRecoveryServicesAsrStorageClassificationMapping |
Remove-ASRStorageClassificationMapping |
Remove-AzureRmSiteRecoveryVault |
Remove-AzureRmRecoveryServicesVault |
|
Restart-AzureRmSiteRecoveryJob |
Restart-AzureRmRecoveryServicesAsrJob |
Restart-ASRJob |
Resume-AzureRmSiteRecoveryJob |
Resume-AzureRmRecoveryServicesAsrJob |
Resume-ASRJob |
Set-AzureRmSiteRecoveryProtectionEntity |
New-AzureRmRecoveryServicesAsrReplicationProtectedItem |
New-ASRReplicationProtectedItem |
Set-AzureRmSiteRecoveryReplicationProtectedItem |
Set-AzureRmRecoveryServicesAsrReplicationProtectedItem |
Set-ASRReplicationProtectedItem |
Set-AzureRmSiteRecoveryVaultSettings |
Set-AzureRmRecoveryServicesAsrVaultContext |
Set-ASRVaultContext |
Set-AzureRmSiteRecoveryVM |
Set-AzureRmRecoveryServicesAsrReplicationProtectedItem |
Set-ASRReplicationProtectedItem |
Start-AzureRmSiteRecoveryApplyRecoveryPoint |
Start-AzureRmRecoveryServicesAsrApplyRecoveryPoint |
Start-ASRApplyRecoveryPoint |
Start-AzureRmSiteRecoveryCommitFailoverJob |
Start-AzureRmRecoveryServicesAsrCommitFailoverJob |
Start-ASRCommitFailoverJob |
Start-AzureRmSiteRecoveryPlannedFailoverJob |
Start-AzureRmRecoveryServicesAsrPlannedFailoverJob |
Start-ASRPlannedFailoverJob |
Start-AzureRmSiteRecoveryPolicyAssociationJob |
New-AzureRmRecoveryServicesAsrProtectionContainerMapping |
New-ASRProtectionContainerMapping |
Start-AzureRmSiteRecoveryPolicyDissociationJob |
Remove-AzureRmRecoveryServicesAsrProtectionContainerMapping |
Remove-ASRProtectionContainerMapping |
Start-AzureRmSiteRecoveryTestFailoverJob |
Start-AzureRmRecoveryServicesAsrTestFailoverJob |
Start-ASRTestFailoverJob |
Start-AzureRmSiteRecoveryUnplannedFailoverJob |
Start-AzureRmRecoveryServicesAsrUnplannedFailoverJob |
Start-ASRUnplannedFailoverJob |
Stop-AzureRmSiteRecoveryJob |
Stop-AzureRmRecoveryServicesAsrJob |
Stop-ASRJob |
Update-AzureRmSiteRecoveryPolicy |
Update-AzureRmRecoveryServicesAsrPolicy |
Update-ASRPolicy |
Update-AzureRmSiteRecoveryProtectionDirection |
Update-AzureRmRecoveryServicesAsrProtectionDirection |
Update-ASRProtectionDirection |
Update-AzureRmSiteRecoveryRecoveryPlan |
Update-AzureRmRecoveryServicesAsrRecoveryPlan |
Update-ASRRecoveryPlan |
Update-AzureRmSiteRecoveryServer |
Update-AzureRmRecoveryServicesAsrServicesProvider |
Update-ASRServicesProvider |
Update-AzureRmSiteRecoveryServicesProvider |
Update-AzureRmRecoveryServicesAsrvCenter |
Update-ASRvCenter |