Az 11.0.0 için Geçiş Kılavuzu
Az.Aks
New-AzAksCluster
'DockerBridgeCidr' parametresi 'New-AzAksCluster' cmdlet'inden kaldırılır ve bunun yerine bir değişiklik yoktur.
Az.CloudService
Get-AzCloudServiceNetworkInterface
API sürümü sürümüne 2021-03-01
indirilir. Bazı özellikler kaldırılır.
- 'IDdosSettings' türünde 'ProtectionMode' ve 'DdosProtectionPlanId' kaldırıldı.
- 'ILoadBalancerBackendAddress' türündeki 'InboundNatRulesPortMapping' ve 'AdminState' kaldırıldı.
- 'IBackendAddressPool' türündeki 'InboundNatRule' ve 'DrainPeriodInSecond' kaldırıldı.
- 'ISubnet' türünde 'FlushConnection' kaldırıldı.
- 'INetworkInterface' türünde 'AuxiliaryMode', 'VnetEncryptionSupported' ve 'DisableTcpStateTracking' kaldırıldı.
Az.Compute
New-AzDisk
Sağlanan Görüntü veya SecurityType değerleri olmadan Disk oluşturulması varsayılan olarak Güvenilen Başlatma'nın açık olması gerekir.
Önce
$diskconfig = New-AzDiskConfig -DiskSizeGB 127 -AccountType Premium_LRS -OsType Windows -CreateOption FromImage -Location $loc;
Sonra
$diskconfig = New-AzDiskConfig -DiskSizeGB 127 -AccountType Premium_LRS -OsType Windows -CreateOption FromImage -Location $loc -SecurityType "Standard";
New-AzVM
Linux görüntü diğer adları CentOS, Debian, RHEL ve UbuntuLTS kaldırılır. Bunun yerine CentOS85Gen2, Debian11, RHELRaw8LVMGen2, Ubuntu2204 diğer adlarını kullanın.
Önce
New-AzVM -ResourceGroupName MyResourceGroup -Name mytestvm -Location $loc -Credential $cred -DomainNameLabel $domainNameLabel -Image UbuntuLTS;
Sonra
New-AzVM -ResourceGroupName MyResourceGroup -Name mytestvm -Location $loc -Credential $cred -DomainNameLabel $domainNameLabel -Image Ubuntu2204;
New-AzVM
Sağlanan Görüntü veya SecurityType değerleri olmadan VM'nin oluşturulması varsayılan olarak Güvenilen Başlat'ı açar.
Önce
$result = New-AzVM -ResourceGroupName $rgname -Credential $vmCred -Name $vmName -DomainNameLabel $domainNameLabel ;
Sonra
$result = New-AzVM-ResourceGroupName $rgname -Credential $vmCred -Name $vmName -ImageName $imageName -DomainNameLabel $domainNameLabel -SecurityType "Standard";
New-AzVmss
Linux görüntü diğer adları CentOS, Debian, RHEL ve UbuntuLTS kaldırılır. Bunun yerine CentOS85Gen2, Debian11, RHELRaw8LVMGen2, Ubuntu2204 diğer adlarını kullanın.
New-AzVmss
Bu cmdlet kullanılarak VM'lerin oluşturulması artık orchestrationmode: esnek olarak varsayılan olarak kullanılır. Yalnızca açıkça "-OrchestrationMode Uniform" belirtildiğinde, Tekdüzen düzenleme modunda bir VMSS oluşturur. OrchestrationMode Esnek olduğunda UgradePolicy ve SinglePlacementGroup da ayarlanabilir.
Önce
New-AzVmss
Sonra
New-AzVmss
New-AzVmss
Sağlanan Görüntü veya SecurityType değerleri olmadan Vm'lerin oluşturulması varsayılan olarak Güvenilen Başlatma'nın açık olması gerekir.
Önce
$result = New-AzVmss -ResourceGroupName $rgname -Credential $vmCred -VMScaleSetName $vmssName1 -DomainNameLabel $domainNameLabel ;
Sonra
$result = New-AzVmss -ResourceGroupName $rgname -Credential $vmCred -VMScaleSetName $vmssName1 -ImageName $imageName -DomainNameLabel $domainNameLabel -SecurityType "Standard";
Az.ContainerInstance
Get-AzContainerGroup
Şu çıkış özelliklerindeki yazım hataları düzeltildi: 'PreviouState' 'PreviouStateDetailStatus' 'PreviouStateExitCode' 'PreviouStateFinishTime' 'PreviouStateStartTime'. Etkilenen cmdlet'ler şunlardır: 'Get-AzContainerGroup', 'Remove-AzContainerGroup', 'Restart-AzContainerGroup', 'Start-AzContainerGroup', 'Stop-AzContainerGroup', 'Update-AzContainerGroup', 'New-AzContainerInstanceObject', 'New-AzContainerInstanceInitDefinitionObject'
Önce
$aci = Get-AzContainerGroup -ResourceGroupName 'rg name' -Name 'aci name'
$previousState = $aci.Property.Container.PreviouState
Sonra
$aci = Get-AzContainerGroup -ResourceGroupName 'rg name' -Name 'aci name'
$previousState = $aci.Property.Container.PreviousState
Az.DesktopVirtualization
New-AzWvdScalingPlan
Bu parametrenin izin verilen değeri 'BYODesktop, Personal, Pooled' yerine 'Pooled' olarak değiştirildi
Az.Functions
Get-AzFunctionApp
Bu cmdlet, döndürülen işlev uygulamalarının uygulama ayarlarını yeniden işler ve daha önce hem anahtarları hem de değerleri döndürürken yalnızca anahtarlar gösterilir.
Önce
Get-AzFunctionApp -Name <AppName> -ResourceGroupName <ResourceGroupName>
Name Value
---- -----
FUNCTIONS_EXTENSION_VERSION ~4
WEBSITE_CONTENTAZUREFILECONNE… <connection string>
AzureWebJobsStorage <connection string>
APPLICATIONINSIGHTS_CONNECTIO… <connection string>
APPINSIGHTS_INSTRUMENTATIONKEY <guid>
FUNCTIONS_WORKER_RUNTIME powershell
WEBSITE_CONTENTSHARE <share name>
Sonra
Get-AzFunctionApp -Name <AppName> -ResourceGroupName <ResourceGroupName>
WARNING: App settings have been redacted. Use the Get-AzFunctionAppSetting cmdlet to view them.
Name Value
---- -----
FUNCTIONS_EXTENSION_VERSION
WEBSITE_CONTENTAZUREFILECONNE…
AzureWebJobsStorage
APPLICATIONINSIGHTS_CONNECTIO…
APPINSIGHTS_INSTRUMENTATIONKEY
FUNCTIONS_WORKER_RUNTIME
WEBSITE_CONTENTSHARE
Update-AzFunctionAppSetting
Bu cmdlet yalnızca güncelleştirilmiş uygulama ayarlarını döndürürken bunların tümü döndürülür.
Önce
Update-AzFunctionAppSetting -Name <AppName> -ResourceGroupName <ResourceGroupName> -AppSetting @{"foo3"="bar3"}
Name Value
---- -----
FUNCTIONS_EXTENSION_VERSION ~4
WEBSITE_CONTENTAZUREFILECONNE… <connection string>
foo3 bar3
AzureWebJobsStorage <connection string>
APPLICATIONINSIGHTS_CONNECTIO… <connection string>
APPINSIGHTS_INSTRUMENTATIONKEY <guid>
FUNCTIONS_WORKER_RUNTIME powershell
WEBSITE_CONTENTSHARE <share name>
Sonra
Update-AzFunctionAppSetting -Name <AppName> -ResourceGroupName <ResourceGroupName> -AppSetting @{"foo3"="bar3"}
Name Value
---- -----
foo3 bar3
Az.KeyVault
New-AzKeyVaultManagedHsm
parametresi SoftDeleteRetentionInDays
New-AzKeyVaultManagedHsm
zorunlu hale geliyor
Önce
New-AzKeyVaultManagedHsm -HsmName $hsmName -ResourceGroupName $rgName -Location $hsmLocation -Administrator $adminId
Sonra
New-AzKeyVaultManagedHsm -HsmName $hsmName -ResourceGroupName $rgName -Location $hsmLocation -Administrator $adminId -SoftDeleteRetentionInDays 7
Az.Monitor
Set-AzDataCollectionRule
'Set-AzDataCollectionRule' cmdlet'i kaldırıldı ve özgün cmdlet adı için diğer ad bulunamadı.
Önce
Set-AzDataCollectionRule -Location 'East US 2 EUAP' `
-ResourceGroupName 'testdcr' `
-RuleName 'newDcr' `
-RuleFile 'C:\samples\dcr1.json' `
-Description 'Updated Description'
Sonra
Update-AzDataCollectionRule -Name <String> -ResourceGroupName <String> [-SubscriptionId <String>]
[-DataCollectionEndpointId <String>] [-DataFlow <IDataFlow[]>]
[-DataSourceDataImportEventHubConsumerGroup <String>] [-DataSourceDataImportEventHubName <String>]
[-DataSourceDataImportEventHubStream <String>] [-DataSourceExtension <IExtensionDataSource[]>]
[-DataSourceIisLog <IIisLogsDataSource[]>] [-DataSourceLogFile <ILogFilesDataSource[]>]
[-DataSourcePerformanceCounter <IPerfCounterDataSource[]>]
[-DataSourcePlatformTelemetry <IPlatformTelemetryDataSource[]>]
[-DataSourcePrometheusForwarder <IPrometheusForwarderDataSource[]>] [-DataSourceSyslog <ISyslogDataSource[]>]
[-DataSourceWindowsEventLog <IWindowsEventLogDataSource[]>]
[-DataSourceWindowsFirewallLog <IWindowsFirewallLogsDataSource[]>] [-Description <String>]
[-DestinationAzureMonitorMetricName <String>] [-DestinationEventHub <IEventHubDestination[]>]
[-DestinationEventHubsDirect <IEventHubDirectDestination[]>]
[-DestinationLogAnalytic <ILogAnalyticsDestination[]>]
[-DestinationMonitoringAccount <IMonitoringAccountDestination[]>]
[-DestinationStorageAccount <IStorageBlobDestination[]>]
[-DestinationStorageBlobsDirect <IStorageBlobDestination[]>]
[-DestinationStorageTablesDirect <IStorageTableDestination[]>] [-IdentityType <String>] [-Kind <String>]
[-Location <String>] [-StreamDeclaration <Hashtable>] [-Tag <Hashtable>] [-UserAssignedIdentity <Hashtable>]
[-DefaultProfile <PSObject>] [-Confirm] [-WhatIf] [<CommonParameters>]
Get-AzDataCollectionRule
'Get-AzDataCollectionRule' cmdlet'i artık 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' çıkış türüne sahip değil. 'Get-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez. 'Get-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Get-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez.
Önce
Description : DCR description
DataSources : Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources
Destinations : Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations
DataFlows : {Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow}
ProvisioningState : Succeeded
Etag : "{etag}"
Id : /subscriptions/{subId}/resourceGroups/testgroup/providers/Microsoft.Insights/dataCollectionRules/testDcr
Name : testDcr
Type : Microsoft.Insights/dataCollectionRules
Location : East US 2 EUAP
Tags : {[tag2, value2], [tag1, value1]}
Sonra
DataCollectionEndpointId :
DataFlow : {{
"streams": [ "Microsoft-InsightsMetrics" ],
"destinations": [ "azureMonitorMetrics-default" ]
}}
DataSourceDataImportEventHubConsumerGroup :
DataSourceDataImportEventHubName :
DataSourceDataImportEventHubStream :
DataSourceExtension :
DataSourceIisLog :
DataSourceLogFile :
DataSourcePerformanceCounter : {{
"streams": [ "Microsoft-InsightsMetrics" ],
"samplingFrequencyInSeconds": 60,
"counterSpecifiers": [ "\\Processor(_Total)\\% Processor Time" ],
"name": "perfCounter01"
}, {
"streams": [ "Microsoft-Perf" ],
"samplingFrequencyInSeconds": 15,
"counterSpecifiers": [ "\\Processor(_Total)\\% Processor Time", "\\Memory\\Committed Bytes", "\\LogicalDisk(_Total)\\Free Megabytes",
"\\PhysicalDisk(_Total)\\Avg. Disk Queue Length" ],
"name": "cloudTeamCoreCounters"
}}
DataSourcePlatformTelemetry :
DataSourcePrometheusForwarder :
DataSourceSyslog :
DataSourceWindowsEventLog :
DataSourceWindowsFirewallLog :
Description :
DestinationAzureMonitorMetricName : azureMonitorMetrics-default
DestinationEventHub :
DestinationEventHubsDirect :
DestinationLogAnalytic :
DestinationMonitoringAccount :
DestinationStorageAccount :
DestinationStorageBlobsDirect :
DestinationStorageTablesDirect :
Etag : "bb02d25d-0000-0100-0000-65017aed0000"
Id : /subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/AMCS-TEST/providers/Microsoft.Insights/dataCollectionRules/myCollectionRule1
IdentityPrincipalId :
IdentityTenantId :
IdentityType :
IdentityUserAssignedIdentity : {
}
ImmutableId : dcr-2eebbe7e7a974226b2ef938194ada574
Kind :
Location : eastus
MetadataProvisionedBy :
MetadataProvisionedByResourceId :
Name : myCollectionRule1
ProvisioningState : Succeeded
ResourceGroupName : AMCS-TEST
StreamDeclaration : {
}
SystemDataCreatedAt : 9/13/2023 9:03:39 AM
SystemDataCreatedBy : v-jiaji@microsoft.com
SystemDataCreatedByType : User
SystemDataLastModifiedAt : 9/13/2023 9:03:39 AM
SystemDataLastModifiedBy : v-jiaji@microsoft.com
SystemDataLastModifiedByType : User
Tag : {
}
Type : Microsoft.Insights/dataCollectionRules
New-AzDataCollectionRule
'New-AzDataCollectionRule' cmdlet'i artık 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' çıkış türüne sahip değil' 'New-AzDataCollectionRule' cmdlet'i artık 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' çıkış türüne sahip değil. 'New-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'New-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'New-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez.
Önce
Description : DCR description
DataSources : Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDataSources
Destinations : Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleDestinations
DataFlows : {Microsoft.Azure.Commands.Insights.OutputClasses.PSDataFlow}
ProvisioningState : Succeeded
Etag : "{etag}"
Id : /subscriptions/{subId}/resourceGroups/testgroup/providers/Microsoft.Insights/dataCollectionRules/testDcr
Name : testDcr
Type : Microsoft.Insights/dataCollectionRules
Location : East US 2 EUAP
Tags : {[tag2, value2], [tag1, value1]}
Sonra
DataCollectionEndpointId :
DataFlow : {{
"streams": [ "Microsoft-InsightsMetrics" ],
"destinations": [ "azureMonitorMetrics-default" ]
}}
DataSourceDataImportEventHubConsumerGroup :
DataSourceDataImportEventHubName :
DataSourceDataImportEventHubStream :
DataSourceExtension :
DataSourceIisLog :
DataSourceLogFile :
DataSourcePerformanceCounter : {{
"streams": [ "Microsoft-InsightsMetrics" ],
"samplingFrequencyInSeconds": 60,
"counterSpecifiers": [ "\\Processor(_Total)\\% Processor Time" ],
"name": "perfCounter01"
}, {
"streams": [ "Microsoft-Perf" ],
"samplingFrequencyInSeconds": 15,
"counterSpecifiers": [ "\\Processor(_Total)\\% Processor Time", "\\Memory\\Committed Bytes", "\\LogicalDisk(_Total)\\Free Megabytes",
"\\PhysicalDisk(_Total)\\Avg. Disk Queue Length" ],
"name": "cloudTeamCoreCounters"
}}
DataSourcePlatformTelemetry :
DataSourcePrometheusForwarder :
DataSourceSyslog :
DataSourceWindowsEventLog :
DataSourceWindowsFirewallLog :
Description :
DestinationAzureMonitorMetricName : azureMonitorMetrics-default
DestinationEventHub :
DestinationEventHubsDirect :
DestinationLogAnalytic :
DestinationMonitoringAccount :
DestinationStorageAccount :
DestinationStorageBlobsDirect :
DestinationStorageTablesDirect :
Etag : "bb02d25d-0000-0100-0000-65017aed0000"
Id : /subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/AMCS-TEST/providers/Microsoft.Insights/dataCollectionRules/myCollectionRule1
IdentityPrincipalId :
IdentityTenantId :
IdentityType :
IdentityUserAssignedIdentity : {
}
ImmutableId : dcr-2eebbe7e7a974226b2ef938194ada574
Kind :
Location : eastus
MetadataProvisionedBy :
MetadataProvisionedByResourceId :
Name : myCollectionRule1
ProvisioningState : Succeeded
ResourceGroupName : AMCS-TEST
StreamDeclaration : {
}
SystemDataCreatedAt : 9/13/2023 9:03:39 AM
SystemDataCreatedBy : v-jiaji@microsoft.com
SystemDataCreatedByType : User
SystemDataLastModifiedAt : 9/13/2023 9:03:39 AM
SystemDataLastModifiedBy : v-jiaji@microsoft.com
SystemDataLastModifiedByType : User
Tag : {
}
Type : Microsoft.Insights/dataCollectionRules
Get-AzDataCollectionRuleAssociation
'Get-AzDataCollectionRuleAssociation' cmdlet'i artık 'InputObject' parametresi için 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' türünü desteklemez." 'Get-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklememektedir."
Önce
Description :
DataCollectionRuleId : /subscriptions/{subId}/resourceGroups/{rg}/providers/Microsoft.I
nsights/dataCollectionRules/{dcrName}
ProvisioningState :
Etag : "{etag}"
Id : /subscriptions/{subId}/resourceGroups/{rg}/providers/Microsoft.C
ompute/virtualMachines/{vmName}/providers/Microsoft.Insights/dataCollectionRuleAssociations/{assocName}
Name : {assocName}
Type : Microsoft.Insights/dataCollectionRuleAssociations
Sonra
DataCollectionEndpointId :
DataCollectionRuleId : /subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/AMCS-TEST/providers/Microsoft.Insights/dataCollectionRules/myCollectionRule2
Description :
Etag : "20017ecf-0000-0100-0000-651147350000"
Id : /subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/amcs-test/providers/microsoft.compute/virtualmachines/monitortestvm01/providers/Microsof
t.Insights/dataCollectionRuleAssociations/myCollectionRule2-association1
MetadataProvisionedBy :
MetadataProvisionedByResourceId :
Name : myCollectionRule2-association1
ProvisioningState :
ResourceGroupName : amcs-test
SystemDataCreatedAt : 9/25/2023 8:39:15 AM
SystemDataCreatedBy : v-jiaji@microsoft.com
SystemDataCreatedByType : User
SystemDataLastModifiedAt : 9/25/2023 8:39:15 AM
SystemDataLastModifiedBy : v-jiaji@microsoft.com
SystemDataLastModifiedByType : User
Type : Microsoft.Insights/dataCollectionRuleAssociations
New-AzDataCollectionRuleAssociation
'New-AzDataCollectionRuleAssociation' cmdlet'i artık 'InputObject' parametresini desteklememektedir ve özgün parametre adı için diğer ad bulunamadı. 'New-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'New-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'New-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez. 'New-AzDataCollectionRuleAssociation' cmdlet'i için 'ByInputObject' parametre kümesi kaldırıldı.
Önce
$dcr = Get-AzDataCollectionRule -ResourceGroupName $rg -RuleName $dcrName
$vmId = '/subscriptions/{subId}/resourceGroups/{resourcegroup}/providers/Microsoft.Compute/virtualMachines/{vmName}'
$dcr | New-AzDataCollectionRuleAssociation -TargetResourceId $vmId -AssociationName "dcrAssocInput"
Sonra
New-AzDataCollectionRuleAssociation -AssociationName myCollectionRule2-association1 -ResourceUri /subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourcegroups/amcs-test/providers/microsoft.compute/virtualmachines/monitortestvm01 -DataCollectionRuleId /subscriptions/9e223dbe-3399-4e19-88eb-0975f02ac87f/resourceGroups/AMCS-TEST/providers/Microsoft.Insights/dataCollectionRules/myCollectionRule2
Remove-AzDataCollectionRule
'Remove-AzDataCollectionRule' cmdlet'i artık 'InputObject' parametresi için 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' türünü desteklemez. 'Remove-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'Remove-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Remove-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez.
Önce
Get-AzDataCollectionRule -ResourceGroupName "testdcr" -RuleName "dcrFromPipe95" | Remove-AzDataCollectionRule
Sonra
Get-AzDataCollectionRule -ResourceGroupName "testdcr" -RuleName "dcrFromPipe95" | Remove-AzDataCollectionRule
Remove-AzDataCollectionRuleAssociation
'Remove-AzDataCollectionRuleAssociation' cmdlet'i artık 'InputObject' parametresi için 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleAssociationProxyOnlyResource' türünü desteklemez. 'Remove-AzDataCollectionRuleAssociation' cmdlet'i artık 'AssociationId' parametresini desteklemez ve özgün parametre adı için diğer ad bulunamadı. 'Remove-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'Remove-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Remove-AzDataCollectionRuleAssociation' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez. 'Remove-AzDataCollectionRuleAssociation' cmdlet'i için 'ByResourceId' parametre kümesi kaldırıldı.
Önce
$dcrAssoc | Remove-AzDataCollectionRuleAssociation
Remove-AzDataCollectionRuleAssociation -AssociationId $dcrAssoc.Id
Sonra
$dcrAssoc | Remove-AzDataCollectionRuleAssociation
Remove-AzDataCollectionRuleAssociation -InputObject $dcrAssoc.Id
Update-AzDataCollectionRule
'Update-AzDataCollectionRule' cmdlet'i artık 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' çıkış türüne sahip değil. 'Update-AzDataCollectionRule' cmdlet'i artık 'InputObject' parametresi için 'Microsoft.Azure.Commands.Insights.OutputClasses.PSDataCollectionRuleResource' türünü desteklemez. 'Update-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'Update-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Update-AzDataCollectionRule' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez.
Önce
$dcr = Get-AzDataCollectionRule -ResourceGroupName "testdcr" -Name "newDcr"
$dcr | Update-AzDataCollectionRule -Tag @{"tag1"="value1"; "tag2"="value2"}
Sonra
$dcr = Get-AzDataCollectionRule -ResourceGroupName "testdcr" -Name "newDcr"
$dcr | Update-AzDataCollectionRule -Tag @{"tag1"="value1"; "tag2"="value2"}
Get-AzActionGroup
'Get-AzActionGroup' cmdlet'i artık 'Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource' çıkış türüne sahip değil. 'Get-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'Get-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Get-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez.
Önce
Get-AzActionGroup -ResourceGroupName "Default-activityLogAlerts" -Name "actionGroup1"
Sonra
Get-AzActionGroup -ResourceGroupName "Default-activityLogAlerts" -Name "actionGroup1"
ArmRoleReceiver : {}
AutomationRunbookReceiver : {}
AzureAppPushReceiver : {}
AzureFunctionReceiver : {}
EmailReceiver : {}
Enabled : False
EventHubReceiver : {}
GroupShortName : ag1
Id : /subscriptions/{subid}/resourceGroups/Monitor-Action/providers/microsoft.insights/actionGroups/actiongroup1
ItsmReceiver : {}
Location : northcentralus
LogicAppReceiver : {}
Name : actiongroup1
ResourceGroupName : Monitor-Action
SmsReceiver : {}
Tag : {
}
Type : Microsoft.Insights/ActionGroups
VoiceReceiver : {}
WebhookReceiver : {}
Remove-AzActionGroup
'Remove-AzActionGroup' cmdlet'i artık 'InputObject' parametresi için 'Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupResource' türünü desteklemez. 'Remove-AzActionGroup' cmdlet'i için 'ByResourceId' parametre kümesi kaldırıldı. 'Remove-AzActionGroup' cmdlet'i artık 'ResourceId' parametresini desteklemez ve özgün parametre adı için diğer ad bulunamadı. 'Remove-AzActionGroup' cmdlet'i artık 'Microsoft.Azure.AzureOperationResponse' çıkış türüne sahip değil. 'Remove-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklememektedir. 'Remove-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Remove-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez.
Önce
Remove-AzActionGroup -ResourceGroupName "Default-Web-CentralUS" -Name "myActionGroup"
RequestId StatusCode
--------- ----------
2c6c159b-0e73-4a01-a67b-c32c1a0008a3 OK
Sonra
Remove-AzActionGroup -ResourceGroupName Monitor-Action -Name actiongroup1 --PassThur
True
Set-AzActionGroup
'Set-AzActionGroup' cmdlet'i kaldırıldı ve özgün cmdlet adı için diğer ad bulunamadı.
Önce
$email1 = New-AzActionGroupReceiver -Name 'user1' -EmailReceiver -EmailAddress 'user1@example.com'
$sms1 = New-AzActionGroupReceiver -Name 'user2' -SmsReceiver -CountryCode '1' -PhoneNumber '5555555555'
Set-AzActionGroup -Name $actionGroupName -ResourceGroupName $resourceGroupName -ShortName $shortName -Receiver $email1,$sms1
Sonra
$email1 = New-AzActionGroupEmailReceiverObject -EmailAddress user@example.com -Name user1
$sms1 = New-AzActionGroupSmsReceiverObject -CountryCode '{countrycode}' -Name user2 -PhoneNumber '{phonenumber}'
New-AzActionGroup -Name 'actiongroup1' -ResourceGroupName 'Monitor-Action' -Location northcentralus -GroupShortName ag1 -EmailReceiver $email1 -SmsReceiver $sms1
Test-AzActionGroup
'Test-AzActionGroup' cmdlet'i artık 'Alıcı' parametresi için 'System.Collections.Generic.List'1[Microsoft.Azure.Commands.Insights.OutputClasses.PSActionGroupReceiverBase]' türünü desteklemez. 'Test-AzActionGroup' cmdlet'i artık 'Microsoft.Azure.Commands.Insights.OutputClasses.PSTestNotificationDetailsResponse' çıkış türüne sahip değil. 'Test-AzActionGroup' cmdlet'i için 'ByPropertyName' parametre kümesi artık varsayılan parametre kümesi değil. 'Test-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'Microsoft.Azure.Commands.Common.Authentication.Abstractions.Core.IAzureContextContainer' türünü desteklemez. 'Test-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'AzContext' diğer adını desteklemez. 'Test-AzActionGroup' cmdlet'i artık 'DefaultProfile' parametresi için 'AzureRmContext' diğer adını desteklemez. 'Test-AzActionGroup' cmdlet'i için 'ByPropertyName' parametre kümesi kaldırıldı.
Önce
$email = New-AzActionGroupReceiver -Name 'user1' -EmailReceiver -EmailAddress 'test@test.example.com'
Test-AzActionGroup -AlertType servicehealth -Receiver $email -ResourceGroupName "test-RG" -ActionGroupName "test-AG"
Sonra
$sms1 = New-AzActionGroupSmsReceiverObject -CountryCode 86 -Name user1 -PhoneNumber 'phonenumber'
$email2 = New-AzActionGroupEmailReceiverObject -EmailAddress user@example.com -Name user2
Test-AzActionGroup -ActionGroupName actiongroup1 -ResourceGroupName monitor-action -AlertType servicehealth -Receiver $email2,$sms1
ActionDetail : {{
"MechanismType": "Email",
"Name": "user2",
"Status": "Succeeded",
"SubState": "Default",
"SendTime": "2023-11-08T05:16:09.6280455+00:00"
}, {
"MechanismType": "Sms",
"Name": "user1",
"Status": "Succeeded",
"SubState": "Default",
"SendTime": "2023-11-08T05:16:09.642967+00:00"
}}
CompletedTime : 2023-11-08T05:18:10.6755827+00:00
ContextNotificationSource : Microsoft.Insights/TestNotification
ContextType : Microsoft.Insights/ServiceHealth
CreatedTime : 2023-11-08T05:16:00.7951739+00:00
State : Complete
New-AzActionGroupReceiver
'New-AzActionGroupReceiver' cmdlet'i kaldırıldı ve özgün cmdlet adı için diğer ad bulunamadı.
Önce
$emailReceiver = New-AzActionGroupReceiver -Name 'emailReceiver1' -EmailReceiver -EmailAddress 'user1@example.com'
Sonra
$emailReceiver = New-AzActionGroupEmailReceiverObject -EmailAddress user@example.com -Name user1
Az.Network
New-AzApplicationGatewayFirewallCustomRuleGroupByVariable
"Geo" parametresi için VariableName
geçerli bir giriş kadar uzun değil NewAzureApplicationGatewayFirewallCustomRuleGroupByVariable
Az.PowerBIEmbedded
Remove-AzPowerBIWorkspaceCollection
Çalışma Alanı Koleksiyonu artık desteklenmediğinden 'Remove-AzPowerBIWorkspaceCollection' cmdlet'i kaldırıldı
Get-AzPowerBIWorkspaceCollection
Çalışma Alanı Koleksiyonu artık desteklenmediğinden 'Get-AzPowerBIWorkspaceCollection' cmdlet'i kaldırıldı
Get-AzPowerBIWorkspaceCollectionAccessKey
Çalışma Alanı Koleksiyonu artık desteklenmediğinden Get-AzPowerBIWorkspaceCollectionAccessKey' cmdlet'i kaldırıldı
Get-AzPowerBIWorkspace
Çalışma Alanı Koleksiyonu artık desteklenmediğinden 'Get-AzPowerBIWorkspace' cmdlet'i kaldırıldı
New-AzPowerBIWorkspaceCollection
Çalışma Alanı Koleksiyonu artık desteklenmediğinden 'New-AzPowerBIWorkspaceCollection' cmdlet'i kaldırıldı
Reset-AzPowerBIWorkspaceCollectionAccessKey
Çalışma Alanı Koleksiyonu artık desteklenmediğinden 'Reset-AzPowerBIWorkspaceCollectionAccessKey' cmdlet'i kaldırıldı
AZ. Depolama
Get-AzStorageQueueStoredAcessPolicy
Ouput erişim ilkesindeki izinler "raup" gibi bir dizeye değiştirildi
New-AzStorageAccountSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
New-AzStorageBlobSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
New-AzStorageContainerSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
New-AzStorageFileSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
New-AzStorageQueueSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
New-AzStorageShareSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
New-AzStorageTableSasToken
Oluşturulan SAS belirtecinin başındaki soru işareti '?' kaldırıldı
Set-AzStorageQueueStoredAccessPolicy
Ouput erişim ilkesindeki izinler "raup" gibi bir dizeye değiştirildi
Azure PowerShell