Azure / azure-powershell

Microsoft Azure PowerShell
Other
4.26k stars 3.87k forks source link

Set-AzLoadBalancer*Config cmdlets clear the Id of the objects, which may cause references to break #14165

Open jberezanski-mdg opened 3 years ago

jberezanski-mdg commented 3 years ago

Description

The Set-AzLoadBalancer*Config cmdlets update existing objects in a Load Balancer configuration by creating a new object instance (such as a PSProbe object), filling it with properties from cmdlet parameters and replacing the existing object in the appropriate collection of the Load Balancer object. One property of the created objects which is left unset is the Id property. This is in contrast to the Add-AzLoadBalancer*Config cmdlet, which gives the newly created objects a proper Id value.

The resulting objects, after a call to Set-AzLoadBalancer*Config, do not have their Id set to anything. This makes them unusable to be passed as parameters when creating/updating other Load Balancer objects. For example, a Rule object references a Probe object. If a Probe object is updated using Set-AzLoadBalancerProbeConfig and that Probe object is then passed as value of the -Probe parameter of Set-AzLoadBalancerRuleConfig, the latter cmdlet will clear the Probe property of the Rule object instead of setting it to the provided Probe.

The Set-AzLoadBalancer*Config cmdlets should copy the existing Id property values.

Steps to reproduce

# Start with an existing LoadBalancer, which contains a Rule named "FabricTcpGatewayRule", which references a Probe named "FabricTcpGatewayProbe".
$lb = Get-AzLoadBalancer -Name mytest-lb -ResourceGroupName mytest-rg

$lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl *
$lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl *

# Change a property of the Probe.
$lb | Set-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe -Port 19000 -Protocol Tcp -IntervalInSeconds 5 -ProbeCount 3 | Out-Null
# Observe that the Id of the Probe is now set to null.
$lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl *

# Now change a property of the Rule, taking care to preserve the reference to the correct Probe.
$probe = $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe
$lb | Set-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule -Protocol Tcp -FrontendPort 19000 -BackendPort 19000 -IdleTimeoutInMinutes 6 -FrontendIpConfiguration $lb.FrontendIpConfigurations[0] -BackendAddressPool $lb.BackendAddressPools[0] -Probe $probe | Out-Null

# Observe that Probe is now set to null.
$lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl *

Environment data

Name                           Value
----                           -----
PSVersion                      5.1.18362.1171
PSEdition                      Desktop
PSCompatibleVersions           {1.0, 2.0, 3.0, 4.0...}
BuildVersion                   10.0.18362.1171
CLRVersion                     4.0.30319.42000
WSManStackVersion              3.0
PSRemotingProtocolVersion      2.3
SerializationVersion           1.1.0.1

Module versions

    Directory: C:\Program Files\WindowsPowerShell\Modules

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Binary     4.0.0.0    AWSPowerShell                       {Clear-AWSHistory, Set-AWSHistoryConfiguration, Initialize-AWSDefaultConfiguration, Clear-AWSDefaultConfiguration...}
Script     2.2.5      Az.Accounts                         {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...}
Script     2.2.4      Az.Accounts                         {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...}
Script     2.2.1      Az.Accounts                         {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...}
Script     1.6.4      Az.Accounts                         {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...}
Script     1.1.1      Az.Advisor                          {Get-AzAdvisorRecommendation, Enable-AzAdvisorRecommendation, Disable-AzAdvisorRecommendation, Get-AzAdvisorConfiguration...}
Script     1.1.0      Az.Advisor                          {Get-AzAdvisorRecommendation, Enable-AzAdvisorRecommendation, Disable-AzAdvisorRecommendation, Get-AzAdvisorConfiguration...}
Script     2.0.2      Az.Aks                              {Get-AzAksCluster, New-AzAksCluster, Remove-AzAksCluster, Import-AzAksCredential...}
Script     2.0.1      Az.Aks                              {Get-AzAksCluster, New-AzAksCluster, Remove-AzAksCluster, Import-AzAksCredential...}
Script     1.2.0      Az.Aks                              {Get-AzAksCluster, New-AzAksCluster, Remove-AzAksCluster, Import-AzAksCredential...}
Script     1.0.2      Az.Aks                              {Get-AzAks, New-AzAks, Remove-AzAks, Import-AzAksCredential...}
Script     1.1.4      Az.AnalysisServices                 {Resume-AzAnalysisServicesServer, Suspend-AzAnalysisServicesServer, Get-AzAnalysisServicesServer, Remove-AzAnalysisServicesServer...}
Script     1.1.1      Az.AnalysisServices                 {Resume-AzAnalysisServicesServer, Suspend-AzAnalysisServicesServer, Get-AzAnalysisServicesServer, Remove-AzAnalysisServicesServer...}
Script     2.2.0      Az.ApiManagement                    {Add-AzApiManagementApiToGateway, Add-AzApiManagementApiToProduct, Add-AzApiManagementProductToGroup, Add-AzApiManagementRegion...}
Script     2.1.0      Az.ApiManagement                    {Add-AzApiManagementApiToGateway, Add-AzApiManagementApiToProduct, Add-AzApiManagementProductToGroup, Add-AzApiManagementRegion...}
Script     1.3.2      Az.ApiManagement                    {Add-AzApiManagementApiToProduct, Add-AzApiManagementProductToGroup, Add-AzApiManagementRegion, Add-AzApiManagementUserToGroup...}
Script     1.0.0      Az.AppConfiguration                 {Get-AzAppConfigurationStore, Get-AzAppConfigurationStoreKey, New-AzAppConfigurationStore, New-AzAppConfigurationStoreKey...}
Script     1.1.0      Az.ApplicationInsights              {Get-AzApplicationInsights, New-AzApplicationInsights, Remove-AzApplicationInsights, Update-AzApplicationInsights...}
Script     1.0.2      Az.ApplicationInsights              {Get-AzApplicationInsights, New-AzApplicationInsights, Remove-AzApplicationInsights, Set-AzApplicationInsightsPricingPlan...}
Script     1.4.3      Az.Automation                       {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...}
Script     1.4.2      Az.Automation                       {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...}
Script     1.4.0      Az.Automation                       {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...}
Script     1.3.4      Az.Automation                       {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...}
Script     3.1.0      Az.Batch                            {Remove-AzBatchAccount, Get-AzBatchAccount, Get-AzBatchAccountKey, New-AzBatchAccount...}
Script     2.0.1      Az.Batch                            {Remove-AzBatchAccount, Get-AzBatchAccount, Get-AzBatchAccountKey, New-AzBatchAccount...}
Script     2.0.0      Az.Billing                          {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...}
Script     1.0.3      Az.Billing                          {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...}
Script     1.0.1      Az.Billing                          {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...}
Script     1.6.0      Az.Cdn                              {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...}
Script     1.4.3      Az.Cdn                              {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...}
Script     1.4.0      Az.Cdn                              {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...}
Script     1.8.0      Az.CognitiveServices                {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSku, Get-AzCognitiveServicesAccountType...}
Script     1.5.1      Az.CognitiveServices                {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSku, Get-AzCognitiveServicesAccountType...}
Script     1.2.1      Az.CognitiveServices                {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSku, Get-AzCognitiveServicesAccountType...}
Script     4.9.0      Az.Compute                          {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script     4.8.0      Az.Compute                          {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script     4.6.0      Az.Compute                          {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script     4.3.0      Az.Compute                          {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script     3.0.0      Az.Compute                          {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...}
Script     1.0.3      Az.ContainerInstance                {New-AzContainerGroup, Get-AzContainerGroup, Remove-AzContainerGroup, Get-AzContainerInstanceLog}
Script     1.0.1      Az.ContainerInstance                {New-AzContainerGroup, Get-AzContainerGroup, Remove-AzContainerGroup, Get-AzContainerInstanceLog}
Script     2.2.0      Az.ContainerRegistry                {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script     2.1.0      Az.ContainerRegistry                {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script     2.0.0      Az.ContainerRegistry                {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script     1.1.1      Az.ContainerRegistry                {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script     1.1.0      Az.ContainerRegistry                {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...}
Script     1.0.0      Az.CosmosDB                         {Get-AzCosmosDBSqlContainer, Get-AzCosmosDBSqlContainerThroughput, Get-AzCosmosDBSqlDatabase, Get-AzCosmosDBSqlDatabaseThroughput...}
Script     1.1.0      Az.DataBoxEdge                      {Get-AzDataBoxEdgeJob, Get-AzDataBoxEdgeDevice, Invoke-AzDataBoxEdgeDevice, New-AzDataBoxEdgeDevice...}
Script     1.1.0      Az.Databricks                       {Get-AzDatabricksVNetPeering, Get-AzDatabricksWorkspace, New-AzDatabricksVNetPeering, New-AzDatabricksWorkspace...}
Script     1.0.2      Az.Databricks                       {Get-AzDatabricksVNetPeering, Get-AzDatabricksWorkspace, New-AzDatabricksVNetPeering, New-AzDatabricksWorkspace...}
Script     1.0.1      Az.Databricks                       {Get-AzDatabricksVNetPeering, Get-AzDatabricksWorkspace, New-AzDatabricksVNetPeering, New-AzDatabricksWorkspace...}
Script     1.11.3     Az.DataFactory                      {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...}
Script     1.11.1     Az.DataFactory                      {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...}
Script     1.10.0     Az.DataFactory                      {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...}
Script     1.4.1      Az.DataFactory                      {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...}
Script     1.0.2      Az.DataLakeAnalytics                {Get-AzDataLakeAnalyticsDataSource, New-AzDataLakeAnalyticsCatalogCredential, Remove-AzDataLakeAnalyticsCatalogCredential, Set-AzDataLakeAnalyticsCatalogCredential...}
Script     1.0.1      Az.DataLakeAnalytics                {Get-AzDataLakeAnalyticsDataSource, New-AzDataLakeAnalyticsCatalogCredential, Remove-AzDataLakeAnalyticsCatalogCredential, Set-AzDataLakeAnalyticsCatalogCredential...}
Script     1.3.0      Az.DataLakeStore                    {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...}
Script     1.2.8      Az.DataLakeStore                    {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...}
Script     1.2.4      Az.DataLakeStore                    {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...}
Script     1.0.0      Az.DataShare                        {New-AzDataShareAccount, Get-AzDataShareAccount, Remove-AzDataShareAccount, New-AzDataShare...}
Script     1.1.0      Az.DeploymentManager                {Get-AzDeploymentManagerArtifactSource, New-AzDeploymentManagerArtifactSource, Set-AzDeploymentManagerArtifactSource, Remove-AzDeploymentManagerArtifactSource...}
Script     1.0.1      Az.DeploymentManager                {Get-AzDeploymentManagerArtifactSource, New-AzDeploymentManagerArtifactSource, Set-AzDeploymentManagerArtifactSource, Remove-AzDeploymentManagerArtifactSource...}
Script     2.1.1      Az.DesktopVirtualization            {Disconnect-AzWvdUserSession, Expand-AzWvdMsixImage, Get-AzWvdApplication, Get-AzWvdApplicationGroup...}
Script     2.0.1      Az.DesktopVirtualization            {Disconnect-AzWvdUserSession, Expand-AzWvdMsixImage, Get-AzWvdApplication, Get-AzWvdApplicationGroup...}
Script     1.0.0      Az.DesktopVirtualization            {Disconnect-AzWvdUserSession, Get-AzWvdApplication, Get-AzWvdApplicationGroup, Get-AzWvdDesktop...}
Script     1.0.2      Az.DevTestLabs                      {Get-AzDtlAllowedVMSizesPolicy, Get-AzDtlAutoShutdownPolicy, Get-AzDtlAutoStartPolicy, Get-AzDtlVMsPerLabPolicy...}
Script     1.0.0      Az.DevTestLabs                      {Get-AzDtlAllowedVMSizesPolicy, Get-AzDtlAutoShutdownPolicy, Get-AzDtlAutoStartPolicy, Get-AzDtlVMsPerLabPolicy...}
Script     1.1.2      Az.Dns                              {Get-AzDnsRecordSet, New-AzDnsRecordConfig, Remove-AzDnsRecordSet, Set-AzDnsRecordSet...}
Script     1.1.1      Az.Dns                              {Get-AzDnsRecordSet, New-AzDnsRecordConfig, Remove-AzDnsRecordSet, Set-AzDnsRecordSet...}
Script     1.3.0      Az.EventGrid                        {New-AzEventGridTopic, Get-AzEventGridTopic, Set-AzEventGridTopic, New-AzEventGridTopicKey...}
Script     1.2.2      Az.EventGrid                        {New-AzEventGridTopic, Get-AzEventGridTopic, Set-AzEventGridTopic, New-AzEventGridTopicKey...}
Script     1.7.1      Az.EventHub                         {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...}
Script     1.5.0      Az.EventHub                         {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...}
Script     1.4.0      Az.EventHub                         {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...}
Script     1.7.0      Az.FrontDoor                        {New-AzFrontDoor, Get-AzFrontDoor, Set-AzFrontDoor, Remove-AzFrontDoor...}
Script     1.6.1      Az.FrontDoor                        {New-AzFrontDoor, Get-AzFrontDoor, Set-AzFrontDoor, Remove-AzFrontDoor...}
Script     1.1.2      Az.FrontDoor                        {New-AzFrontDoor, Get-AzFrontDoor, Set-AzFrontDoor, Remove-AzFrontDoor...}
Script     2.0.0      Az.Functions                        {Get-AzFunctionApp, Get-AzFunctionAppAvailableLocation, Get-AzFunctionAppPlan, Get-AzFunctionAppSetting...}
Script     1.0.1      Az.Functions                        {Get-AzFunctionApp, Get-AzFunctionAppAvailableLocation, Get-AzFunctionAppPlan, Get-AzFunctionAppSetting...}
Script     4.2.0      Az.HDInsight                        {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script     4.1.1      Az.HDInsight                        {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script     4.1.0      Az.HDInsight                        {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script     3.5.0      Az.HDInsight                        {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script     3.0.0      Az.HDInsight                        {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...}
Script     1.2.0      Az.HealthcareApis                   {New-AzHealthcareApisService, Remove-AzHealthcareApisService, Set-AzHealthcareApisService, Get-AzHealthcareApisService}
Script     1.1.0      Az.HealthcareApis                   {New-AzHealthcareApisService, Remove-AzHealthcareApisService, Set-AzHealthcareApisService, Get-AzHealthcareApisService}
Script     1.0.0      Az.HealthcareApis                   {New-AzHealthcareApisService, Remove-AzHealthcareApisService, Set-AzHealthcareApisService, Get-AzHealthcareApisService}
Script     2.7.2      Az.IotHub                           {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...}
Script     2.7.0      Az.IotHub                           {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...}
Script     2.5.0      Az.IotHub                           {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...}
Script     2.0.0      Az.IotHub                           {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...}
Script     3.4.0      Az.KeyVault                         {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...}
Script     3.3.1      Az.KeyVault                         {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...}
Script     3.1.0      Az.KeyVault                         {Add-AzManagedHsmKey, Get-AzManagedHsmKey, Remove-AzManagedHsmKey, Undo-AzManagedHsmKeyRemoval...}
Script     2.1.0      Az.KeyVault                         {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...}
Script     1.3.1      Az.KeyVault                         {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...}
Script     1.0.1      Az.Kusto                            {Add-AzKustoClusterLanguageExtension, Add-AzKustoDatabasePrincipal, Get-AzKustoAttachedDatabaseConfiguration, Get-AzKustoCluster...}
Script     1.0.0      Az.Kusto                            {Add-AzKustoClusterLanguageExtension, Add-AzKustoDatabasePrincipal, Get-AzKustoAttachedDatabaseConfiguration, Get-AzKustoCluster...}
Script     1.5.0      Az.LogicApp                         {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...}
Script     1.4.0      Az.LogicApp                         {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...}
Script     1.3.2      Az.LogicApp                         {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...}
Script     1.3.1      Az.LogicApp                         {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...}
Script     1.1.3      Az.MachineLearning                  {Move-AzMlCommitmentAssociation, Get-AzMlCommitmentAssociation, Get-AzMlCommitmentPlanUsageHistory, Remove-AzMlCommitmentPlan...}
Script     1.1.1      Az.MachineLearning                  {Move-AzMlCommitmentAssociation, Get-AzMlCommitmentAssociation, Get-AzMlCommitmentPlanUsageHistory, Remove-AzMlCommitmentPlan...}
Script     1.1.0      Az.Maintenance                      {Get-AzApplyUpdate, Get-AzConfigurationAssignment, Get-AzMaintenanceConfiguration, Get-AzMaintenanceUpdate...}
Script     0.7.3      Az.ManagedServiceIdentity           {New-AzUserAssignedIdentity, Get-AzUserAssignedIdentity, Remove-AzUserAssignedIdentity}
Script     2.0.0      Az.ManagedServices                  {Get-AzManagedServicesAssignment, New-AzManagedServicesAssignment, Remove-AzManagedServicesAssignment, Get-AzManagedServicesDefinition...}
Script     1.1.0      Az.ManagedServices                  {Get-AzManagedServicesAssignment, New-AzManagedServicesAssignment, Remove-AzManagedServicesAssignment, Get-AzManagedServicesDefinition...}
Script     1.0.1      Az.ManagedServices                  {Get-AzManagedServicesAssignment, New-AzManagedServicesAssignment, Remove-AzManagedServicesAssignment, Get-AzManagedServicesDefinition...}
Script     1.0.2      Az.MarketplaceOrdering              {Get-AzMarketplaceTerms, Set-AzMarketplaceTerms}
Script     1.0.1      Az.MarketplaceOrdering              {Get-AzMarketplaceTerms, Set-AzMarketplaceTerms}
Script     1.1.1      Az.Media                            {Sync-AzMediaServiceStorageKey, Set-AzMediaServiceKey, Get-AzMediaServiceKey, Get-AzMediaServiceNameAvailability...}
Script     1.1.0      Az.Media                            {Sync-AzMediaServiceStorageKey, Set-AzMediaServiceKey, Get-AzMediaServiceKey, Get-AzMediaServiceNameAvailability...}
Script     2.4.0      Az.Monitor                          {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...}
Script     2.2.0      Az.Monitor                          {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...}
Script     2.1.0      Az.Monitor                          {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...}
Script     1.4.0      Az.Monitor                          {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...}
Script     4.6.0      Az.Network                          {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen...
Script     4.5.0      Az.Network                          {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen...
Script     4.3.0      Az.Network                          {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen...
Script     3.3.0      Az.Network                          {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen...
Script     2.0.0      Az.Network                          {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen...
Script     1.1.1      Az.NotificationHubs                 {Get-AzNotificationHub, Get-AzNotificationHubAuthorizationRule, Get-AzNotificationHubListKey, Get-AzNotificationHubPNSCredential...}
Script     1.1.0      Az.NotificationHubs                 {Get-AzNotificationHub, Get-AzNotificationHubAuthorizationRule, Get-AzNotificationHubListKey, Get-AzNotificationHubPNSCredential...}
Script     2.3.0      Az.OperationalInsights              {New-AzOperationalInsightsAzureActivityLogDataSource, New-AzOperationalInsightsCustomLogDataSource, Disable-AzOperationalInsightsLinuxCustomLogCollection, Disable-AzOperationalInsightsIIS...
Script     1.3.3      Az.OperationalInsights              {New-AzOperationalInsightsAzureActivityLogDataSource, New-AzOperationalInsightsCustomLogDataSource, Disable-AzOperationalInsightsLinuxCustomLogCollection, Disable-AzOperationalInsightsIIS...
Script     1.4.1      Az.PolicyInsights                   {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...}
Script     1.4.0      Az.PolicyInsights                   {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...}
Script     1.3.1      Az.PolicyInsights                   {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...}
Script     1.1.3      Az.PolicyInsights                   {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...}
Script     1.1.2      Az.PowerBIEmbedded                  {Remove-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollectionAccessKey, Get-AzPowerBIWorkspace...}
Script     1.1.0      Az.PowerBIEmbedded                  {Remove-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollectionAccessKey, Get-AzPowerBIWorkspace...}
Script     1.0.3      Az.PrivateDns                       {Get-AzPrivateDnsZone, Remove-AzPrivateDnsZone, Set-AzPrivateDnsZone, New-AzPrivateDnsZone...}
Script     1.0.0      Az.PrivateDns                       {Get-AzPrivateDnsZone, Remove-AzPrivateDnsZone, Set-AzPrivateDnsZone, New-AzPrivateDnsZone...}
Script     3.4.0      Az.RecoveryServices                 {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script     3.3.0      Az.RecoveryServices                 {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script     3.0.1      Az.RecoveryServices                 {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script     2.11.1     Az.RecoveryServices                 {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script     2.0.1      Az.RecoveryServices                 {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...}
Script     1.4.0      Az.RedisCache                       {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...}
Script     1.2.1      Az.RedisCache                       {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...}
Script     1.1.1      Az.RedisCache                       {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...}
Script     1.0.3      Az.Relay                            {New-AzRelayNamespace, Get-AzRelayNamespace, Set-AzRelayNamespace, Remove-AzRelayNamespace...}
Script     1.0.2      Az.Relay                            {New-AzRelayNamespace, Get-AzRelayNamespace, Set-AzRelayNamespace, Remove-AzRelayNamespace...}
Script     3.2.1      Az.Resources                        {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script     3.2.0      Az.Resources                        {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script     3.0.1      Az.Resources                        {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script     2.5.0      Az.Resources                        {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script     1.7.1      Az.Resources                        {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...}
Script     1.4.1      Az.ServiceBus                       {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set-AzServiceBusNamespace, Remove-AzServiceBusNamespace...}
Script     1.4.0      Az.ServiceBus                       {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set-AzServiceBusNamespace, Remove-AzServiceBusNamespace...}
Script     2.2.2      Az.ServiceFabric                    {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...}
Script     2.2.0      Az.ServiceFabric                    {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...}
Script     2.1.0      Az.ServiceFabric                    {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...}
Script     2.0.0      Az.ServiceFabric                    {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...}
Script     1.2.0      Az.SignalR                          {New-AzSignalR, Get-AzSignalR, Get-AzSignalRKey, New-AzSignalRKey...}
Script     1.1.0      Az.SignalR                          {New-AzSignalR, Get-AzSignalR, Get-AzSignalRKey, New-AzSignalRKey...}
Script     2.16.0     Az.Sql                              {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...}
Script     2.15.0     Az.Sql                              {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...}
Script     2.12.0     Az.Sql                              {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...}
Script     2.9.1      Az.Sql                              {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...}
Script     2.0.0      Az.Sql                              {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...}
Script     1.1.0      Az.SqlVirtualMachine                {New-AzSqlVM, Get-AzSqlVM, Update-AzSqlVM, Remove-AzSqlVM...}
Script     3.3.0      Az.Storage                          {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script     3.2.1      Az.Storage                          {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script     3.0.0      Az.Storage                          {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script     2.5.0      Az.Storage                          {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script     1.9.0      Az.Storage                          {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...}
Script     1.4.0      Az.StorageSync                      {Invoke-AzStorageSyncCompatibilityCheck, New-AzStorageSyncService, Get-AzStorageSyncService, Set-AzStorageSyncService...}
Script     1.3.0      Az.StorageSync                      {Invoke-AzStorageSyncCompatibilityCheck, New-AzStorageSyncService, Get-AzStorageSyncService, Set-AzStorageSyncService...}
Script     1.2.1      Az.StorageSync                      {Invoke-AzStorageSyncCompatibilityCheck, New-AzStorageSyncService, Get-AzStorageSyncService, Remove-AzStorageSyncService...}
Script     1.0.1      Az.StreamAnalytics                  {Get-AzStreamAnalyticsFunction, Get-AzStreamAnalyticsDefaultFunctionDefinition, New-AzStreamAnalyticsFunction, Remove-AzStreamAnalyticsFunction...}
Script     1.0.0      Az.StreamAnalytics                  {Get-AzStreamAnalyticsFunction, Get-AzStreamAnalyticsDefaultFunctionDefinition, New-AzStreamAnalyticsFunction, Remove-AzStreamAnalyticsFunction...}
Script     1.0.0      Az.Support                          {Get-AzSupportService, Get-AzSupportProblemClassification, Get-AzSupportTicket, Get-AzSupportTicketCommunication...}
Script     1.0.4      Az.TrafficManager                   {Add-AzTrafficManagerCustomHeaderToEndpoint, Remove-AzTrafficManagerCustomHeaderFromEndpoint, Add-AzTrafficManagerCustomHeaderToProfile, Remove-AzTrafficManagerCustomHeaderFromProfile...}
Script     1.0.2      Az.TrafficManager                   {Add-AzTrafficManagerCustomHeaderToEndpoint, Remove-AzTrafficManagerCustomHeaderFromEndpoint, Add-AzTrafficManagerCustomHeaderToProfile, Remove-AzTrafficManagerCustomHeaderFromProfile...}
Script     2.3.0      Az.Websites                         {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
Script     2.2.0      Az.Websites                         {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
Script     2.1.0      Az.Websites                         {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
Script     1.11.0     Az.Websites                         {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
Script     1.5.0      Az.Websites                         {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...}
Binary     2.0.2.118  AzureAD                             {Add-AzureADApplicationOwner, Get-AzureADApplication, Get-AzureADApplicationExtensionProperty, Get-AzureADApplicationOwner...}
Binary     2.0.2.61   AzureAD                             {Add-AzureADApplicationOwner, Get-AzureADApplication, Get-AzureADApplicationExtensionProperty, Get-AzureADApplicationOwner...}
Binary     0.4        DeviceManagement                    {Get-Driver, Get-NUMA, Disable-Device, Enable-Device...}
Manifest   1.3.1      Microsoft.Graph
Script     1.3.1      Microsoft.Graph.Applications        {Add-MgApplicationKey, Add-MgApplicationPassword, Add-MgServicePrincipalKey, Add-MgServicePrincipalPassword...}
Script     1.3.1      Microsoft.Graph.Authentication      {Connect-MgGraph, Disconnect-MgGraph, Get-MgContext, Get-MgProfile...}
Script     1.3.1      Microsoft.Graph.Bookings            {Get-MgBookingBusiness, Get-MgBookingBusinessAppointment, Get-MgBookingBusinessCalendarView, Get-MgBookingBusinessCustomer...}
Script     1.3.1      Microsoft.Graph.Calendar            {Get-MgGroupCalendar, Get-MgGroupCalendarMultiValueExtendedProperty, Get-MgGroupCalendarPermission, Get-MgGroupCalendarSingleValueExtendedProperty...}
Script     1.3.1      Microsoft.Graph.ChangeNotifications {Get-MgSubscription, New-MgSubscription, Remove-MgSubscription, Update-MgSubscription}
Script     1.3.1      Microsoft.Graph.CloudCommunications {Get-MgCommunicationCall, Get-MgCommunicationCallAudioRoutingGroup, Get-MgCommunicationCallOperation, Get-MgCommunicationCallParticipant...}
Script     1.3.1      Microsoft.Graph.Compliance          {Close-MgComplianceEdiscoveryCase, Export-MgComplianceEdiscoveryCaseReviewSet, Get-MgCompliance, Get-MgComplianceEdiscovery...}
Script     1.3.1      Microsoft.Graph.CrossDeviceExper... {Get-MgUserActivity, Get-MgUserActivityHistoryItem, Get-MgUserActivityHistoryItemActivity, Get-MgUserActivityHistoryItemActivityByRef...}
Script     1.3.1      Microsoft.Graph.Devices.CloudPrint  {Get-MgPrint, Get-MgPrintConnector, Get-MgPrintOperation, Get-MgPrintPrinter...}
Script     1.3.1      Microsoft.Graph.Devices.Corporat... {Clear-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration, Get-MgDeviceAppMgt, Get-MgDeviceAppMgtAndroidManagedAppProtection, Get-MgDeviceAppMgtAndroidManagedAppProtectionApp...}
Script     1.3.1      Microsoft.Graph.DirectoryObjects    {Confirm-MgDirectoryObjectMemberGroup, Confirm-MgDirectoryObjectMemberObject, Get-MgDirectoryObject, Get-MgDirectoryObjectAvailableExtensionProperty...}
Script     1.3.1      Microsoft.Graph.Education           {Get-MgEducationClass, Get-MgEducationClassAssignment, Get-MgEducationClassAssignmentCategory, Get-MgEducationClassAssignmentResource...}
Script     1.3.1      Microsoft.Graph.Files               {Get-MgDrive, Get-MgDriveActivity, Get-MgDriveBundle, Get-MgDriveBundleContent...}
Script     1.3.1      Microsoft.Graph.Financials          {Get-MgFinancial, Get-MgFinancialCompany, Get-MgFinancialCompanyAccount, Get-MgFinancialCompanyAgedAccountPayable...}
Script     1.3.1      Microsoft.Graph.Groups              {Add-MgGroupFavorite, Add-MgGroupToLifecyclePolicy, Confirm-MgGroupGrantedPermission, Confirm-MgGroupMemberGroup...}
Script     1.3.1      Microsoft.Graph.Identity.Directo... {Confirm-MgAdministrativeUnitMemberGroup, Confirm-MgAdministrativeUnitMemberObject, Confirm-MgContactMemberGroup, Confirm-MgContactMemberObject...}
Script     1.3.1      Microsoft.Graph.Identity.Governance {Add-MgAccessReviewDecision, Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision, Get-MgAccessReview, Get-MgAccessReviewDecision...}
Script     1.3.1      Microsoft.Graph.Identity.SignIns    {Confirm-MgRiskyUserCompromised, Get-MgDataPolicyOperation, Get-MgIdentityConditionalAccessAuthenticationContextClasserenceByRef, Get-MgIdentityConditionalAccessNamedLocation...}
Script     1.3.1      Microsoft.Graph.Mail                {Get-MgUserInferenceClassification, Get-MgUserInferenceClassificationOverride, Get-MgUserMailFolder, Get-MgUserMailFolderChildFolder...}
Script     1.3.1      Microsoft.Graph.Notes               {Get-MgGroupOnenoteNotebook, Get-MgGroupOnenoteNotebookSection, Get-MgGroupOnenoteNotebookSectionGroup, Get-MgGroupOnenoteOperation...}
Script     1.3.1      Microsoft.Graph.People              {Get-MgUserActivityStatistics, Get-MgUserLastSharedMethodInsight, Get-MgUserPerson, Get-MgUserProfile...}
Script     1.3.1      Microsoft.Graph.PersonalContacts    {Get-MgUserContact, Get-MgUserContactExtension, Get-MgUserContactFolder, Get-MgUserContactFolderChildFolder...}
Script     1.3.1      Microsoft.Graph.Planner             {Get-MgGroupPlanner, Get-MgGroupPlannerPlan, Get-MgGroupPlannerPlanBucket, Get-MgGroupPlannerPlanBucketTask...}
Script     1.3.1      Microsoft.Graph.Reports             {Get-MgAuditLogDirectoryAudit, Get-MgAuditLogDirectoryProvisioning, Get-MgAuditLogProvisioning, Get-MgAuditLogRestrictedSignIn...}
Script     1.3.1      Microsoft.Graph.SchemaExtensions    {Get-MgSchemaExtension, New-MgSchemaExtension, Remove-MgSchemaExtension, Update-MgSchemaExtension}
Script     1.3.1      Microsoft.Graph.Search              {Get-MgExternal, Get-MgExternalConnection, Get-MgSearchEntity, Invoke-MgQuerySearch...}
Script     1.3.1      Microsoft.Graph.Security            {Get-MgSecurityAction, Get-MgSecurityAlert, Get-MgSecurityCloudAppSecurityProfile, Get-MgSecurityDomainSecurityProfile...}
Script     1.3.1      Microsoft.Graph.Sites               {Copy-MgSiteOnenoteNotebook, Copy-MgSiteOnenotePageToSection, Copy-MgSiteOnenoteSectionToNotebook, Copy-MgSiteOnenoteSectionToSectionGroup...}
Script     1.3.1      Microsoft.Graph.Teams               {Add-MgChatMember, Add-MgTeamChannelMember, Add-MgTeamMember, Add-MgTeamPrimaryChannelMember...}
Script     1.3.1      Microsoft.Graph.Users               {Get-MgUser, Get-MgUserCreatedObject, Get-MgUserCreatedObjectByRef, Get-MgUserDirectReport...}
Script     1.3.1      Microsoft.Graph.Users.Actions       {Add-MgUserPendingAccessReviewInstanceDecision, Clear-MgUserAndBlockManagedApp, Clear-MgUserManagedAppRegistrationByDeviceTag, Clear-MgUserManagedDevice...}
Script     1.3.1      Microsoft.Graph.Users.Functions     {Export-MgUserDeviceAndAppManagementData623C, Export-MgUserDeviceAndAppManagementDataD390, Find-MgUserRoomAc49, Find-MgUserRoomD266...}
Script     1.0.1      Microsoft.PowerShell.Operation.V... {Get-OperationValidation, Invoke-OperationValidation}
Binary     1.0.3      Microsoft.ServiceFabric.Powershe... {Connect-SFCluster, Copy-SFApplicationPackage, New-SFMeshResourceDeployment, New-SFMeshApplication...}
Manifest   1.1.0.0    mWsusInstall
Manifest   1.0.0.0    mWsusInstall
Script     1.4.7      PackageManagement                   {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...}
Script     1.4.5      PackageManagement                   {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...}
Binary     1.0.0.1    PackageManagement                   {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...}
Binary     1.0.0.0    PackageManagement                   {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...}
Script     3.4.0      Pester                              {Describe, Context, It, Should...}
Script     2.2.5      PowerShellGet                       {Find-Command, Find-DSCResource, Find-Module, Find-RoleCapability...}
Script     2.2.1      PowerShellGet                       {Find-Command, Find-DSCResource, Find-Module, Find-RoleCapability...}
Script     1.0.0.1    PowerShellGet                       {Install-Module, Find-Module, Save-Module, Update-Module...}
Script     2.1.0      PSReadline                          {Get-PSReadLineKeyHandler, Set-PSReadLineKeyHandler, Remove-PSReadLineKeyHandler, Get-PSReadLineOption...}
Script     2.0.0      PSReadline                          {Get-PSReadLineKeyHandler, Set-PSReadLineKeyHandler, Remove-PSReadLineKeyHandler, Get-PSReadLineOption...}
Binary     2.2.0.2    PSWindowsUpdate                     {Add-WUServiceManager, Enable-WURemoting, Get-WindowsUpdate, Get-WUApiVersion...}
Binary     2.1.1.2    PSWindowsUpdate                     {Add-WUServiceManager, Enable-WURemoting, Get-WindowsUpdate, Get-WUApiVersion...}
Manifest   1.5.2.2    PSWindowsUpdate                     {Add-WUOfflineSync, Get-WUHistory, Get-WUInstall, Get-WUInstallerStatus...}
Script     1.0.14     SpeculationControl                  Get-SpeculationControlSettings
Script     2.2.16     VSSetup                             {Get-VSSetupInstance, Select-VSSetupInstance}
Binary     1.0.58.... VSSetup                             {Get-VSSetupInstance, Select-VSSetupInstance}

    Directory: C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Manifest   1.0.1.0    ActiveDirectory                     {Add-ADCentralAccessPolicyMember, Add-ADComputerServiceAccount, Add-ADDomainControllerPasswordReplicationPolicy, Add-ADFineGrainedPasswordPolicySubject...}
Manifest   1.0.0.0    AppBackgroundTask                   {Disable-AppBackgroundTaskDiagnosticLog, Enable-AppBackgroundTaskDiagnosticLog, Set-AppBackgroundTaskResourcePolicy, Unregister-AppBackgroundTask...}
Manifest   2.0.0.0    AppLocker                           {Get-AppLockerFileInformation, Get-AppLockerPolicy, New-AppLockerPolicy, Set-AppLockerPolicy...}
Manifest   1.0.0.0    AppvClient                          {Add-AppvClientConnectionGroup, Add-AppvClientPackage, Add-AppvPublishingServer, Disable-Appv...}
Manifest   2.0.1.0    Appx                                {Add-AppxPackage, Get-AppxPackage, Get-AppxPackageManifest, Remove-AppxPackage...}
Script     1.0.0.0    AssignedAccess                      {Clear-AssignedAccess, Get-AssignedAccess, Set-AssignedAccess}
Manifest   1.0        BestPractices                       {Get-BpaModel, Get-BpaResult, Invoke-BpaModel, Set-BpaResult}
Manifest   1.0.0.0    BitLocker                           {Unlock-BitLocker, Suspend-BitLocker, Resume-BitLocker, Remove-BitLockerKeyProtector...}
Manifest   2.0.0.0    BitsTransfer                        {Add-BitsFile, Complete-BitsTransfer, Get-BitsTransfer, Remove-BitsTransfer...}
Manifest   1.0.0.0    BranchCache                         {Add-BCDataCacheExtension, Clear-BCCache, Disable-BC, Disable-BCDowngrading...}
Manifest   1.0.0.0    CimCmdlets                          {Get-CimAssociatedInstance, Get-CimClass, Get-CimInstance, Get-CimSession...}
Binary     2.0.0.0    ClusterAwareUpdating                {Get-CauPlugin, Register-CauPlugin, Unregister-CauPlugin, Invoke-CauScan...}
Manifest   1.0        ConfigCI                            {Get-SystemDriver, New-CIPolicyRule, New-CIPolicy, Get-CIPolicy...}
Manifest   1.0        ConfigDefender                      {Get-MpPreference, Set-MpPreference, Add-MpPreference, Remove-MpPreference...}
Manifest   1.0        Defender                            {Get-MpPreference, Set-MpPreference, Add-MpPreference, Remove-MpPreference...}
Manifest   1.0.2.0    DeliveryOptimization                {Delete-DeliveryOptimizationCache, Get-DeliveryOptimizationStatus, Set-DeliveryOptimizationStatus, Get-DeliveryOptimizationPerfSnap...}
Manifest   1.0        DFSN                                {Get-DfsnRoot, Remove-DfsnRoot, Set-DfsnRoot, New-DfsnRoot...}
Binary     2.0.0.0    DFSR                                {New-DfsReplicationGroup, Get-DfsReplicationGroup, Set-DfsReplicationGroup, Remove-DfsReplicationGroup...}
Manifest   2.0.0.0    DhcpServer                          {Add-DhcpServerInDC, Add-DhcpServerv4Class, Add-DhcpServerv4ExclusionRange, Add-DhcpServerv4Failover...}
Manifest   1.0.0.0    DirectAccessClientComponents        {Disable-DAManualEntryPointSelection, Enable-DAManualEntryPointSelection, Get-DAClientExperienceConfiguration, Get-DAEntryPointTableItem...}
Script     3.0        Dism                                {Add-AppxProvisionedPackage, Add-WindowsDriver, Add-WindowsCapability, Add-WindowsImage...}
Manifest   1.0.0.0    DnsClient                           {Resolve-DnsName, Clear-DnsClientCache, Get-DnsClient, Get-DnsClientCache...}
Manifest   2.0.0.0    DnsServer                           {Add-DnsServerConditionalForwarderZone, Add-DnsServerDirectoryPartition, Add-DnsServerForwarder, Add-DnsServerPrimaryZone...}
Manifest   1.0.0.0    EventTracingManagement              {Start-EtwTraceSession, New-EtwTraceSession, Get-EtwTraceSession, Update-EtwTraceSession...}
Manifest   2.0.0.0    FailoverClusters                    {Add-ClusterCheckpoint, Add-ClusterDisk, Add-ClusterFileServerRole, Add-ClusterGenericApplicationRole...}
Manifest   1.0.0.0    GroupPolicy                         {Backup-GPO, Block-GPInheritance, Copy-GPO, Get-GPInheritance...}
Manifest   1.0.0.0    HgsClient                           {Get-HgsAttestationBaselinePolicy, Get-HgsClientConfiguration, Test-HgsClientConfiguration, Set-HgsClientConfiguration...}
Manifest   1.0.0.0    HgsDiagnostics                      {New-HgsTraceTarget, Get-HgsTrace, Get-HgsTraceFileData, Test-HgsTraceTarget}
Binary     1.0.0.0    HostComputeService                  {Get-ComputeProcess, Stop-ComputeProcess}
Manifest   1.0.0.1    HostNetworkingService               {Remove-HnsNamespace, Remove-HnsEndpoint, Get-HnsEndpoint, Get-HnsNamespace...}
Binary     2.0.0.0    Hyper-V                             {Add-VMAssignableDevice, Add-VMDvdDrive, Add-VMFibreChannelHba, Add-VMGpuPartitionAdapter...}
Binary     1.1        Hyper-V                             {Add-VMDvdDrive, Add-VMFibreChannelHba, Add-VMHardDiskDrive, Add-VMMigrationNetwork...}
Script     1.1.0.0    IISAdministration                   {Get-IISAppPool, Start-IISCommitDelay, Stop-IISCommitDelay, Get-IISSite...}
Manifest   2.0.0.0    International                       {Get-WinDefaultInputMethodOverride, Set-WinDefaultInputMethodOverride, Get-WinHomeLocation, Set-WinHomeLocation...}
Manifest   2.0.0.0    IpamServer                          {Get-IpamDhcpConfigurationEvent, Remove-IpamDhcpConfigurationEvent, Get-IpamConfigurationEvent, Remove-IpamConfigurationEvent...}
Manifest   1.0.0.0    iSCSI                               {Get-IscsiTargetPortal, New-IscsiTargetPortal, Remove-IscsiTargetPortal, Update-IscsiTargetPortal...}
Manifest   2.0.0.0    IscsiTarget                         {Add-ClusteriSCSITargetServerRole, Add-IscsiVirtualDiskTargetMapping, Checkpoint-IscsiVirtualDisk, Convert-IscsiVirtualDisk...}
Script     1.0.0.0    ISE                                 {New-IseSnippet, Import-IseSnippet, Get-IseSnippet}
Manifest   1.0.0.0    Kds                                 {Add-KdsRootKey, Get-KdsRootKey, Test-KdsRootKey, Set-KdsConfiguration...}
Manifest   1.0.1.0    Microsoft.PowerShell.Archive        {Compress-Archive, Expand-Archive}
Manifest   3.0.0.0    Microsoft.PowerShell.Diagnostics    {Get-WinEvent, Get-Counter, Import-Counter, Export-Counter...}
Manifest   3.0.0.0    Microsoft.PowerShell.Host           {Start-Transcript, Stop-Transcript}
Manifest   1.0.0.0    Microsoft.PowerShell.LocalAccounts  {Add-LocalGroupMember, Disable-LocalUser, Enable-LocalUser, Get-LocalGroup...}
Manifest   3.1.0.0    Microsoft.PowerShell.Management     {Add-Content, Clear-Content, Clear-ItemProperty, Join-Path...}
Script     1.0        Microsoft.PowerShell.ODataUtils     Export-ODataEndpointProxy
Manifest   3.0.0.0    Microsoft.PowerShell.Security       {Get-Acl, Set-Acl, Get-PfxCertificate, Get-Credential...}
Manifest   3.1.0.0    Microsoft.PowerShell.Utility        {Format-List, Format-Custom, Format-Table, Format-Wide...}
Manifest   3.0.0.0    Microsoft.WSMan.Management          {Disable-WSManCredSSP, Enable-WSManCredSSP, Get-WSManCredSSP, Set-WSManQuickConfig...}
Manifest   1.0        MMAgent                             {Disable-MMAgent, Enable-MMAgent, Set-MMAgent, Get-MMAgent...}
Manifest   1.0.0.0    MsDtc                               {New-DtcDiagnosticTransaction, Complete-DtcDiagnosticTransaction, Join-DtcDiagnosticResourceManager, Receive-DtcDiagnosticTransaction...}
Manifest   2.0.0.0    NetAdapter                          {Disable-NetAdapter, Disable-NetAdapterBinding, Disable-NetAdapterChecksumOffload, Disable-NetAdapterEncapsulatedPacketTaskOffload...}
Manifest   1.0.0.0    NetConnection                       {Get-NetConnectionProfile, Set-NetConnectionProfile}
Manifest   1.0.0.0    NetDiagnostics                      Get-NetView
Manifest   1.0.0.0    NetEventPacketCapture               {New-NetEventSession, Remove-NetEventSession, Get-NetEventSession, Set-NetEventSession...}
Manifest   2.0.0.0    NetLbfo                             {Add-NetLbfoTeamMember, Add-NetLbfoTeamNic, Get-NetLbfoTeam, Get-NetLbfoTeamMember...}
Manifest   1.0        NetLldpAgent                        {Enable-NetLldpAgent, Disable-NetLldpAgent, Get-NetLldpAgent}
Manifest   1.0.0.0    NetNat                              {Get-NetNat, Get-NetNatExternalAddress, Get-NetNatStaticMapping, Get-NetNatSession...}
Manifest   2.0.0.0    NetQos                              {Get-NetQosPolicy, Set-NetQosPolicy, Remove-NetQosPolicy, New-NetQosPolicy}
Manifest   2.0.0.0    NetSecurity                         {Get-DAPolicyChange, New-NetIPsecAuthProposal, New-NetIPsecMainModeCryptoProposal, New-NetIPsecQuickModeCryptoProposal...}
Manifest   1.0.0.0    NetSwitchTeam                       {New-NetSwitchTeam, Remove-NetSwitchTeam, Get-NetSwitchTeam, Rename-NetSwitchTeam...}
Manifest   1.0.0.0    NetTCPIP                            {Get-NetIPAddress, Get-NetIPInterface, Get-NetIPv4Protocol, Get-NetIPv6Protocol...}
Manifest   1.0.0.0    NetworkConnectivityStatus           {Get-DAConnectionStatus, Get-NCSIPolicyConfiguration, Reset-NCSIPolicyConfiguration, Set-NCSIPolicyConfiguration}
Manifest   1.0.0.0    NetworkController                   {Add-NetworkControllerNode, Disable-NetworkControllerNode, Enable-NetworkControllerNode, Get-NetworkControllerCluster...}
Manifest   1.0.0.0    NetworkControllerDiagnostics        {Get-NetworkControllerDeploymentInfo, Get-NetworkControllerManagedDevices, Debug-NetworkController, Debug-NetworkControllerConfigurationState...}
Manifest   2.0.0.0    NetworkLoadBalancingClusters        {Add-NlbClusterNode, Add-NlbClusterNodeDip, Add-NlbClusterPortRule, Add-NlbClusterVip...}
Manifest   1.0.0.0    NetworkSwitchManager                {Disable-NetworkSwitchEthernetPort, Enable-NetworkSwitchEthernetPort, Get-NetworkSwitchEthernetPort, Remove-NetworkSwitchEthernetPortIPAddress...}
Manifest   1.0.0.0    NetworkTransition                   {Add-NetIPHttpsCertBinding, Disable-NetDnsTransitionConfiguration, Disable-NetIPHttpsProfile, Disable-NetNatTransitionConfiguration...}
Manifest   1.0        NFS                                 {Get-NfsMappedIdentity, Get-NfsNetgroup, Install-NfsMappingStore, New-NfsMappedIdentity...}
Manifest   1.0.0.0    PcsvDevice                          {Get-PcsvDevice, Start-PcsvDevice, Stop-PcsvDevice, Restart-PcsvDevice...}
Binary     1.0.0.0    PersistentMemory                    {Get-PmemDisk, Get-PmemPhysicalDevice, Get-PmemUnusedRegion, New-PmemDisk...}
Manifest   1.0.0.0    PKI                                 {Add-CertificateEnrollmentPolicyServer, Export-Certificate, Export-PfxCertificate, Get-CertificateAutoEnrollmentPolicy...}
Manifest   1.0.0.0    PnpDevice                           {Get-PnpDevice, Get-PnpDeviceProperty, Enable-PnpDevice, Disable-PnpDevice}
Manifest   1.1        PrintManagement                     {Add-Printer, Add-PrinterDriver, Add-PrinterPort, Get-PrintConfiguration...}
Binary     1.0.11     ProcessMitigations                  {Get-ProcessMitigation, Set-ProcessMitigation, ConvertTo-ProcessMitigationPolicy}
Script     3.0        Provisioning                        {Install-ProvisioningPackage, Export-ProvisioningPackage, Install-TrustedProvisioningCertificate, Export-Trace...}
Manifest   1.1        PSDesiredStateConfiguration         {Set-DscLocalConfigurationManager, Start-DscConfiguration, Test-DscConfiguration, Publish-DscConfiguration...}
Script     1.0.0.0    PSDiagnostics                       {Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace...}
Binary     1.1.0.0    PSScheduledJob                      {New-JobTrigger, Add-JobTrigger, Remove-JobTrigger, Get-JobTrigger...}
Manifest   2.0.0.0    PSWorkflow                          {New-PSWorkflowExecutionOption, New-PSWorkflowSession, nwsn}
Manifest   1.0.0.0    PSWorkflowUtility                   Invoke-AsWorkflow
Manifest   3.0.0.0    RemoteAccess                        {Add-DAAppServer, Add-DAClient, Add-DAClientDnsConfiguration, Add-DAEntryPoint...}
Manifest   2.0.0.0    RemoteDesktop                       {Get-RDCertificate, Set-RDCertificate, New-RDCertificate, New-RDVirtualDesktopDeployment...}
Manifest   1.0.0.0    ScheduledTasks                      {Get-ScheduledTask, Set-ScheduledTask, Register-ScheduledTask, Unregister-ScheduledTask...}
Manifest   2.0.0.0    SecureBoot                          {Confirm-SecureBootUEFI, Set-SecureBootUEFI, Get-SecureBootUEFI, Format-SecureBootUEFI...}
Script     2.0.0.0    ServerManager                       {Get-WindowsFeature, Install-WindowsFeature, Uninstall-WindowsFeature, Enable-ServerManagerStandardUserRemoting...}
Cim        1.0.0.0    ServerManagerTasks                  {Get-SMCounterSample, Get-SMPerformanceCollector, Start-SMPerformanceCollector, Stop-SMPerformanceCollector...}
Manifest   1.0.0.0    ShieldedVMDataFile                  {Import-ShieldingDataFile, New-ShieldingDataFile, New-VolumeIDQualifier, Save-VolumeSignatureCatalog...}
Manifest   1.0.0.0    ShieldedVMTemplate                  {Protect-TemplateDisk, Initialize-VMShieldingHelperVHD}
Manifest   2.0.0.0    SmbShare                            {Get-SmbShare, Remove-SmbShare, Set-SmbShare, Block-SmbShareAccess...}
Manifest   2.0.0.0    SmbWitness                          {Get-SmbWitnessClient, Move-SmbWitnessClient, gsmbw, msmbw...}
Manifest   1.0.0.0    StartLayout                         {Export-StartLayout, Import-StartLayout, Export-StartLayoutEdgeAssets, Get-StartApps}
Manifest   2.0.0.0    Storage                             {Add-InitiatorIdToMaskingSet, Add-PartitionAccessPath, Add-PhysicalDisk, Add-StorageFaultDomain...}
Manifest   1.0.0.0    StorageBusCache                     {Clear-StorageBusDisk, Disable-StorageBusCache, Disable-StorageBusDisk, Enable-StorageBusCache...}
Binary     1.0.0.0    StorageMigrationService             {Get-SmsInventory, New-SmsInventory, Remove-SmsInventory, Set-SmsInventory...}
Manifest   1.0.0.0    StorageQoS                          {Get-StorageQoSPolicy, Get-StorageQoSPolicyStore, Set-StorageQoSPolicyStore, Remove-StorageQoSPolicy...}
Manifest   1.0        StorageReplica                      {Test-SRTopology, New-SRGroup, Remove-SRGroup, Set-SRGroup...}
Binary     1.0.0.0    SystemInsights                      {Add-InsightsCapability, Remove-InsightsCapability, Update-InsightsCapability, Get-InsightsCapability...}
Manifest   2.0.0.0    TLS                                 {New-TlsSessionTicketKey, Enable-TlsSessionTicketKey, Disable-TlsSessionTicketKey, Export-TlsSessionTicketKey...}
Manifest   1.0.0.0    TroubleshootingPack                 {Get-TroubleshootingPack, Invoke-TroubleshootingPack}
Manifest   2.0.0.0    TrustedPlatformModule               {Get-Tpm, Initialize-Tpm, Clear-Tpm, Unblock-Tpm...}
Binary     2.1.639.0  UEV                                 {Clear-UevConfiguration, Clear-UevAppxPackage, Restore-UevBackup, Set-UevTemplateProfile...}
Manifest   2.0.0.0    UpdateServices                      {Add-WsusComputer, Approve-WsusUpdate, Deny-WsusUpdate, Get-WsusClassification...}
Manifest   2.0.0.0    VpnClient                           {Add-VpnConnection, Set-VpnConnection, Remove-VpnConnection, Get-VpnConnection...}
Manifest   1.0.0.0    Wdac                                {Get-OdbcDriver, Set-OdbcDriver, Get-OdbcDsn, Add-OdbcDsn...}
Manifest   1.0.0.0    WebAdministration                   {Start-WebCommitDelay, Stop-WebCommitDelay, Get-WebConfigurationLock, Remove-WebConfigurationLock...}
Manifest   2.0.0.0    Whea                                {Get-WheaMemoryPolicy, Set-WheaMemoryPolicy}
Manifest   1.0.0.0    WindowsDeveloperLicense             {Get-WindowsDeveloperLicense, Unregister-WindowsDeveloperLicense, Show-WindowsDeveloperLicenseRegistration}
Script     1.0        WindowsErrorReporting               {Enable-WindowsErrorReporting, Disable-WindowsErrorReporting, Get-WindowsErrorReporting}
Manifest   1.0.0.0    WindowsSearch                       {Get-WindowsSearchSetting, Set-WindowsSearchSetting}
Manifest   1.0.0.0    WindowsUpdate                       Get-WindowsUpdateLog
Manifest   1.0.0.2    WindowsUpdateProvider               {Get-WUAVersion, Get-WULastInstallationDate, Get-WULastScanSuccessDate, Get-WUIsPendingReboot...}

    Directory: C:\Program Files\Intel\Wired Networking

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Binary     25.1.0.11  IntelNetCmdlets                     {Get-IntelNetAdapter, Get-IntelNetAdapterSetting, Set-IntelNetAdapterSetting, Get-IntelNetAdapterProfileSettings...}

    Directory: C:\Program Files\Microsoft Message Analyzer\PowerShell

ModuleType Version    Name                                ExportedCommands
---------- -------    ----                                ----------------
Script     1.1.0.0    PEF                                 {Invoke-PefCustomAction, Save-PefDataCollection, Add-PefMessageSource, Add-PefProviderConfig...}

Debug output

C:\> $DebugPreference='Continue'
C:\> $lb = Get-AzLoadBalancer -Name mytest-lb -ResourceGroupName mytest-rg
DEBUG: 17:04:17 - GetAzureRmLoadBalancer begin processing with ParameterSet 'NoExpand'.
DEBUG: 17:04:17 - using account id 'joe.user@myfirm.com'...
DEBUG: [Common.Authentication]: Authenticating using Account: 'joe.user@myfirm.com', environment: 'AzureCloud', tenant: '***TENANT-ID-REDACTED***'
DEBUG: SharedTokenCacheCredential.GetToken invoked. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId:
DEBUG: SharedTokenCacheCredential.GetToken succeeded. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId:  ExpiresOn: 2021-02-09T16:59:28.0000000+00:00
DEBUG: SharedTokenCacheCredential.GetToken invoked. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId:
DEBUG: SharedTokenCacheCredential.GetToken succeeded. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId:  ExpiresOn: 2021-02-09T16:59:28.0000000+00:00
DEBUG: [Common.Authentication]: Received token with LoginType 'User', Tenant: '***TENANT-ID-REDACTED***', UserId: 'joe.user@myfirm.com'
DEBUG: ============================ HTTP REQUEST ============================

HTTP Method:
GET

Absolute Uri:
https://management.azure.com/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb?api-version=2020-08-01

Headers:
x-ms-client-request-id        : 4c89db88-dccb-45df-9088-f985f7b431c8
accept-language               : en-US

Body:

DEBUG: ============================ HTTP RESPONSE ============================

Status Code:
OK

Headers:
Pragma                        : no-cache
x-ms-request-id               : c341702a-20ec-4aee-8f0f-7626a41ba7ef
x-ms-correlation-request-id   : 1cada05a-dc8f-45aa-a123-9d75680a0a16
x-ms-arm-service-request-id   : b6d477c5-7673-4dcd-8c2a-6ea85c3e027d
Strict-Transport-Security     : max-age=31536000; includeSubDomains
Cache-Control                 : no-cache
ETag                          : W/"117d3ce9-cb52-48ef-ba22-be1226f1edb2"
Server                        : Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0
x-ms-ratelimit-remaining-subscription-reads: 11998
x-ms-routing-request-id       : GERMANYNORTH:20210209T160353Z:1cada05a-dc8f-45aa-a123-9d75680a0a16
X-Content-Type-Options        : nosniff
Date                          : Tue, 09 Feb 2021 16:03:53 GMT

Body:
{
  "name": "mytest-lb",
  "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb",
  "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
  "type": "Microsoft.Network/loadBalancers",
  "location": "westeurope",
  "tags": {
    "resourceType": "Service Fabric",
    "clusterName": "mytest"
  },
  "properties": {
    "provisioningState": "Succeeded",
    "resourceGuid": "2f1dc944-01db-4e05-9a77-e928d497d99b",
    "frontendIPConfigurations": [
      {
        "name": "LoadBalancerIPConfig",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "type": "Microsoft.Network/loadBalancers/frontendIPConfigurations",
        "properties": {
          "provisioningState": "Succeeded",
          "privateIPAllocationMethod": "Dynamic",
          "publicIPAddress": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/publicIPAddresses/mytest-lb-ip"
          },
          "loadBalancingRules": [
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule"
            },
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule"
            }
          ],
          "inboundNatRules": [
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.0"
            },
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.1"
            },
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.2"
            }
          ],
          "inboundNatPools": [
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatPools/RdpNatPool"
            }
          ],
          "privateIPAddressVersion": "IPv4"
        }
      }
    ],
    "backendAddressPools": [
      {
        "name": "LoadBalancerBEAddressPool",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "properties": {
          "provisioningState": "Succeeded",
          "backendIPConfigurations": [
            {
              "id":
"/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/0/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr
imary-nic-0"
            },
            {
              "id":
"/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/1/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr
imary-nic-0"
            },
            {
              "id":
"/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/2/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr
imary-nic-0"
            }
          ],
          "loadBalancingRules": [
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule"
            },
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule"
            }
          ]
        },
        "type": "Microsoft.Network/loadBalancers/backendAddressPools"
      }
    ],
    "loadBalancingRules": [
      {
        "name": "FabricTcpGatewayRule",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "type": "Microsoft.Network/loadBalancers/loadBalancingRules",
        "properties": {
          "provisioningState": "Succeeded",
          "frontendIPConfiguration": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
          },
          "frontendPort": 19000,
          "backendPort": 19000,
          "enableFloatingIP": false,
          "idleTimeoutInMinutes": 5,
          "protocol": "Tcp",
          "enableDestinationServiceEndpoint": false,
          "enableTcpReset": false,
          "allowBackendPortConflict": false,
          "loadDistribution": "Default",
          "backendAddressPool": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool"
          },
          "probe": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe"
          }
        }
      },
      {
        "name": "FabricHttpGatewayRule",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "type": "Microsoft.Network/loadBalancers/loadBalancingRules",
        "properties": {
          "provisioningState": "Succeeded",
          "frontendIPConfiguration": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
          },
          "frontendPort": 19080,
          "backendPort": 19080,
          "enableFloatingIP": false,
          "idleTimeoutInMinutes": 5,
          "protocol": "Tcp",
          "enableDestinationServiceEndpoint": false,
          "enableTcpReset": false,
          "allowBackendPortConflict": false,
          "loadDistribution": "Default",
          "backendAddressPool": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool"
          },
          "probe": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricHttpGatewayProbe"
          }
        }
      }
    ],
    "probes": [
      {
        "name": "FabricTcpGatewayProbe",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "properties": {
          "provisioningState": "Succeeded",
          "protocol": "Tcp",
          "port": 19000,
          "intervalInSeconds": 5,
          "numberOfProbes": 2,
          "loadBalancingRules": [
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule"
            }
          ]
        },
        "type": "Microsoft.Network/loadBalancers/probes"
      },
      {
        "name": "FabricHttpGatewayProbe",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricHttpGatewayProbe",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "properties": {
          "provisioningState": "Succeeded",
          "protocol": "Tcp",
          "port": 19080,
          "intervalInSeconds": 5,
          "numberOfProbes": 2,
          "loadBalancingRules": [
            {
              "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule"
            }
          ]
        },
        "type": "Microsoft.Network/loadBalancers/probes"
      }
    ],
    "inboundNatRules": [
      {
        "name": "RdpNatPool.0",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.0",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "type": "Microsoft.Network/loadBalancers/inboundNatRules",
        "properties": {
          "provisioningState": "Succeeded",
          "frontendIPConfiguration": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
          },
          "frontendPort": 3389,
          "backendPort": 3389,
          "enableFloatingIP": false,
          "idleTimeoutInMinutes": 4,
          "protocol": "Tcp",
          "enableDestinationServiceEndpoint": false,
          "enableTcpReset": false,
          "allowBackendPortConflict": false,
          "backendIPConfiguration": {
            "id":
"/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/0/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr
imary-nic-0"
          }
        }
      },
      {
        "name": "RdpNatPool.1",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.1",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "type": "Microsoft.Network/loadBalancers/inboundNatRules",
        "properties": {
          "provisioningState": "Succeeded",
          "frontendIPConfiguration": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
          },
          "frontendPort": 3390,
          "backendPort": 3389,
          "enableFloatingIP": false,
          "idleTimeoutInMinutes": 4,
          "protocol": "Tcp",
          "enableDestinationServiceEndpoint": false,
          "enableTcpReset": false,
          "allowBackendPortConflict": false,
          "backendIPConfiguration": {
            "id":
"/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/1/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr
imary-nic-0"
          }
        }
      },
      {
        "name": "RdpNatPool.2",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.2",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "type": "Microsoft.Network/loadBalancers/inboundNatRules",
        "properties": {
          "provisioningState": "Succeeded",
          "frontendIPConfiguration": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
          },
          "frontendPort": 3391,
          "backendPort": 3389,
          "enableFloatingIP": false,
          "idleTimeoutInMinutes": 4,
          "protocol": "Tcp",
          "enableDestinationServiceEndpoint": false,
          "enableTcpReset": false,
          "allowBackendPortConflict": false,
          "backendIPConfiguration": {
            "id":
"/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/2/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr
imary-nic-0"
          }
        }
      }
    ],
    "inboundNatPools": [
      {
        "name": "RdpNatPool",
        "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatPools/RdpNatPool",
        "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"",
        "properties": {
          "provisioningState": "Succeeded",
          "frontendPortRangeStart": 3389,
          "frontendPortRangeEnd": 4500,
          "backendPort": 3389,
          "protocol": "Tcp",
          "idleTimeoutInMinutes": 4,
          "enableFloatingIP": false,
          "enableDestinationServiceEndpoint": false,
          "enableTcpReset": false,
          "allowBackendPortConflict": false,
          "frontendIPConfiguration": {
            "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
          }
        },
        "type": "Microsoft.Network/loadBalancers/inboundNatPools"
      }
    ]
  },
  "sku": {
    "name": "Basic",
    "tier": "Regional"
  }
}

DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancer; IsSuccess - True; Duration - 00:00:00.3291178
DEBUG: Finish sending metric.
DEBUG: 17:04:18 - GetAzureRmLoadBalancer end processing.
C:\> $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl *
DEBUG: 17:04:29 - GetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'.
DEBUG: 17:04:29 - using account id 'joe.user@myfirm.com'...

Protocol               : Tcp
Port                   : 19000
IntervalInSeconds      : 5
NumberOfProbes         : 2
RequestPath            :
ProvisioningState      : Succeeded
LoadBalancingRules     : {/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule}
LoadBalancingRulesText : [
                           {
                             "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule"
                           }
                         ]
Name                   : FabricTcpGatewayProbe
Etag                   : W/"117d3ce9-cb52-48ef-ba22-be1226f1edb2"
Id                     : /subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe

DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0055054
DEBUG: Finish sending metric.
DEBUG: 17:04:30 - GetAzureRmLoadBalancerProbeConfigCommand end processing.

C:\> $lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl *
DEBUG: 17:04:30 - GetAzureRmLoadBalancerRuleConfigCommand begin processing with ParameterSet '__AllParameterSets'.
DEBUG: 17:04:30 - using account id 'joe.user@myfirm.com'...

Protocol                    : Tcp
LoadDistribution            : Default
FrontendPort                : 19000
BackendPort                 : 19000
IdleTimeoutInMinutes        : 5
EnableFloatingIP            : False
EnableTcpReset              : False
DisableOutboundSNAT         :
ProvisioningState           : Succeeded
FrontendIPConfiguration     : Microsoft.Azure.Commands.Network.Models.PSResourceId
BackendAddressPool          : Microsoft.Azure.Commands.Network.Models.PSResourceId
Probe                       : Microsoft.Azure.Commands.Network.Models.PSResourceId
FrontendIPConfigurationText : {
                                "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
                              }
BackendAddressPoolText      : {
                                "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool"
                              }
ProbeText                   : {
                                "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe"
                              }
Name                        : FabricTcpGatewayRule
Etag                        : W/"117d3ce9-cb52-48ef-ba22-be1226f1edb2"
Id                          : /subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule

DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerRuleConfig; IsSuccess - True; Duration - 00:00:00.0069948
DEBUG: Finish sending metric.
DEBUG: 17:04:31 - GetAzureRmLoadBalancerRuleConfigCommand end processing.

C:\> # Change a property of the Probe.
C:\> $lb | Set-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe -Port 19000 -Protocol Tcp -IntervalInSeconds 5 -ProbeCount 3 | Out-Null
DEBUG: 17:04:37 - SetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'.
DEBUG: 17:04:37 - using account id 'joe.user@myfirm.com'...
DEBUG: AzureQoSEvent: CommandName - Set-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0016760
DEBUG: Finish sending metric.
DEBUG: 17:04:38 - SetAzureRmLoadBalancerProbeConfigCommand end processing.
C:\> # Observe that the Id of the Probe is now set to null.
C:\> $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl *
DEBUG: 17:04:38 - GetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'.
DEBUG: 17:04:38 - using account id 'joe.user@myfirm.com'...

Protocol               : Tcp
Port                   : 19000
IntervalInSeconds      : 5
NumberOfProbes         : 3
RequestPath            :
ProvisioningState      :
LoadBalancingRules     :
LoadBalancingRulesText : null
Name                   : FabricTcpGatewayProbe
Etag                   :
Id                     :

DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0034329
DEBUG: Finish sending metric.
DEBUG: 17:04:38 - GetAzureRmLoadBalancerProbeConfigCommand end processing.

C:\>
C:\> # Now change a property of the Rule, taking care to preserve the reference to the correct Probe.
C:\> $probe = $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe
DEBUG: 17:04:53 - GetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'.
DEBUG: 17:04:53 - using account id 'joe.user@myfirm.com'...
DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0014567
DEBUG: Finish sending metric.
DEBUG: 17:04:54 - GetAzureRmLoadBalancerProbeConfigCommand end processing.
C:\> $lb | Set-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule -Protocol Tcp -FrontendPort 19000 -BackendPort 19000 -IdleTimeoutInMinutes 6 -FrontendIpConfiguration $lb.FrontendIpConfigurations[0] -BackendAddressPool $lb.BackendAddressPools[0] -Probe $probe | Out-Null
DEBUG: 17:04:54 - SetAzureRmLoadBalancerRuleConfigCommand begin processing with ParameterSet 'SetByResource'.
DEBUG: 17:04:54 - using account id 'joe.user@myfirm.com'...
DEBUG: AzureQoSEvent: CommandName - Set-AzLoadBalancerRuleConfig; IsSuccess - True; Duration - 00:00:00.0017594
DEBUG: Finish sending metric.
DEBUG: 17:04:55 - SetAzureRmLoadBalancerRuleConfigCommand end processing.
C:\>
C:\> # Observe that Probe is now set to null.
C:\> $lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl *
DEBUG: 17:04:59 - GetAzureRmLoadBalancerRuleConfigCommand begin processing with ParameterSet '__AllParameterSets'.
DEBUG: 17:04:59 - using account id 'joe.user@myfirm.com'...

Protocol                    : Tcp
LoadDistribution            :
FrontendPort                : 19000
BackendPort                 : 19000
IdleTimeoutInMinutes        : 6
EnableFloatingIP            : False
EnableTcpReset              : False
DisableOutboundSNAT         : False
ProvisioningState           :
FrontendIPConfiguration     : Microsoft.Azure.Commands.Network.Models.PSResourceId
BackendAddressPool          : Microsoft.Azure.Commands.Network.Models.PSResourceId
Probe                       :
FrontendIPConfigurationText : {
                                "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig"
                              }
BackendAddressPoolText      : {
                                "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool"
                              }
ProbeText                   : null
Name                        : FabricTcpGatewayRule
Etag                        :
Id                          :

DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerRuleConfig; IsSuccess - True; Duration - 00:00:00.0053676
DEBUG: Finish sending metric.
DEBUG: 17:05:00 - GetAzureRmLoadBalancerRuleConfigCommand end processing.

Error output

C:\> Resolve-AzError
DEBUG: 17:10:09 - ResolveError begin processing with ParameterSet 'AnyErrorParameterSet'.
DEBUG: 17:10:09 - using account id 'joe.user@myfirm.com'...
WARNING: Upcoming breaking changes in the cmdlet 'Resolve-AzError' :
The `Resolve-Error` alias will be removed in a future release.  Please change any scripts that use this alias to use `Resolve-AzError` instead.
Note : Go to https://aka.ms/azps-changewarnings for steps to suppress this breaking change warning, and other information on breaking changes in Azure PowerShell.

The Azure PowerShell team is listening, please let us know how we are doing: https://aka.ms/azpssurvey?Q_CHL=ERROR.

DEBUG: AzureQoSEvent: CommandName - Resolve-AzError; IsSuccess - True; Duration - 00:00:00.0117746
DEBUG: Finish sending metric.
DEBUG: 17:10:09 - ResolveError end processing.
ghost commented 3 years ago

Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @Wmengmsft, @MehaKaushik, @shurd, @anfeldma-ms

ghost commented 3 years ago

Thanks for the feedback! We are routing this to the appropriate team for follow-up. cc @slbsupportgithub.

Issue Details
## Description The `Set-AzLoadBalancer*Config` cmdlets update existing objects in a Load Balancer configuration by creating a new object instance (such as a `PSProbe` object), filling it with properties from cmdlet parameters and replacing the existing object in the appropriate collection of the Load Balancer object. One property of the created objects which is left unset is the `Id` property. This is in contrast to the `Add-AzLoadBalancer*Config` cmdlet, which gives the newly created objects a proper Id value. The resulting objects, after a call to `Set-AzLoadBalancer*Config`, do not have their `Id` set to anything. This makes them unusable to be passed as parameters when creating/updating other Load Balancer objects. For example, a Rule object references a Probe object. If a Probe object is updated using `Set-AzLoadBalancerProbeConfig` and that Probe object is then passed as value of the `-Probe` parameter of `Set-AzLoadBalancerRuleConfig`, the latter cmdlet will **clear** the Probe property of the Rule object instead of setting it to the provided Probe. The `Set-AzLoadBalancer*Config` cmdlets should copy the existing `Id` property values. ## Steps to reproduce ```powershell # Start with an existing LoadBalancer, which contains a Rule named "FabricTcpGatewayRule", which references a Probe named "FabricTcpGatewayProbe". $lb = Get-AzLoadBalancer -Name mytest-lb -ResourceGroupName mytest-rg $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl * $lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl * # Change a property of the Probe. $lb | Set-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe -Port 19000 -Protocol Tcp -IntervalInSeconds 5 -ProbeCount 3 | Out-Null # Observe that the Id of the Probe is now set to null. $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl * # Now change a property of the Rule, taking care to preserve the reference to the correct Probe. $probe = $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe $lb | Set-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule -Protocol Tcp -FrontendPort 19000 -BackendPort 19000 -IdleTimeoutInMinutes 6 -FrontendIpConfiguration $lb.FrontendIpConfigurations[0] -BackendAddressPool $lb.BackendAddressPools[0] -Probe $probe | Out-Null # Observe that Probe is now set to null. $lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl * ``` ## Environment data ``` Name Value ---- ----- PSVersion 5.1.18362.1171 PSEdition Desktop PSCompatibleVersions {1.0, 2.0, 3.0, 4.0...} BuildVersion 10.0.18362.1171 CLRVersion 4.0.30319.42000 WSManStackVersion 3.0 PSRemotingProtocolVersion 2.3 SerializationVersion 1.1.0.1 ``` ## Module versions ```powershell Directory: C:\Program Files\WindowsPowerShell\Modules ModuleType Version Name ExportedCommands ---------- ------- ---- ---------------- Binary 4.0.0.0 AWSPowerShell {Clear-AWSHistory, Set-AWSHistoryConfiguration, Initialize-AWSDefaultConfiguration, Clear-AWSDefaultConfiguration...} Script 2.2.5 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...} Script 2.2.4 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...} Script 2.2.1 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...} Script 1.6.4 Az.Accounts {Disable-AzDataCollection, Disable-AzContextAutosave, Enable-AzDataCollection, Enable-AzContextAutosave...} Script 1.1.1 Az.Advisor {Get-AzAdvisorRecommendation, Enable-AzAdvisorRecommendation, Disable-AzAdvisorRecommendation, Get-AzAdvisorConfiguration...} Script 1.1.0 Az.Advisor {Get-AzAdvisorRecommendation, Enable-AzAdvisorRecommendation, Disable-AzAdvisorRecommendation, Get-AzAdvisorConfiguration...} Script 2.0.2 Az.Aks {Get-AzAksCluster, New-AzAksCluster, Remove-AzAksCluster, Import-AzAksCredential...} Script 2.0.1 Az.Aks {Get-AzAksCluster, New-AzAksCluster, Remove-AzAksCluster, Import-AzAksCredential...} Script 1.2.0 Az.Aks {Get-AzAksCluster, New-AzAksCluster, Remove-AzAksCluster, Import-AzAksCredential...} Script 1.0.2 Az.Aks {Get-AzAks, New-AzAks, Remove-AzAks, Import-AzAksCredential...} Script 1.1.4 Az.AnalysisServices {Resume-AzAnalysisServicesServer, Suspend-AzAnalysisServicesServer, Get-AzAnalysisServicesServer, Remove-AzAnalysisServicesServer...} Script 1.1.1 Az.AnalysisServices {Resume-AzAnalysisServicesServer, Suspend-AzAnalysisServicesServer, Get-AzAnalysisServicesServer, Remove-AzAnalysisServicesServer...} Script 2.2.0 Az.ApiManagement {Add-AzApiManagementApiToGateway, Add-AzApiManagementApiToProduct, Add-AzApiManagementProductToGroup, Add-AzApiManagementRegion...} Script 2.1.0 Az.ApiManagement {Add-AzApiManagementApiToGateway, Add-AzApiManagementApiToProduct, Add-AzApiManagementProductToGroup, Add-AzApiManagementRegion...} Script 1.3.2 Az.ApiManagement {Add-AzApiManagementApiToProduct, Add-AzApiManagementProductToGroup, Add-AzApiManagementRegion, Add-AzApiManagementUserToGroup...} Script 1.0.0 Az.AppConfiguration {Get-AzAppConfigurationStore, Get-AzAppConfigurationStoreKey, New-AzAppConfigurationStore, New-AzAppConfigurationStoreKey...} Script 1.1.0 Az.ApplicationInsights {Get-AzApplicationInsights, New-AzApplicationInsights, Remove-AzApplicationInsights, Update-AzApplicationInsights...} Script 1.0.2 Az.ApplicationInsights {Get-AzApplicationInsights, New-AzApplicationInsights, Remove-AzApplicationInsights, Set-AzApplicationInsightsPricingPlan...} Script 1.4.3 Az.Automation {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...} Script 1.4.2 Az.Automation {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...} Script 1.4.0 Az.Automation {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...} Script 1.3.4 Az.Automation {Get-AzAutomationHybridWorkerGroup, Remove-AzAutomationHybridWorkerGroup, Get-AzAutomationJobOutputRecord, Import-AzAutomationDscNodeConfiguration...} Script 3.1.0 Az.Batch {Remove-AzBatchAccount, Get-AzBatchAccount, Get-AzBatchAccountKey, New-AzBatchAccount...} Script 2.0.1 Az.Batch {Remove-AzBatchAccount, Get-AzBatchAccount, Get-AzBatchAccountKey, New-AzBatchAccount...} Script 2.0.0 Az.Billing {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...} Script 1.0.3 Az.Billing {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...} Script 1.0.1 Az.Billing {Get-AzBillingInvoice, Get-AzBillingPeriod, Get-AzEnrollmentAccount, Get-AzConsumptionBudget...} Script 1.6.0 Az.Cdn {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...} Script 1.4.3 Az.Cdn {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...} Script 1.4.0 Az.Cdn {Get-AzCdnProfile, Get-AzCdnProfileSsoUrl, New-AzCdnProfile, Remove-AzCdnProfile...} Script 1.8.0 Az.CognitiveServices {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSku, Get-AzCognitiveServicesAccountType...} Script 1.5.1 Az.CognitiveServices {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSku, Get-AzCognitiveServicesAccountType...} Script 1.2.1 Az.CognitiveServices {Get-AzCognitiveServicesAccount, Get-AzCognitiveServicesAccountKey, Get-AzCognitiveServicesAccountSku, Get-AzCognitiveServicesAccountType...} Script 4.9.0 Az.Compute {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...} Script 4.8.0 Az.Compute {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...} Script 4.6.0 Az.Compute {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...} Script 4.3.0 Az.Compute {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...} Script 3.0.0 Az.Compute {Remove-AzAvailabilitySet, Get-AzAvailabilitySet, New-AzAvailabilitySet, Update-AzAvailabilitySet...} Script 1.0.3 Az.ContainerInstance {New-AzContainerGroup, Get-AzContainerGroup, Remove-AzContainerGroup, Get-AzContainerInstanceLog} Script 1.0.1 Az.ContainerInstance {New-AzContainerGroup, Get-AzContainerGroup, Remove-AzContainerGroup, Get-AzContainerInstanceLog} Script 2.2.0 Az.ContainerRegistry {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...} Script 2.1.0 Az.ContainerRegistry {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...} Script 2.0.0 Az.ContainerRegistry {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...} Script 1.1.1 Az.ContainerRegistry {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...} Script 1.1.0 Az.ContainerRegistry {New-AzContainerRegistry, Get-AzContainerRegistry, Update-AzContainerRegistry, Remove-AzContainerRegistry...} Script 1.0.0 Az.CosmosDB {Get-AzCosmosDBSqlContainer, Get-AzCosmosDBSqlContainerThroughput, Get-AzCosmosDBSqlDatabase, Get-AzCosmosDBSqlDatabaseThroughput...} Script 1.1.0 Az.DataBoxEdge {Get-AzDataBoxEdgeJob, Get-AzDataBoxEdgeDevice, Invoke-AzDataBoxEdgeDevice, New-AzDataBoxEdgeDevice...} Script 1.1.0 Az.Databricks {Get-AzDatabricksVNetPeering, Get-AzDatabricksWorkspace, New-AzDatabricksVNetPeering, New-AzDatabricksWorkspace...} Script 1.0.2 Az.Databricks {Get-AzDatabricksVNetPeering, Get-AzDatabricksWorkspace, New-AzDatabricksVNetPeering, New-AzDatabricksWorkspace...} Script 1.0.1 Az.Databricks {Get-AzDatabricksVNetPeering, Get-AzDatabricksWorkspace, New-AzDatabricksVNetPeering, New-AzDatabricksWorkspace...} Script 1.11.3 Az.DataFactory {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...} Script 1.11.1 Az.DataFactory {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...} Script 1.10.0 Az.DataFactory {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...} Script 1.4.1 Az.DataFactory {Set-AzDataFactoryV2, Update-AzDataFactoryV2, Get-AzDataFactoryV2, Remove-AzDataFactoryV2...} Script 1.0.2 Az.DataLakeAnalytics {Get-AzDataLakeAnalyticsDataSource, New-AzDataLakeAnalyticsCatalogCredential, Remove-AzDataLakeAnalyticsCatalogCredential, Set-AzDataLakeAnalyticsCatalogCredential...} Script 1.0.1 Az.DataLakeAnalytics {Get-AzDataLakeAnalyticsDataSource, New-AzDataLakeAnalyticsCatalogCredential, Remove-AzDataLakeAnalyticsCatalogCredential, Set-AzDataLakeAnalyticsCatalogCredential...} Script 1.3.0 Az.DataLakeStore {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...} Script 1.2.8 Az.DataLakeStore {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...} Script 1.2.4 Az.DataLakeStore {Get-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreTrustedIdProvider, Remove-AzDataLakeStoreFirewallRule, Set-AzDataLakeStoreTrustedIdProvider...} Script 1.0.0 Az.DataShare {New-AzDataShareAccount, Get-AzDataShareAccount, Remove-AzDataShareAccount, New-AzDataShare...} Script 1.1.0 Az.DeploymentManager {Get-AzDeploymentManagerArtifactSource, New-AzDeploymentManagerArtifactSource, Set-AzDeploymentManagerArtifactSource, Remove-AzDeploymentManagerArtifactSource...} Script 1.0.1 Az.DeploymentManager {Get-AzDeploymentManagerArtifactSource, New-AzDeploymentManagerArtifactSource, Set-AzDeploymentManagerArtifactSource, Remove-AzDeploymentManagerArtifactSource...} Script 2.1.1 Az.DesktopVirtualization {Disconnect-AzWvdUserSession, Expand-AzWvdMsixImage, Get-AzWvdApplication, Get-AzWvdApplicationGroup...} Script 2.0.1 Az.DesktopVirtualization {Disconnect-AzWvdUserSession, Expand-AzWvdMsixImage, Get-AzWvdApplication, Get-AzWvdApplicationGroup...} Script 1.0.0 Az.DesktopVirtualization {Disconnect-AzWvdUserSession, Get-AzWvdApplication, Get-AzWvdApplicationGroup, Get-AzWvdDesktop...} Script 1.0.2 Az.DevTestLabs {Get-AzDtlAllowedVMSizesPolicy, Get-AzDtlAutoShutdownPolicy, Get-AzDtlAutoStartPolicy, Get-AzDtlVMsPerLabPolicy...} Script 1.0.0 Az.DevTestLabs {Get-AzDtlAllowedVMSizesPolicy, Get-AzDtlAutoShutdownPolicy, Get-AzDtlAutoStartPolicy, Get-AzDtlVMsPerLabPolicy...} Script 1.1.2 Az.Dns {Get-AzDnsRecordSet, New-AzDnsRecordConfig, Remove-AzDnsRecordSet, Set-AzDnsRecordSet...} Script 1.1.1 Az.Dns {Get-AzDnsRecordSet, New-AzDnsRecordConfig, Remove-AzDnsRecordSet, Set-AzDnsRecordSet...} Script 1.3.0 Az.EventGrid {New-AzEventGridTopic, Get-AzEventGridTopic, Set-AzEventGridTopic, New-AzEventGridTopicKey...} Script 1.2.2 Az.EventGrid {New-AzEventGridTopic, Get-AzEventGridTopic, Set-AzEventGridTopic, New-AzEventGridTopicKey...} Script 1.7.1 Az.EventHub {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...} Script 1.5.0 Az.EventHub {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...} Script 1.4.0 Az.EventHub {New-AzEventHubNamespace, Get-AzEventHubNamespace, Set-AzEventHubNamespace, Remove-AzEventHubNamespace...} Script 1.7.0 Az.FrontDoor {New-AzFrontDoor, Get-AzFrontDoor, Set-AzFrontDoor, Remove-AzFrontDoor...} Script 1.6.1 Az.FrontDoor {New-AzFrontDoor, Get-AzFrontDoor, Set-AzFrontDoor, Remove-AzFrontDoor...} Script 1.1.2 Az.FrontDoor {New-AzFrontDoor, Get-AzFrontDoor, Set-AzFrontDoor, Remove-AzFrontDoor...} Script 2.0.0 Az.Functions {Get-AzFunctionApp, Get-AzFunctionAppAvailableLocation, Get-AzFunctionAppPlan, Get-AzFunctionAppSetting...} Script 1.0.1 Az.Functions {Get-AzFunctionApp, Get-AzFunctionAppAvailableLocation, Get-AzFunctionAppPlan, Get-AzFunctionAppSetting...} Script 4.2.0 Az.HDInsight {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...} Script 4.1.1 Az.HDInsight {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...} Script 4.1.0 Az.HDInsight {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...} Script 3.5.0 Az.HDInsight {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...} Script 3.0.0 Az.HDInsight {Get-AzHDInsightJob, New-AzHDInsightSqoopJobDefinition, Wait-AzHDInsightJob, New-AzHDInsightStreamingMapReduceJobDefinition...} Script 1.2.0 Az.HealthcareApis {New-AzHealthcareApisService, Remove-AzHealthcareApisService, Set-AzHealthcareApisService, Get-AzHealthcareApisService} Script 1.1.0 Az.HealthcareApis {New-AzHealthcareApisService, Remove-AzHealthcareApisService, Set-AzHealthcareApisService, Get-AzHealthcareApisService} Script 1.0.0 Az.HealthcareApis {New-AzHealthcareApisService, Remove-AzHealthcareApisService, Set-AzHealthcareApisService, Get-AzHealthcareApisService} Script 2.7.2 Az.IotHub {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...} Script 2.7.0 Az.IotHub {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...} Script 2.5.0 Az.IotHub {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...} Script 2.0.0 Az.IotHub {Add-AzIotHubKey, Get-AzIotHubEventHubConsumerGroup, Get-AzIotHubConnectionString, Get-AzIotHubJob...} Script 3.4.0 Az.KeyVault {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...} Script 3.3.1 Az.KeyVault {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...} Script 3.1.0 Az.KeyVault {Add-AzManagedHsmKey, Get-AzManagedHsmKey, Remove-AzManagedHsmKey, Undo-AzManagedHsmKeyRemoval...} Script 2.1.0 Az.KeyVault {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...} Script 1.3.1 Az.KeyVault {Add-AzKeyVaultCertificate, Update-AzKeyVaultCertificate, Stop-AzKeyVaultCertificateOperation, Get-AzKeyVaultCertificateOperation...} Script 1.0.1 Az.Kusto {Add-AzKustoClusterLanguageExtension, Add-AzKustoDatabasePrincipal, Get-AzKustoAttachedDatabaseConfiguration, Get-AzKustoCluster...} Script 1.0.0 Az.Kusto {Add-AzKustoClusterLanguageExtension, Add-AzKustoDatabasePrincipal, Get-AzKustoAttachedDatabaseConfiguration, Get-AzKustoCluster...} Script 1.5.0 Az.LogicApp {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...} Script 1.4.0 Az.LogicApp {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...} Script 1.3.2 Az.LogicApp {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...} Script 1.3.1 Az.LogicApp {Get-AzIntegrationAccountAgreement, Get-AzIntegrationAccountAssembly, Get-AzIntegrationAccountBatchConfiguration, Get-AzIntegrationAccountCallbackUrl...} Script 1.1.3 Az.MachineLearning {Move-AzMlCommitmentAssociation, Get-AzMlCommitmentAssociation, Get-AzMlCommitmentPlanUsageHistory, Remove-AzMlCommitmentPlan...} Script 1.1.1 Az.MachineLearning {Move-AzMlCommitmentAssociation, Get-AzMlCommitmentAssociation, Get-AzMlCommitmentPlanUsageHistory, Remove-AzMlCommitmentPlan...} Script 1.1.0 Az.Maintenance {Get-AzApplyUpdate, Get-AzConfigurationAssignment, Get-AzMaintenanceConfiguration, Get-AzMaintenanceUpdate...} Script 0.7.3 Az.ManagedServiceIdentity {New-AzUserAssignedIdentity, Get-AzUserAssignedIdentity, Remove-AzUserAssignedIdentity} Script 2.0.0 Az.ManagedServices {Get-AzManagedServicesAssignment, New-AzManagedServicesAssignment, Remove-AzManagedServicesAssignment, Get-AzManagedServicesDefinition...} Script 1.1.0 Az.ManagedServices {Get-AzManagedServicesAssignment, New-AzManagedServicesAssignment, Remove-AzManagedServicesAssignment, Get-AzManagedServicesDefinition...} Script 1.0.1 Az.ManagedServices {Get-AzManagedServicesAssignment, New-AzManagedServicesAssignment, Remove-AzManagedServicesAssignment, Get-AzManagedServicesDefinition...} Script 1.0.2 Az.MarketplaceOrdering {Get-AzMarketplaceTerms, Set-AzMarketplaceTerms} Script 1.0.1 Az.MarketplaceOrdering {Get-AzMarketplaceTerms, Set-AzMarketplaceTerms} Script 1.1.1 Az.Media {Sync-AzMediaServiceStorageKey, Set-AzMediaServiceKey, Get-AzMediaServiceKey, Get-AzMediaServiceNameAvailability...} Script 1.1.0 Az.Media {Sync-AzMediaServiceStorageKey, Set-AzMediaServiceKey, Get-AzMediaServiceKey, Get-AzMediaServiceNameAvailability...} Script 2.4.0 Az.Monitor {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...} Script 2.2.0 Az.Monitor {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...} Script 2.1.0 Az.Monitor {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...} Script 1.4.0 Az.Monitor {Get-AzMetricDefinition, Get-AzMetric, Remove-AzLogProfile, Get-AzLogProfile...} Script 4.6.0 Az.Network {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen... Script 4.5.0 Az.Network {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen... Script 4.3.0 Az.Network {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen... Script 3.3.0 Az.Network {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen... Script 2.0.0 Az.Network {Add-AzApplicationGatewayAuthenticationCertificate, Get-AzApplicationGatewayAuthenticationCertificate, New-AzApplicationGatewayAuthenticationCertificate, Remove-AzApplicationGatewayAuthen... Script 1.1.1 Az.NotificationHubs {Get-AzNotificationHub, Get-AzNotificationHubAuthorizationRule, Get-AzNotificationHubListKey, Get-AzNotificationHubPNSCredential...} Script 1.1.0 Az.NotificationHubs {Get-AzNotificationHub, Get-AzNotificationHubAuthorizationRule, Get-AzNotificationHubListKey, Get-AzNotificationHubPNSCredential...} Script 2.3.0 Az.OperationalInsights {New-AzOperationalInsightsAzureActivityLogDataSource, New-AzOperationalInsightsCustomLogDataSource, Disable-AzOperationalInsightsLinuxCustomLogCollection, Disable-AzOperationalInsightsIIS... Script 1.3.3 Az.OperationalInsights {New-AzOperationalInsightsAzureActivityLogDataSource, New-AzOperationalInsightsCustomLogDataSource, Disable-AzOperationalInsightsLinuxCustomLogCollection, Disable-AzOperationalInsightsIIS... Script 1.4.1 Az.PolicyInsights {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...} Script 1.4.0 Az.PolicyInsights {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...} Script 1.3.1 Az.PolicyInsights {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...} Script 1.1.3 Az.PolicyInsights {Get-AzPolicyEvent, Get-AzPolicyState, Get-AzPolicyStateSummary, Get-AzPolicyRemediation...} Script 1.1.2 Az.PowerBIEmbedded {Remove-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollectionAccessKey, Get-AzPowerBIWorkspace...} Script 1.1.0 Az.PowerBIEmbedded {Remove-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollection, Get-AzPowerBIWorkspaceCollectionAccessKey, Get-AzPowerBIWorkspace...} Script 1.0.3 Az.PrivateDns {Get-AzPrivateDnsZone, Remove-AzPrivateDnsZone, Set-AzPrivateDnsZone, New-AzPrivateDnsZone...} Script 1.0.0 Az.PrivateDns {Get-AzPrivateDnsZone, Remove-AzPrivateDnsZone, Set-AzPrivateDnsZone, New-AzPrivateDnsZone...} Script 3.4.0 Az.RecoveryServices {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...} Script 3.3.0 Az.RecoveryServices {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...} Script 3.0.1 Az.RecoveryServices {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...} Script 2.11.1 Az.RecoveryServices {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...} Script 2.0.1 Az.RecoveryServices {Get-AzRecoveryServicesBackupProperty, Get-AzRecoveryServicesVault, Get-AzRecoveryServicesVaultSettingsFile, New-AzRecoveryServicesVault...} Script 1.4.0 Az.RedisCache {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...} Script 1.2.1 Az.RedisCache {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...} Script 1.1.1 Az.RedisCache {Remove-AzRedisCachePatchSchedule, New-AzRedisCacheScheduleEntry, Get-AzRedisCachePatchSchedule, New-AzRedisCachePatchSchedule...} Script 1.0.3 Az.Relay {New-AzRelayNamespace, Get-AzRelayNamespace, Set-AzRelayNamespace, Remove-AzRelayNamespace...} Script 1.0.2 Az.Relay {New-AzRelayNamespace, Get-AzRelayNamespace, Set-AzRelayNamespace, Remove-AzRelayNamespace...} Script 3.2.1 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...} Script 3.2.0 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...} Script 3.0.1 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...} Script 2.5.0 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...} Script 1.7.1 Az.Resources {Get-AzProviderOperation, Remove-AzRoleAssignment, Get-AzRoleAssignment, New-AzRoleAssignment...} Script 1.4.1 Az.ServiceBus {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set-AzServiceBusNamespace, Remove-AzServiceBusNamespace...} Script 1.4.0 Az.ServiceBus {New-AzServiceBusNamespace, Get-AzServiceBusNamespace, Set-AzServiceBusNamespace, Remove-AzServiceBusNamespace...} Script 2.2.2 Az.ServiceFabric {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...} Script 2.2.0 Az.ServiceFabric {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...} Script 2.1.0 Az.ServiceFabric {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...} Script 2.0.0 Az.ServiceFabric {Add-AzServiceFabricClientCertificate, Add-AzServiceFabricClusterCertificate, Add-AzServiceFabricNode, Add-AzServiceFabricNodeType...} Script 1.2.0 Az.SignalR {New-AzSignalR, Get-AzSignalR, Get-AzSignalRKey, New-AzSignalRKey...} Script 1.1.0 Az.SignalR {New-AzSignalR, Get-AzSignalR, Get-AzSignalRKey, New-AzSignalRKey...} Script 2.16.0 Az.Sql {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...} Script 2.15.0 Az.Sql {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...} Script 2.12.0 Az.Sql {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...} Script 2.9.1 Az.Sql {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...} Script 2.0.0 Az.Sql {Get-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseTransparentDataEncryptionActivity, Set-AzSqlDatabaseTransparentDataEncryption, Get-AzSqlDatabaseUpgradeHint...} Script 1.1.0 Az.SqlVirtualMachine {New-AzSqlVM, Get-AzSqlVM, Update-AzSqlVM, Remove-AzSqlVM...} Script 3.3.0 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...} Script 3.2.1 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...} Script 3.0.0 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...} Script 2.5.0 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...} Script 1.9.0 Az.Storage {Get-AzStorageAccount, Get-AzStorageAccountKey, New-AzStorageAccount, New-AzStorageAccountKey...} Script 1.4.0 Az.StorageSync {Invoke-AzStorageSyncCompatibilityCheck, New-AzStorageSyncService, Get-AzStorageSyncService, Set-AzStorageSyncService...} Script 1.3.0 Az.StorageSync {Invoke-AzStorageSyncCompatibilityCheck, New-AzStorageSyncService, Get-AzStorageSyncService, Set-AzStorageSyncService...} Script 1.2.1 Az.StorageSync {Invoke-AzStorageSyncCompatibilityCheck, New-AzStorageSyncService, Get-AzStorageSyncService, Remove-AzStorageSyncService...} Script 1.0.1 Az.StreamAnalytics {Get-AzStreamAnalyticsFunction, Get-AzStreamAnalyticsDefaultFunctionDefinition, New-AzStreamAnalyticsFunction, Remove-AzStreamAnalyticsFunction...} Script 1.0.0 Az.StreamAnalytics {Get-AzStreamAnalyticsFunction, Get-AzStreamAnalyticsDefaultFunctionDefinition, New-AzStreamAnalyticsFunction, Remove-AzStreamAnalyticsFunction...} Script 1.0.0 Az.Support {Get-AzSupportService, Get-AzSupportProblemClassification, Get-AzSupportTicket, Get-AzSupportTicketCommunication...} Script 1.0.4 Az.TrafficManager {Add-AzTrafficManagerCustomHeaderToEndpoint, Remove-AzTrafficManagerCustomHeaderFromEndpoint, Add-AzTrafficManagerCustomHeaderToProfile, Remove-AzTrafficManagerCustomHeaderFromProfile...} Script 1.0.2 Az.TrafficManager {Add-AzTrafficManagerCustomHeaderToEndpoint, Remove-AzTrafficManagerCustomHeaderFromEndpoint, Add-AzTrafficManagerCustomHeaderToProfile, Remove-AzTrafficManagerCustomHeaderFromProfile...} Script 2.3.0 Az.Websites {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...} Script 2.2.0 Az.Websites {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...} Script 2.1.0 Az.Websites {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...} Script 1.11.0 Az.Websites {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...} Script 1.5.0 Az.Websites {Get-AzAppServicePlan, Set-AzAppServicePlan, New-AzAppServicePlan, Remove-AzAppServicePlan...} Binary 2.0.2.118 AzureAD {Add-AzureADApplicationOwner, Get-AzureADApplication, Get-AzureADApplicationExtensionProperty, Get-AzureADApplicationOwner...} Binary 2.0.2.61 AzureAD {Add-AzureADApplicationOwner, Get-AzureADApplication, Get-AzureADApplicationExtensionProperty, Get-AzureADApplicationOwner...} Binary 0.4 DeviceManagement {Get-Driver, Get-NUMA, Disable-Device, Enable-Device...} Manifest 1.3.1 Microsoft.Graph Script 1.3.1 Microsoft.Graph.Applications {Add-MgApplicationKey, Add-MgApplicationPassword, Add-MgServicePrincipalKey, Add-MgServicePrincipalPassword...} Script 1.3.1 Microsoft.Graph.Authentication {Connect-MgGraph, Disconnect-MgGraph, Get-MgContext, Get-MgProfile...} Script 1.3.1 Microsoft.Graph.Bookings {Get-MgBookingBusiness, Get-MgBookingBusinessAppointment, Get-MgBookingBusinessCalendarView, Get-MgBookingBusinessCustomer...} Script 1.3.1 Microsoft.Graph.Calendar {Get-MgGroupCalendar, Get-MgGroupCalendarMultiValueExtendedProperty, Get-MgGroupCalendarPermission, Get-MgGroupCalendarSingleValueExtendedProperty...} Script 1.3.1 Microsoft.Graph.ChangeNotifications {Get-MgSubscription, New-MgSubscription, Remove-MgSubscription, Update-MgSubscription} Script 1.3.1 Microsoft.Graph.CloudCommunications {Get-MgCommunicationCall, Get-MgCommunicationCallAudioRoutingGroup, Get-MgCommunicationCallOperation, Get-MgCommunicationCallParticipant...} Script 1.3.1 Microsoft.Graph.Compliance {Close-MgComplianceEdiscoveryCase, Export-MgComplianceEdiscoveryCaseReviewSet, Get-MgCompliance, Get-MgComplianceEdiscovery...} Script 1.3.1 Microsoft.Graph.CrossDeviceExper... {Get-MgUserActivity, Get-MgUserActivityHistoryItem, Get-MgUserActivityHistoryItemActivity, Get-MgUserActivityHistoryItemActivityByRef...} Script 1.3.1 Microsoft.Graph.Devices.CloudPrint {Get-MgPrint, Get-MgPrintConnector, Get-MgPrintOperation, Get-MgPrintPrinter...} Script 1.3.1 Microsoft.Graph.Devices.Corporat... {Clear-MgDeviceAppMgtWindowInformationProtectionDeviceRegistration, Get-MgDeviceAppMgt, Get-MgDeviceAppMgtAndroidManagedAppProtection, Get-MgDeviceAppMgtAndroidManagedAppProtectionApp...} Script 1.3.1 Microsoft.Graph.DirectoryObjects {Confirm-MgDirectoryObjectMemberGroup, Confirm-MgDirectoryObjectMemberObject, Get-MgDirectoryObject, Get-MgDirectoryObjectAvailableExtensionProperty...} Script 1.3.1 Microsoft.Graph.Education {Get-MgEducationClass, Get-MgEducationClassAssignment, Get-MgEducationClassAssignmentCategory, Get-MgEducationClassAssignmentResource...} Script 1.3.1 Microsoft.Graph.Files {Get-MgDrive, Get-MgDriveActivity, Get-MgDriveBundle, Get-MgDriveBundleContent...} Script 1.3.1 Microsoft.Graph.Financials {Get-MgFinancial, Get-MgFinancialCompany, Get-MgFinancialCompanyAccount, Get-MgFinancialCompanyAgedAccountPayable...} Script 1.3.1 Microsoft.Graph.Groups {Add-MgGroupFavorite, Add-MgGroupToLifecyclePolicy, Confirm-MgGroupGrantedPermission, Confirm-MgGroupMemberGroup...} Script 1.3.1 Microsoft.Graph.Identity.Directo... {Confirm-MgAdministrativeUnitMemberGroup, Confirm-MgAdministrativeUnitMemberObject, Confirm-MgContactMemberGroup, Confirm-MgContactMemberObject...} Script 1.3.1 Microsoft.Graph.Identity.Governance {Add-MgAccessReviewDecision, Add-MgIdentityGovernanceAccessReviewDefinitionInstanceDecision, Get-MgAccessReview, Get-MgAccessReviewDecision...} Script 1.3.1 Microsoft.Graph.Identity.SignIns {Confirm-MgRiskyUserCompromised, Get-MgDataPolicyOperation, Get-MgIdentityConditionalAccessAuthenticationContextClasserenceByRef, Get-MgIdentityConditionalAccessNamedLocation...} Script 1.3.1 Microsoft.Graph.Mail {Get-MgUserInferenceClassification, Get-MgUserInferenceClassificationOverride, Get-MgUserMailFolder, Get-MgUserMailFolderChildFolder...} Script 1.3.1 Microsoft.Graph.Notes {Get-MgGroupOnenoteNotebook, Get-MgGroupOnenoteNotebookSection, Get-MgGroupOnenoteNotebookSectionGroup, Get-MgGroupOnenoteOperation...} Script 1.3.1 Microsoft.Graph.People {Get-MgUserActivityStatistics, Get-MgUserLastSharedMethodInsight, Get-MgUserPerson, Get-MgUserProfile...} Script 1.3.1 Microsoft.Graph.PersonalContacts {Get-MgUserContact, Get-MgUserContactExtension, Get-MgUserContactFolder, Get-MgUserContactFolderChildFolder...} Script 1.3.1 Microsoft.Graph.Planner {Get-MgGroupPlanner, Get-MgGroupPlannerPlan, Get-MgGroupPlannerPlanBucket, Get-MgGroupPlannerPlanBucketTask...} Script 1.3.1 Microsoft.Graph.Reports {Get-MgAuditLogDirectoryAudit, Get-MgAuditLogDirectoryProvisioning, Get-MgAuditLogProvisioning, Get-MgAuditLogRestrictedSignIn...} Script 1.3.1 Microsoft.Graph.SchemaExtensions {Get-MgSchemaExtension, New-MgSchemaExtension, Remove-MgSchemaExtension, Update-MgSchemaExtension} Script 1.3.1 Microsoft.Graph.Search {Get-MgExternal, Get-MgExternalConnection, Get-MgSearchEntity, Invoke-MgQuerySearch...} Script 1.3.1 Microsoft.Graph.Security {Get-MgSecurityAction, Get-MgSecurityAlert, Get-MgSecurityCloudAppSecurityProfile, Get-MgSecurityDomainSecurityProfile...} Script 1.3.1 Microsoft.Graph.Sites {Copy-MgSiteOnenoteNotebook, Copy-MgSiteOnenotePageToSection, Copy-MgSiteOnenoteSectionToNotebook, Copy-MgSiteOnenoteSectionToSectionGroup...} Script 1.3.1 Microsoft.Graph.Teams {Add-MgChatMember, Add-MgTeamChannelMember, Add-MgTeamMember, Add-MgTeamPrimaryChannelMember...} Script 1.3.1 Microsoft.Graph.Users {Get-MgUser, Get-MgUserCreatedObject, Get-MgUserCreatedObjectByRef, Get-MgUserDirectReport...} Script 1.3.1 Microsoft.Graph.Users.Actions {Add-MgUserPendingAccessReviewInstanceDecision, Clear-MgUserAndBlockManagedApp, Clear-MgUserManagedAppRegistrationByDeviceTag, Clear-MgUserManagedDevice...} Script 1.3.1 Microsoft.Graph.Users.Functions {Export-MgUserDeviceAndAppManagementData623C, Export-MgUserDeviceAndAppManagementDataD390, Find-MgUserRoomAc49, Find-MgUserRoomD266...} Script 1.0.1 Microsoft.PowerShell.Operation.V... {Get-OperationValidation, Invoke-OperationValidation} Binary 1.0.3 Microsoft.ServiceFabric.Powershe... {Connect-SFCluster, Copy-SFApplicationPackage, New-SFMeshResourceDeployment, New-SFMeshApplication...} Manifest 1.1.0.0 mWsusInstall Manifest 1.0.0.0 mWsusInstall Script 1.4.7 PackageManagement {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...} Script 1.4.5 PackageManagement {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...} Binary 1.0.0.1 PackageManagement {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...} Binary 1.0.0.0 PackageManagement {Find-Package, Get-Package, Get-PackageProvider, Get-PackageSource...} Script 3.4.0 Pester {Describe, Context, It, Should...} Script 2.2.5 PowerShellGet {Find-Command, Find-DSCResource, Find-Module, Find-RoleCapability...} Script 2.2.1 PowerShellGet {Find-Command, Find-DSCResource, Find-Module, Find-RoleCapability...} Script 1.0.0.1 PowerShellGet {Install-Module, Find-Module, Save-Module, Update-Module...} Script 2.1.0 PSReadline {Get-PSReadLineKeyHandler, Set-PSReadLineKeyHandler, Remove-PSReadLineKeyHandler, Get-PSReadLineOption...} Script 2.0.0 PSReadline {Get-PSReadLineKeyHandler, Set-PSReadLineKeyHandler, Remove-PSReadLineKeyHandler, Get-PSReadLineOption...} Binary 2.2.0.2 PSWindowsUpdate {Add-WUServiceManager, Enable-WURemoting, Get-WindowsUpdate, Get-WUApiVersion...} Binary 2.1.1.2 PSWindowsUpdate {Add-WUServiceManager, Enable-WURemoting, Get-WindowsUpdate, Get-WUApiVersion...} Manifest 1.5.2.2 PSWindowsUpdate {Add-WUOfflineSync, Get-WUHistory, Get-WUInstall, Get-WUInstallerStatus...} Script 1.0.14 SpeculationControl Get-SpeculationControlSettings Script 2.2.16 VSSetup {Get-VSSetupInstance, Select-VSSetupInstance} Binary 1.0.58.... VSSetup {Get-VSSetupInstance, Select-VSSetupInstance} Directory: C:\WINDOWS\system32\WindowsPowerShell\v1.0\Modules ModuleType Version Name ExportedCommands ---------- ------- ---- ---------------- Manifest 1.0.1.0 ActiveDirectory {Add-ADCentralAccessPolicyMember, Add-ADComputerServiceAccount, Add-ADDomainControllerPasswordReplicationPolicy, Add-ADFineGrainedPasswordPolicySubject...} Manifest 1.0.0.0 AppBackgroundTask {Disable-AppBackgroundTaskDiagnosticLog, Enable-AppBackgroundTaskDiagnosticLog, Set-AppBackgroundTaskResourcePolicy, Unregister-AppBackgroundTask...} Manifest 2.0.0.0 AppLocker {Get-AppLockerFileInformation, Get-AppLockerPolicy, New-AppLockerPolicy, Set-AppLockerPolicy...} Manifest 1.0.0.0 AppvClient {Add-AppvClientConnectionGroup, Add-AppvClientPackage, Add-AppvPublishingServer, Disable-Appv...} Manifest 2.0.1.0 Appx {Add-AppxPackage, Get-AppxPackage, Get-AppxPackageManifest, Remove-AppxPackage...} Script 1.0.0.0 AssignedAccess {Clear-AssignedAccess, Get-AssignedAccess, Set-AssignedAccess} Manifest 1.0 BestPractices {Get-BpaModel, Get-BpaResult, Invoke-BpaModel, Set-BpaResult} Manifest 1.0.0.0 BitLocker {Unlock-BitLocker, Suspend-BitLocker, Resume-BitLocker, Remove-BitLockerKeyProtector...} Manifest 2.0.0.0 BitsTransfer {Add-BitsFile, Complete-BitsTransfer, Get-BitsTransfer, Remove-BitsTransfer...} Manifest 1.0.0.0 BranchCache {Add-BCDataCacheExtension, Clear-BCCache, Disable-BC, Disable-BCDowngrading...} Manifest 1.0.0.0 CimCmdlets {Get-CimAssociatedInstance, Get-CimClass, Get-CimInstance, Get-CimSession...} Binary 2.0.0.0 ClusterAwareUpdating {Get-CauPlugin, Register-CauPlugin, Unregister-CauPlugin, Invoke-CauScan...} Manifest 1.0 ConfigCI {Get-SystemDriver, New-CIPolicyRule, New-CIPolicy, Get-CIPolicy...} Manifest 1.0 ConfigDefender {Get-MpPreference, Set-MpPreference, Add-MpPreference, Remove-MpPreference...} Manifest 1.0 Defender {Get-MpPreference, Set-MpPreference, Add-MpPreference, Remove-MpPreference...} Manifest 1.0.2.0 DeliveryOptimization {Delete-DeliveryOptimizationCache, Get-DeliveryOptimizationStatus, Set-DeliveryOptimizationStatus, Get-DeliveryOptimizationPerfSnap...} Manifest 1.0 DFSN {Get-DfsnRoot, Remove-DfsnRoot, Set-DfsnRoot, New-DfsnRoot...} Binary 2.0.0.0 DFSR {New-DfsReplicationGroup, Get-DfsReplicationGroup, Set-DfsReplicationGroup, Remove-DfsReplicationGroup...} Manifest 2.0.0.0 DhcpServer {Add-DhcpServerInDC, Add-DhcpServerv4Class, Add-DhcpServerv4ExclusionRange, Add-DhcpServerv4Failover...} Manifest 1.0.0.0 DirectAccessClientComponents {Disable-DAManualEntryPointSelection, Enable-DAManualEntryPointSelection, Get-DAClientExperienceConfiguration, Get-DAEntryPointTableItem...} Script 3.0 Dism {Add-AppxProvisionedPackage, Add-WindowsDriver, Add-WindowsCapability, Add-WindowsImage...} Manifest 1.0.0.0 DnsClient {Resolve-DnsName, Clear-DnsClientCache, Get-DnsClient, Get-DnsClientCache...} Manifest 2.0.0.0 DnsServer {Add-DnsServerConditionalForwarderZone, Add-DnsServerDirectoryPartition, Add-DnsServerForwarder, Add-DnsServerPrimaryZone...} Manifest 1.0.0.0 EventTracingManagement {Start-EtwTraceSession, New-EtwTraceSession, Get-EtwTraceSession, Update-EtwTraceSession...} Manifest 2.0.0.0 FailoverClusters {Add-ClusterCheckpoint, Add-ClusterDisk, Add-ClusterFileServerRole, Add-ClusterGenericApplicationRole...} Manifest 1.0.0.0 GroupPolicy {Backup-GPO, Block-GPInheritance, Copy-GPO, Get-GPInheritance...} Manifest 1.0.0.0 HgsClient {Get-HgsAttestationBaselinePolicy, Get-HgsClientConfiguration, Test-HgsClientConfiguration, Set-HgsClientConfiguration...} Manifest 1.0.0.0 HgsDiagnostics {New-HgsTraceTarget, Get-HgsTrace, Get-HgsTraceFileData, Test-HgsTraceTarget} Binary 1.0.0.0 HostComputeService {Get-ComputeProcess, Stop-ComputeProcess} Manifest 1.0.0.1 HostNetworkingService {Remove-HnsNamespace, Remove-HnsEndpoint, Get-HnsEndpoint, Get-HnsNamespace...} Binary 2.0.0.0 Hyper-V {Add-VMAssignableDevice, Add-VMDvdDrive, Add-VMFibreChannelHba, Add-VMGpuPartitionAdapter...} Binary 1.1 Hyper-V {Add-VMDvdDrive, Add-VMFibreChannelHba, Add-VMHardDiskDrive, Add-VMMigrationNetwork...} Script 1.1.0.0 IISAdministration {Get-IISAppPool, Start-IISCommitDelay, Stop-IISCommitDelay, Get-IISSite...} Manifest 2.0.0.0 International {Get-WinDefaultInputMethodOverride, Set-WinDefaultInputMethodOverride, Get-WinHomeLocation, Set-WinHomeLocation...} Manifest 2.0.0.0 IpamServer {Get-IpamDhcpConfigurationEvent, Remove-IpamDhcpConfigurationEvent, Get-IpamConfigurationEvent, Remove-IpamConfigurationEvent...} Manifest 1.0.0.0 iSCSI {Get-IscsiTargetPortal, New-IscsiTargetPortal, Remove-IscsiTargetPortal, Update-IscsiTargetPortal...} Manifest 2.0.0.0 IscsiTarget {Add-ClusteriSCSITargetServerRole, Add-IscsiVirtualDiskTargetMapping, Checkpoint-IscsiVirtualDisk, Convert-IscsiVirtualDisk...} Script 1.0.0.0 ISE {New-IseSnippet, Import-IseSnippet, Get-IseSnippet} Manifest 1.0.0.0 Kds {Add-KdsRootKey, Get-KdsRootKey, Test-KdsRootKey, Set-KdsConfiguration...} Manifest 1.0.1.0 Microsoft.PowerShell.Archive {Compress-Archive, Expand-Archive} Manifest 3.0.0.0 Microsoft.PowerShell.Diagnostics {Get-WinEvent, Get-Counter, Import-Counter, Export-Counter...} Manifest 3.0.0.0 Microsoft.PowerShell.Host {Start-Transcript, Stop-Transcript} Manifest 1.0.0.0 Microsoft.PowerShell.LocalAccounts {Add-LocalGroupMember, Disable-LocalUser, Enable-LocalUser, Get-LocalGroup...} Manifest 3.1.0.0 Microsoft.PowerShell.Management {Add-Content, Clear-Content, Clear-ItemProperty, Join-Path...} Script 1.0 Microsoft.PowerShell.ODataUtils Export-ODataEndpointProxy Manifest 3.0.0.0 Microsoft.PowerShell.Security {Get-Acl, Set-Acl, Get-PfxCertificate, Get-Credential...} Manifest 3.1.0.0 Microsoft.PowerShell.Utility {Format-List, Format-Custom, Format-Table, Format-Wide...} Manifest 3.0.0.0 Microsoft.WSMan.Management {Disable-WSManCredSSP, Enable-WSManCredSSP, Get-WSManCredSSP, Set-WSManQuickConfig...} Manifest 1.0 MMAgent {Disable-MMAgent, Enable-MMAgent, Set-MMAgent, Get-MMAgent...} Manifest 1.0.0.0 MsDtc {New-DtcDiagnosticTransaction, Complete-DtcDiagnosticTransaction, Join-DtcDiagnosticResourceManager, Receive-DtcDiagnosticTransaction...} Manifest 2.0.0.0 NetAdapter {Disable-NetAdapter, Disable-NetAdapterBinding, Disable-NetAdapterChecksumOffload, Disable-NetAdapterEncapsulatedPacketTaskOffload...} Manifest 1.0.0.0 NetConnection {Get-NetConnectionProfile, Set-NetConnectionProfile} Manifest 1.0.0.0 NetDiagnostics Get-NetView Manifest 1.0.0.0 NetEventPacketCapture {New-NetEventSession, Remove-NetEventSession, Get-NetEventSession, Set-NetEventSession...} Manifest 2.0.0.0 NetLbfo {Add-NetLbfoTeamMember, Add-NetLbfoTeamNic, Get-NetLbfoTeam, Get-NetLbfoTeamMember...} Manifest 1.0 NetLldpAgent {Enable-NetLldpAgent, Disable-NetLldpAgent, Get-NetLldpAgent} Manifest 1.0.0.0 NetNat {Get-NetNat, Get-NetNatExternalAddress, Get-NetNatStaticMapping, Get-NetNatSession...} Manifest 2.0.0.0 NetQos {Get-NetQosPolicy, Set-NetQosPolicy, Remove-NetQosPolicy, New-NetQosPolicy} Manifest 2.0.0.0 NetSecurity {Get-DAPolicyChange, New-NetIPsecAuthProposal, New-NetIPsecMainModeCryptoProposal, New-NetIPsecQuickModeCryptoProposal...} Manifest 1.0.0.0 NetSwitchTeam {New-NetSwitchTeam, Remove-NetSwitchTeam, Get-NetSwitchTeam, Rename-NetSwitchTeam...} Manifest 1.0.0.0 NetTCPIP {Get-NetIPAddress, Get-NetIPInterface, Get-NetIPv4Protocol, Get-NetIPv6Protocol...} Manifest 1.0.0.0 NetworkConnectivityStatus {Get-DAConnectionStatus, Get-NCSIPolicyConfiguration, Reset-NCSIPolicyConfiguration, Set-NCSIPolicyConfiguration} Manifest 1.0.0.0 NetworkController {Add-NetworkControllerNode, Disable-NetworkControllerNode, Enable-NetworkControllerNode, Get-NetworkControllerCluster...} Manifest 1.0.0.0 NetworkControllerDiagnostics {Get-NetworkControllerDeploymentInfo, Get-NetworkControllerManagedDevices, Debug-NetworkController, Debug-NetworkControllerConfigurationState...} Manifest 2.0.0.0 NetworkLoadBalancingClusters {Add-NlbClusterNode, Add-NlbClusterNodeDip, Add-NlbClusterPortRule, Add-NlbClusterVip...} Manifest 1.0.0.0 NetworkSwitchManager {Disable-NetworkSwitchEthernetPort, Enable-NetworkSwitchEthernetPort, Get-NetworkSwitchEthernetPort, Remove-NetworkSwitchEthernetPortIPAddress...} Manifest 1.0.0.0 NetworkTransition {Add-NetIPHttpsCertBinding, Disable-NetDnsTransitionConfiguration, Disable-NetIPHttpsProfile, Disable-NetNatTransitionConfiguration...} Manifest 1.0 NFS {Get-NfsMappedIdentity, Get-NfsNetgroup, Install-NfsMappingStore, New-NfsMappedIdentity...} Manifest 1.0.0.0 PcsvDevice {Get-PcsvDevice, Start-PcsvDevice, Stop-PcsvDevice, Restart-PcsvDevice...} Binary 1.0.0.0 PersistentMemory {Get-PmemDisk, Get-PmemPhysicalDevice, Get-PmemUnusedRegion, New-PmemDisk...} Manifest 1.0.0.0 PKI {Add-CertificateEnrollmentPolicyServer, Export-Certificate, Export-PfxCertificate, Get-CertificateAutoEnrollmentPolicy...} Manifest 1.0.0.0 PnpDevice {Get-PnpDevice, Get-PnpDeviceProperty, Enable-PnpDevice, Disable-PnpDevice} Manifest 1.1 PrintManagement {Add-Printer, Add-PrinterDriver, Add-PrinterPort, Get-PrintConfiguration...} Binary 1.0.11 ProcessMitigations {Get-ProcessMitigation, Set-ProcessMitigation, ConvertTo-ProcessMitigationPolicy} Script 3.0 Provisioning {Install-ProvisioningPackage, Export-ProvisioningPackage, Install-TrustedProvisioningCertificate, Export-Trace...} Manifest 1.1 PSDesiredStateConfiguration {Set-DscLocalConfigurationManager, Start-DscConfiguration, Test-DscConfiguration, Publish-DscConfiguration...} Script 1.0.0.0 PSDiagnostics {Disable-PSTrace, Disable-PSWSManCombinedTrace, Disable-WSManTrace, Enable-PSTrace...} Binary 1.1.0.0 PSScheduledJob {New-JobTrigger, Add-JobTrigger, Remove-JobTrigger, Get-JobTrigger...} Manifest 2.0.0.0 PSWorkflow {New-PSWorkflowExecutionOption, New-PSWorkflowSession, nwsn} Manifest 1.0.0.0 PSWorkflowUtility Invoke-AsWorkflow Manifest 3.0.0.0 RemoteAccess {Add-DAAppServer, Add-DAClient, Add-DAClientDnsConfiguration, Add-DAEntryPoint...} Manifest 2.0.0.0 RemoteDesktop {Get-RDCertificate, Set-RDCertificate, New-RDCertificate, New-RDVirtualDesktopDeployment...} Manifest 1.0.0.0 ScheduledTasks {Get-ScheduledTask, Set-ScheduledTask, Register-ScheduledTask, Unregister-ScheduledTask...} Manifest 2.0.0.0 SecureBoot {Confirm-SecureBootUEFI, Set-SecureBootUEFI, Get-SecureBootUEFI, Format-SecureBootUEFI...} Script 2.0.0.0 ServerManager {Get-WindowsFeature, Install-WindowsFeature, Uninstall-WindowsFeature, Enable-ServerManagerStandardUserRemoting...} Cim 1.0.0.0 ServerManagerTasks {Get-SMCounterSample, Get-SMPerformanceCollector, Start-SMPerformanceCollector, Stop-SMPerformanceCollector...} Manifest 1.0.0.0 ShieldedVMDataFile {Import-ShieldingDataFile, New-ShieldingDataFile, New-VolumeIDQualifier, Save-VolumeSignatureCatalog...} Manifest 1.0.0.0 ShieldedVMTemplate {Protect-TemplateDisk, Initialize-VMShieldingHelperVHD} Manifest 2.0.0.0 SmbShare {Get-SmbShare, Remove-SmbShare, Set-SmbShare, Block-SmbShareAccess...} Manifest 2.0.0.0 SmbWitness {Get-SmbWitnessClient, Move-SmbWitnessClient, gsmbw, msmbw...} Manifest 1.0.0.0 StartLayout {Export-StartLayout, Import-StartLayout, Export-StartLayoutEdgeAssets, Get-StartApps} Manifest 2.0.0.0 Storage {Add-InitiatorIdToMaskingSet, Add-PartitionAccessPath, Add-PhysicalDisk, Add-StorageFaultDomain...} Manifest 1.0.0.0 StorageBusCache {Clear-StorageBusDisk, Disable-StorageBusCache, Disable-StorageBusDisk, Enable-StorageBusCache...} Binary 1.0.0.0 StorageMigrationService {Get-SmsInventory, New-SmsInventory, Remove-SmsInventory, Set-SmsInventory...} Manifest 1.0.0.0 StorageQoS {Get-StorageQoSPolicy, Get-StorageQoSPolicyStore, Set-StorageQoSPolicyStore, Remove-StorageQoSPolicy...} Manifest 1.0 StorageReplica {Test-SRTopology, New-SRGroup, Remove-SRGroup, Set-SRGroup...} Binary 1.0.0.0 SystemInsights {Add-InsightsCapability, Remove-InsightsCapability, Update-InsightsCapability, Get-InsightsCapability...} Manifest 2.0.0.0 TLS {New-TlsSessionTicketKey, Enable-TlsSessionTicketKey, Disable-TlsSessionTicketKey, Export-TlsSessionTicketKey...} Manifest 1.0.0.0 TroubleshootingPack {Get-TroubleshootingPack, Invoke-TroubleshootingPack} Manifest 2.0.0.0 TrustedPlatformModule {Get-Tpm, Initialize-Tpm, Clear-Tpm, Unblock-Tpm...} Binary 2.1.639.0 UEV {Clear-UevConfiguration, Clear-UevAppxPackage, Restore-UevBackup, Set-UevTemplateProfile...} Manifest 2.0.0.0 UpdateServices {Add-WsusComputer, Approve-WsusUpdate, Deny-WsusUpdate, Get-WsusClassification...} Manifest 2.0.0.0 VpnClient {Add-VpnConnection, Set-VpnConnection, Remove-VpnConnection, Get-VpnConnection...} Manifest 1.0.0.0 Wdac {Get-OdbcDriver, Set-OdbcDriver, Get-OdbcDsn, Add-OdbcDsn...} Manifest 1.0.0.0 WebAdministration {Start-WebCommitDelay, Stop-WebCommitDelay, Get-WebConfigurationLock, Remove-WebConfigurationLock...} Manifest 2.0.0.0 Whea {Get-WheaMemoryPolicy, Set-WheaMemoryPolicy} Manifest 1.0.0.0 WindowsDeveloperLicense {Get-WindowsDeveloperLicense, Unregister-WindowsDeveloperLicense, Show-WindowsDeveloperLicenseRegistration} Script 1.0 WindowsErrorReporting {Enable-WindowsErrorReporting, Disable-WindowsErrorReporting, Get-WindowsErrorReporting} Manifest 1.0.0.0 WindowsSearch {Get-WindowsSearchSetting, Set-WindowsSearchSetting} Manifest 1.0.0.0 WindowsUpdate Get-WindowsUpdateLog Manifest 1.0.0.2 WindowsUpdateProvider {Get-WUAVersion, Get-WULastInstallationDate, Get-WULastScanSuccessDate, Get-WUIsPendingReboot...} Directory: C:\Program Files\Intel\Wired Networking ModuleType Version Name ExportedCommands ---------- ------- ---- ---------------- Binary 25.1.0.11 IntelNetCmdlets {Get-IntelNetAdapter, Get-IntelNetAdapterSetting, Set-IntelNetAdapterSetting, Get-IntelNetAdapterProfileSettings...} Directory: C:\Program Files\Microsoft Message Analyzer\PowerShell ModuleType Version Name ExportedCommands ---------- ------- ---- ---------------- Script 1.1.0.0 PEF {Invoke-PefCustomAction, Save-PefDataCollection, Add-PefMessageSource, Add-PefProviderConfig...} ``` ## Debug output ``` C:\> $DebugPreference='Continue' C:\> $lb = Get-AzLoadBalancer -Name mytest-lb -ResourceGroupName mytest-rg DEBUG: 17:04:17 - GetAzureRmLoadBalancer begin processing with ParameterSet 'NoExpand'. DEBUG: 17:04:17 - using account id 'joe.user@myfirm.com'... DEBUG: [Common.Authentication]: Authenticating using Account: 'joe.user@myfirm.com', environment: 'AzureCloud', tenant: '***TENANT-ID-REDACTED***' DEBUG: SharedTokenCacheCredential.GetToken invoked. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId: DEBUG: SharedTokenCacheCredential.GetToken succeeded. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId: ExpiresOn: 2021-02-09T16:59:28.0000000+00:00 DEBUG: SharedTokenCacheCredential.GetToken invoked. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId: DEBUG: SharedTokenCacheCredential.GetToken succeeded. Scopes: [ https://management.core.windows.net//.default ] ParentRequestId: ExpiresOn: 2021-02-09T16:59:28.0000000+00:00 DEBUG: [Common.Authentication]: Received token with LoginType 'User', Tenant: '***TENANT-ID-REDACTED***', UserId: 'joe.user@myfirm.com' DEBUG: ============================ HTTP REQUEST ============================ HTTP Method: GET Absolute Uri: https://management.azure.com/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb?api-version=2020-08-01 Headers: x-ms-client-request-id : 4c89db88-dccb-45df-9088-f985f7b431c8 accept-language : en-US Body: DEBUG: ============================ HTTP RESPONSE ============================ Status Code: OK Headers: Pragma : no-cache x-ms-request-id : c341702a-20ec-4aee-8f0f-7626a41ba7ef x-ms-correlation-request-id : 1cada05a-dc8f-45aa-a123-9d75680a0a16 x-ms-arm-service-request-id : b6d477c5-7673-4dcd-8c2a-6ea85c3e027d Strict-Transport-Security : max-age=31536000; includeSubDomains Cache-Control : no-cache ETag : W/"117d3ce9-cb52-48ef-ba22-be1226f1edb2" Server : Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 x-ms-ratelimit-remaining-subscription-reads: 11998 x-ms-routing-request-id : GERMANYNORTH:20210209T160353Z:1cada05a-dc8f-45aa-a123-9d75680a0a16 X-Content-Type-Options : nosniff Date : Tue, 09 Feb 2021 16:03:53 GMT Body: { "name": "mytest-lb", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers", "location": "westeurope", "tags": { "resourceType": "Service Fabric", "clusterName": "mytest" }, "properties": { "provisioningState": "Succeeded", "resourceGuid": "2f1dc944-01db-4e05-9a77-e928d497d99b", "frontendIPConfigurations": [ { "name": "LoadBalancerIPConfig", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers/frontendIPConfigurations", "properties": { "provisioningState": "Succeeded", "privateIPAllocationMethod": "Dynamic", "publicIPAddress": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/publicIPAddresses/mytest-lb-ip" }, "loadBalancingRules": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule" }, { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule" } ], "inboundNatRules": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.0" }, { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.1" }, { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.2" } ], "inboundNatPools": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatPools/RdpNatPool" } ], "privateIPAddressVersion": "IPv4" } } ], "backendAddressPools": [ { "name": "LoadBalancerBEAddressPool", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "properties": { "provisioningState": "Succeeded", "backendIPConfigurations": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/0/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr imary-nic-0" }, { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/1/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr imary-nic-0" }, { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/2/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr imary-nic-0" } ], "loadBalancingRules": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule" }, { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule" } ] }, "type": "Microsoft.Network/loadBalancers/backendAddressPools" } ], "loadBalancingRules": [ { "name": "FabricTcpGatewayRule", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers/loadBalancingRules", "properties": { "provisioningState": "Succeeded", "frontendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" }, "frontendPort": 19000, "backendPort": 19000, "enableFloatingIP": false, "idleTimeoutInMinutes": 5, "protocol": "Tcp", "enableDestinationServiceEndpoint": false, "enableTcpReset": false, "allowBackendPortConflict": false, "loadDistribution": "Default", "backendAddressPool": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool" }, "probe": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe" } } }, { "name": "FabricHttpGatewayRule", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers/loadBalancingRules", "properties": { "provisioningState": "Succeeded", "frontendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" }, "frontendPort": 19080, "backendPort": 19080, "enableFloatingIP": false, "idleTimeoutInMinutes": 5, "protocol": "Tcp", "enableDestinationServiceEndpoint": false, "enableTcpReset": false, "allowBackendPortConflict": false, "loadDistribution": "Default", "backendAddressPool": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool" }, "probe": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricHttpGatewayProbe" } } } ], "probes": [ { "name": "FabricTcpGatewayProbe", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "properties": { "provisioningState": "Succeeded", "protocol": "Tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": 2, "loadBalancingRules": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule" } ] }, "type": "Microsoft.Network/loadBalancers/probes" }, { "name": "FabricHttpGatewayProbe", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricHttpGatewayProbe", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "properties": { "provisioningState": "Succeeded", "protocol": "Tcp", "port": 19080, "intervalInSeconds": 5, "numberOfProbes": 2, "loadBalancingRules": [ { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricHttpGatewayRule" } ] }, "type": "Microsoft.Network/loadBalancers/probes" } ], "inboundNatRules": [ { "name": "RdpNatPool.0", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.0", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers/inboundNatRules", "properties": { "provisioningState": "Succeeded", "frontendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" }, "frontendPort": 3389, "backendPort": 3389, "enableFloatingIP": false, "idleTimeoutInMinutes": 4, "protocol": "Tcp", "enableDestinationServiceEndpoint": false, "enableTcpReset": false, "allowBackendPortConflict": false, "backendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/0/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr imary-nic-0" } } }, { "name": "RdpNatPool.1", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.1", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers/inboundNatRules", "properties": { "provisioningState": "Succeeded", "frontendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" }, "frontendPort": 3390, "backendPort": 3389, "enableFloatingIP": false, "idleTimeoutInMinutes": 4, "protocol": "Tcp", "enableDestinationServiceEndpoint": false, "enableTcpReset": false, "allowBackendPortConflict": false, "backendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/1/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr imary-nic-0" } } }, { "name": "RdpNatPool.2", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatRules/RdpNatPool.2", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "type": "Microsoft.Network/loadBalancers/inboundNatRules", "properties": { "provisioningState": "Succeeded", "frontendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" }, "frontendPort": 3391, "backendPort": 3389, "enableFloatingIP": false, "idleTimeoutInMinutes": 4, "protocol": "Tcp", "enableDestinationServiceEndpoint": false, "enableTcpReset": false, "allowBackendPortConflict": false, "backendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Compute/virtualMachineScaleSets/primary/virtualMachines/2/networkInterfaces/mytest-primary-nic-0/ipConfigurations/mytest-pr imary-nic-0" } } } ], "inboundNatPools": [ { "name": "RdpNatPool", "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/inboundNatPools/RdpNatPool", "etag": "W/\"117d3ce9-cb52-48ef-ba22-be1226f1edb2\"", "properties": { "provisioningState": "Succeeded", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, "backendPort": 3389, "protocol": "Tcp", "idleTimeoutInMinutes": 4, "enableFloatingIP": false, "enableDestinationServiceEndpoint": false, "enableTcpReset": false, "allowBackendPortConflict": false, "frontendIPConfiguration": { "id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" } }, "type": "Microsoft.Network/loadBalancers/inboundNatPools" } ] }, "sku": { "name": "Basic", "tier": "Regional" } } DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancer; IsSuccess - True; Duration - 00:00:00.3291178 DEBUG: Finish sending metric. DEBUG: 17:04:18 - GetAzureRmLoadBalancer end processing. C:\> $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl * DEBUG: 17:04:29 - GetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'. DEBUG: 17:04:29 - using account id 'joe.user@myfirm.com'... Protocol : Tcp Port : 19000 IntervalInSeconds : 5 NumberOfProbes : 2 RequestPath : ProvisioningState : Succeeded LoadBalancingRules : {/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule} LoadBalancingRulesText : [ { "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule" } ] Name : FabricTcpGatewayProbe Etag : W/"117d3ce9-cb52-48ef-ba22-be1226f1edb2" Id : /subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0055054 DEBUG: Finish sending metric. DEBUG: 17:04:30 - GetAzureRmLoadBalancerProbeConfigCommand end processing. C:\> $lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl * DEBUG: 17:04:30 - GetAzureRmLoadBalancerRuleConfigCommand begin processing with ParameterSet '__AllParameterSets'. DEBUG: 17:04:30 - using account id 'joe.user@myfirm.com'... Protocol : Tcp LoadDistribution : Default FrontendPort : 19000 BackendPort : 19000 IdleTimeoutInMinutes : 5 EnableFloatingIP : False EnableTcpReset : False DisableOutboundSNAT : ProvisioningState : Succeeded FrontendIPConfiguration : Microsoft.Azure.Commands.Network.Models.PSResourceId BackendAddressPool : Microsoft.Azure.Commands.Network.Models.PSResourceId Probe : Microsoft.Azure.Commands.Network.Models.PSResourceId FrontendIPConfigurationText : { "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" } BackendAddressPoolText : { "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool" } ProbeText : { "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/probes/FabricTcpGatewayProbe" } Name : FabricTcpGatewayRule Etag : W/"117d3ce9-cb52-48ef-ba22-be1226f1edb2" Id : /subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/loadBalancingRules/FabricTcpGatewayRule DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerRuleConfig; IsSuccess - True; Duration - 00:00:00.0069948 DEBUG: Finish sending metric. DEBUG: 17:04:31 - GetAzureRmLoadBalancerRuleConfigCommand end processing. C:\> # Change a property of the Probe. C:\> $lb | Set-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe -Port 19000 -Protocol Tcp -IntervalInSeconds 5 -ProbeCount 3 | Out-Null DEBUG: 17:04:37 - SetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'. DEBUG: 17:04:37 - using account id 'joe.user@myfirm.com'... DEBUG: AzureQoSEvent: CommandName - Set-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0016760 DEBUG: Finish sending metric. DEBUG: 17:04:38 - SetAzureRmLoadBalancerProbeConfigCommand end processing. C:\> # Observe that the Id of the Probe is now set to null. C:\> $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe | fl * DEBUG: 17:04:38 - GetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'. DEBUG: 17:04:38 - using account id 'joe.user@myfirm.com'... Protocol : Tcp Port : 19000 IntervalInSeconds : 5 NumberOfProbes : 3 RequestPath : ProvisioningState : LoadBalancingRules : LoadBalancingRulesText : null Name : FabricTcpGatewayProbe Etag : Id : DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0034329 DEBUG: Finish sending metric. DEBUG: 17:04:38 - GetAzureRmLoadBalancerProbeConfigCommand end processing. C:\> C:\> # Now change a property of the Rule, taking care to preserve the reference to the correct Probe. C:\> $probe = $lb | Get-AzLoadBalancerProbeConfig -Name FabricTcpGatewayProbe DEBUG: 17:04:53 - GetAzureRmLoadBalancerProbeConfigCommand begin processing with ParameterSet '__AllParameterSets'. DEBUG: 17:04:53 - using account id 'joe.user@myfirm.com'... DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerProbeConfig; IsSuccess - True; Duration - 00:00:00.0014567 DEBUG: Finish sending metric. DEBUG: 17:04:54 - GetAzureRmLoadBalancerProbeConfigCommand end processing. C:\> $lb | Set-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule -Protocol Tcp -FrontendPort 19000 -BackendPort 19000 -IdleTimeoutInMinutes 6 -FrontendIpConfiguration $lb.FrontendIpConfigurations[0] -BackendAddressPool $lb.BackendAddressPools[0] -Probe $probe | Out-Null DEBUG: 17:04:54 - SetAzureRmLoadBalancerRuleConfigCommand begin processing with ParameterSet 'SetByResource'. DEBUG: 17:04:54 - using account id 'joe.user@myfirm.com'... DEBUG: AzureQoSEvent: CommandName - Set-AzLoadBalancerRuleConfig; IsSuccess - True; Duration - 00:00:00.0017594 DEBUG: Finish sending metric. DEBUG: 17:04:55 - SetAzureRmLoadBalancerRuleConfigCommand end processing. C:\> C:\> # Observe that Probe is now set to null. C:\> $lb | Get-AzLoadBalancerRuleConfig -Name FabricTcpGatewayRule | fl * DEBUG: 17:04:59 - GetAzureRmLoadBalancerRuleConfigCommand begin processing with ParameterSet '__AllParameterSets'. DEBUG: 17:04:59 - using account id 'joe.user@myfirm.com'... Protocol : Tcp LoadDistribution : FrontendPort : 19000 BackendPort : 19000 IdleTimeoutInMinutes : 6 EnableFloatingIP : False EnableTcpReset : False DisableOutboundSNAT : False ProvisioningState : FrontendIPConfiguration : Microsoft.Azure.Commands.Network.Models.PSResourceId BackendAddressPool : Microsoft.Azure.Commands.Network.Models.PSResourceId Probe : FrontendIPConfigurationText : { "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/frontendIPConfigurations/LoadBalancerIPConfig" } BackendAddressPoolText : { "Id": "/subscriptions/***SUBSCRIPTION-ID-REDACTED***/resourceGroups/mytest-rg/providers/Microsoft.Network/loadBalancers/mytest-lb/backendAddressPools/LoadBalancerBEAddressPool" } ProbeText : null Name : FabricTcpGatewayRule Etag : Id : DEBUG: AzureQoSEvent: CommandName - Get-AzLoadBalancerRuleConfig; IsSuccess - True; Duration - 00:00:00.0053676 DEBUG: Finish sending metric. DEBUG: 17:05:00 - GetAzureRmLoadBalancerRuleConfigCommand end processing. ``` ## Error output ``` C:\> Resolve-AzError DEBUG: 17:10:09 - ResolveError begin processing with ParameterSet 'AnyErrorParameterSet'. DEBUG: 17:10:09 - using account id 'joe.user@myfirm.com'... WARNING: Upcoming breaking changes in the cmdlet 'Resolve-AzError' : The `Resolve-Error` alias will be removed in a future release. Please change any scripts that use this alias to use `Resolve-AzError` instead. Note : Go to https://aka.ms/azps-changewarnings for steps to suppress this breaking change warning, and other information on breaking changes in Azure PowerShell. The Azure PowerShell team is listening, please let us know how we are doing: https://aka.ms/azpssurvey?Q_CHL=ERROR. DEBUG: AzureQoSEvent: CommandName - Resolve-AzError; IsSuccess - True; Duration - 00:00:00.0117746 DEBUG: Finish sending metric. DEBUG: 17:10:09 - ResolveError end processing. ```
Author: jberezanski-mdg
Assignees: -
Labels: `Network - Load Balancer`, `Service Attention`, `needs-triage`, `question`
Milestone: -